Store/Creative Lab/Neural Narrative Engine
Neural Narrative Engine
experimentalAvailablev0.3-alpha

Neural Narrative Engine

Experimental recursive storytelling system

The Story

What happens when a story tells itself? When each chapter generates the seeds for the next, creating narratives that evolve beyond their original parameters?

Neural Narrative Engine is our attempt to answer that question. It's not finished. It may never be finished. That's the nature of experiments.

We release it free to the communityuse it, break it, improve it. Let us know what stories emerge from the recursion.

Preview

# Neural Narrative Engine

## Quick Start

```python
from neural_narrative import Engine, Character, World

# Initialize the engine
engine = Engine(model="gpt-4")

# Define your world
world = World(
    name="The Recursion",
    rules=["Magic follows entropy", "Time is non-linear"],
    atmosphere="melancholic wonder"
)

# Create a seed character
protagonist = Character(
    name="The Archivist",
    core_trait="obsessive curiosity",
    secret="knows the story is being written"
)

# Generate recursive narrative
story = engine.generate(
    world=world,
    characters=[protagonist],
    recursion_depth=3,
    chapters=5
)

# Each chapter seeds the next
for chapter in story.chapters:
    print(chapter.content)
    print(f"Seeds generated: {chapter.seeds}")
```

What's Included

  • Python-based narrative engine
  • GPT-4 and Claude integration
  • Recursive story generation
  • Character consistency tracking
  • Plot coherence algorithms
  • Open source (MIT license)
Free

Sold by Omnific Hand Ltd. Instant digital delivery after payment. See Terms of Sale and Privacy Notice.

Details

Format
Python Package
Delivery
GitHub Repository
Version
0.3-alpha

Tags

experimentalaistorytellingopen source