๐ฎ AI-Powered CLI Text Adventure Game - Create infinite stories with LLM
Project description
๐ฎ LLMAdventure - AI-Powered Text Adventure Game
Create infinite stories with AI-powered procedural generation ๐
LLMAdventure is the ultimate CLI text adventure game that uses Google's Gemini 2.5 Flash to generate unique, dynamic stories, worlds, and characters. Every playthrough is different, every choice matters, and every adventure is unforgettable.
โจ Why Choose LLMAdventure?
- ๐ฏ Infinite Content: AI generates unique stories, quests, and worlds
- ๐ฎ Rich Gameplay: Combat, exploration, character progression, and more
- ๐จ Beautiful CLI: Stunning terminal interface with colors and animations
- ๐ Extensible: Plugin system for custom content and mods
- ๐ Multi-Platform: Works on Windows, macOS, and Linux
- ๐ Educational: Learn AI, game development, and storytelling
- ๐ Fast: Optimized for performance and responsiveness
๐ Quick Start
# Install from PyPI
pip install llmadventure
# Start your adventure
llmadventure
That's it! No complex setup, no dependencies to manage. Just pure adventure.
๐ฏ Features
๐ง AI-Powered Storytelling
- Dynamic Narrative Generation: Every story is unique and adaptive
- Context-Aware Responses: AI remembers your choices and adapts the story
- Procedural World Building: Infinite worlds with unique locations and lore
- Character Generation: Rich NPCs with personalities and backstories
โ๏ธ Rich Gameplay Systems
- Combat System: Turn-based combat with strategy and tactics
- Character Progression: Level up, gain abilities, and evolve your character
- Inventory Management: Collect, use, and trade items
- Quest System: Dynamic quests that adapt to your choices
- Exploration: Discover hidden locations and secrets
๐จ Beautiful Interface
- Rich Terminal UI: Colors, progress bars, and animations
- Responsive Design: Works on any terminal size
- Accessibility: High contrast modes and screen reader support
- Customizable: Themes and appearance options
๐ Extensible Architecture
- Plugin System: Create custom content and mods
- API Access: Integrate with other applications
- Web Interface: Optional web-based UI
- Multiplayer Support: Play with friends (coming soon)
๐ Examples
Basic Usage
from llmadventure import Game
# Start a new adventure
game = Game()
game.start_new_game("Hero", "warrior")
# Explore the world
game.move("north")
game.look_around()
game.attack("dragon")
Custom Plugin
LLMAdventure supports a flexible plugin system. To create a plugin, inherit from the Plugin base class and use the register_plugin decorator from llmadventure.plugins:
from llmadventure.plugins import Plugin, register_plugin
@register_plugin
class MyCustomPlugin(Plugin):
name = "My Custom Plugin"
version = "1.0.0"
description = "A custom plugin for LLMAdventure"
def on_combat_start(self, player, enemy):
# Add custom combat mechanics
pass
def on_quest_complete(self, player, quest):
# Give custom rewards
pass
Web Integration
from llmadventure.web import WebServer
# Start web interface
server = WebServer()
server.start(host="0.0.0.0", port=8000)
๐ ๏ธ Installation
From PyPI (Recommended)
pip install llmadventure
With Optional Dependencies
# Full installation with all features
pip install "llmadventure[full]"
# Web interface
pip install "llmadventure[web]"
# AI/ML features
pip install "llmadventure[ai]"
# Data analysis
pip install "llmadventure[data]"
From Source
git clone https://github.com/SoftwareApkDev/llmadventure.git
cd llmadventure
pip install -e .
๐ง Configuration
API Key Setup
- Get a Google AI API key from Google AI Studio
- Set your API key:
# Environment variable
export GOOGLE_API_KEY=your_key_here
# Or in .env file
echo "GOOGLE_API_KEY=your_key_here" > .env
Configuration File
Create ~/.config/llmadventure/config.yaml:
api:
provider: "google"
model: "gemini-2.5-flash"
game:
auto_save: true
difficulty: "normal"
theme: "dark"
ui:
colors: true
animations: true
sound: false
๐ฎ Game Controls
| Command | Action | Aliases |
|---|---|---|
n, north |
Move north | up, u |
s, south |
Move south | down, d |
e, east |
Move east | right, r |
w, west |
Move west | left, l |
look |
Look around | l, examine |
inventory |
Show inventory | i, inv |
attack <target> |
Attack creature | fight, hit |
use <item> |
Use item | consume, equip |
talk <npc> |
Talk to NPC | speak, chat |
save |
Save game | s |
quit |
Quit game | exit, q |
help |
Show help | h, ? |
๐๏ธ Architecture
llmadventure/
โโโ core/ # Core game logic (game, player, world, combat, inventory, quest, evolution, creature)
โโโ engine/ # AI, LLM interface, memory, procedural generation, prompt templates
โโโ cli/ # Command line interface (display, menus)
โโโ utils/ # Utilities (config, file_ops, logger)
โโโ plugins/ # Plugin system
โโโ web/ # Web interface (if enabled)
main.py # Entry point
requirements.txt # Python dependencies
pyproject.toml # Build system and metadata
README.md # Project documentation
๐ Plugin Development
Create custom content with our plugin system:
from llmadventure.plugins import Plugin, register_plugin
@register_plugin
class MyPlugin(Plugin):
name = "My Custom Plugin"
version = "1.0.0"
def on_game_start(self, game):
# Add custom game mechanics
pass
def on_combat_turn(self, player, enemy):
# Modify combat behavior
pass
๐ Web Interface
Start the web interface for a graphical experience:
# Install web dependencies
pip install "llmadventure[web]"
# Start web server
llmadventure --web
# Or programmatically
from llmadventure.web import start_web_server
start_web_server(port=8000)
๐ Analytics & Insights
Track your adventures with built-in analytics:
from llmadventure.analytics import AdventureTracker
tracker = AdventureTracker()
stats = tracker.get_player_stats()
print(f"Adventures completed: {stats['adventures']}")
print(f"Creatures defeated: {stats['creatures_defeated']}")
print(f"Distance traveled: {stats['distance_traveled']}")
๐งช Testing
Run the comprehensive test suite:
# Install test dependencies
pip install "llmadventure[dev]"
# Run tests
pytest
# Run with coverage
pytest --cov=llmadventure
# Run specific test categories
pytest -m "not slow"
pytest -m integration
๐ค Contributing
We welcome contributions! Here's how to get started:
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests for new features
- Submit a pull request
Development Setup
git clone https://github.com/SoftwareApkDev/llmadventure.git
cd llmadventure
pip install -e ".[dev]"
pre-commit install
Code Quality
We use several tools to maintain code quality:
- Black: Code formatting
- isort: Import sorting
- flake8: Linting
- mypy: Type checking
- pytest: Testing
๐ Performance
LLMAdventure is optimized for performance:
- Fast Startup: < 1 second to begin playing
- Responsive UI: Real-time updates and animations
- Efficient AI: Optimized prompts and caching
- Memory Efficient: Minimal resource usage
๐ Success Stories
"LLMAdventure has revolutionized how I think about interactive storytelling. The AI-generated content is consistently engaging and surprising." - Game Developer
"Perfect for teaching AI concepts to students. They love creating their own adventures!" - Computer Science Professor
"The plugin system is incredibly powerful. I've created entire new game modes with just a few lines of code." - Mod Developer
๐ Documentation
- User Guide: Complete game manual
- API Reference: Developer documentation
- Plugin Guide: Creating custom content
- Tutorials: Step-by-step guides
๐ Support
- ๐ง Email: softwareapkdev2022@gmail.com
- ๐ Issues: GitHub Issues
๐ Acknowledgments
- Google Gemini 2.5 Flash for AI capabilities
- Rich library for beautiful CLI interfaces
- Typer for command-line interface
- Pydantic for data validation
- The open-source community for inspiration and support
๐ Star History
Ready for your next adventure? ๐ก๏ธโ๏ธ๐ฐ
pip install llmadventure
llmadventure
Join thousands of adventurers creating infinite stories with AI! ๐
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file llmadventure-1.0.2.tar.gz.
File metadata
- Download URL: llmadventure-1.0.2.tar.gz
- Upload date:
- Size: 48.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61759e402777b1f1d0d4862fe890b80017f5dbb7881fc4bcf6fee9da5ca057f4
|
|
| MD5 |
6d6fd4546429c27437a7568a0a205a65
|
|
| BLAKE2b-256 |
f6ab9952d1621553f62b0139b1ee6c3d6867b5132f15a33c9aa1b09d5de8563d
|
File details
Details for the file llmadventure-1.0.2-py3-none-any.whl.
File metadata
- Download URL: llmadventure-1.0.2-py3-none-any.whl
- Upload date:
- Size: 48.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c99cf134ecb0ee616c704df62dd7bfa886b61dec4017f3af3cd51496a20cd9b8
|
|
| MD5 |
8a60609673730a115c4d1a31ee5fdbf5
|
|
| BLAKE2b-256 |
5d090310afba7d73d3e28cda78b0c94aa87792c7a826ea84743f8075c773c444
|