6.9 KiB
Talemate
Allows you to play roleplay scenarios with large language models.
It does not run any large language models itself but relies on existing APIs. Currently supports text-generation-webui and openai.
This means you need to either have an openai api key or know how to setup oobabooga/text-generation-webui (locally or remotely via gpu renting. --extension openai
flag needs to be set)
As of version 0.13.0 the legacy text-generator-webui API --extension api
is no longer supported, please use their new --extension openai
api implementation instead.
Current features
- responive modern ui
- agents
- conversation: handles character dialogue
- narration: handles narrative exposition
- summarization: handles summarization to compress context while maintain history
- director: can be used to direct the story / characters
- editor: improves AI responses (very hit and miss at the moment)
- world state: generates world snapshot and handles passage of time (objects and characters)
- creator: character / scenario creator
- tts: text to speech via elevenlabs, coqui studio, coqui local
- multi-client (agents can be connected to separate APIs)
- long term memory
- chromadb integration
- passage of time
- narrative world state
- narrative tools
- creative tools
- AI backed character creation with template support (jinja2)
- AI backed scenario creation
- runpod integration
- overridable templates for all prompts. (jinja2)
Planned features
Kinda making it up as i go along, but i want to lean more into gameplay through AI, keeping track of gamestates, moving away from simply roleplaying towards a more game-ified experience.
In no particular order:
- Extension support
- modular agents and clients
- Improved world state
- Dynamic player choice generation
- Better creative tools
- node based scenario / character creation
- Improved and consistent long term memory
- Improved director agent
- Right now this doesn't really work well on anything but GPT-4 (and even there it's debatable). It tends to steer the story in a way that introduces pacing issues. It needs a model that is creative but also reasons really well i think.
- Gameplay loop governed by AI
- objectives
- quests
- win / lose conditions
- Automatic1111 client for in place visual generation
Quickstart
Installation
Post here if you run into problems during installation.
Windows
- Download and install Python 3.10 or higher from the official Python website.
- Download and install Node.js from the official Node.js website. This will also install npm.
- Download the Talemate project to your local machine. Download from the Releases page.
- Unpack the download and run
install.bat
by double clicking it. This will set up the project on your local machine. - Once the installation is complete, you can start the backend and frontend servers by running
start.bat
. - Navigate your browser to http://localhost:8080
Linux
python 3.10
or higher is required.
git clone git@github.com:final-wombat/talemate
cd talemate
source install.sh
- Start the backend:
python src/talemate/server/run.py runserver --host 0.0.0.0 --port 5050
. - Open a new terminal, navigate to the
talemate_frontend
directory, and start the frontend server by runningnpm run serve
.
Configuration
OpenAI
To set your openai api key, open config.yaml
in any text editor and uncomment / add
openai:
api_key: sk-my-api-key-goes-here
You will need to restart the backend for this change to take effect.
RunPod
To set your runpod api key, open config.yaml
in any text editor and uncomment / add
runpod:
api_key: my-api-key-goes-here
You will need to restart the backend for this change to take effect.
Once the api key is set Pods loaded from text-generation-webui templates (or the bloke's runpod llm template) will be autoamtically added to your client list in talemate.
ATTENTION: Talemate is not a suitable for way for you to determine whether your pod is currently running or not. Always check the runpod dashboard to see if your pod is running or not.
Recommended Models
(as of2023.10.25)
Any of the top models in any of the size classes here should work well: https://www.reddit.com/r/LocalLLaMA/comments/17fhp9k/huge_llm_comparisontest_39_models_tested_7b70b/
Connecting to an LLM
On the right hand side click the "Add Client" button. If there is no button, you may need to toggle the client options by clicking this button:
As of version 0.13.0 the legacy text-generator-webui API --extension api
is no longer supported, please use their new --extension openai
api implementation instead.
Text-generation-webui
In the modal if you're planning to connect to text-generation-webui, you can likely leave everything as is and just click Save.
OpenAI
If you want to add an OpenAI client, just change the client type and select the apropriate model.
Ready to go
You will know you are good to go when the client and all the agents have a green dot next to them.
Load the introductory scenario "Infinity Quest"
Generated using talemate creative tools, mostly used for testing / demoing.
You can load it (and any other talemate scenarios or save files) by expanding the "Load" menu in the top left corner and selecting the middle tab. Then simple search for a partial name of the scenario you want to load and click on the result.
Loading character cards
Supports both v1 and v2 chara specs.
Expand the "Load" menu in the top left corner and either click on "Upload a character card" or simply drag and drop a character card file into the same area.
Once a character is uploaded, talemate may actually take a moment because it needs to convert it to a talemate format and will also run additional LLM prompts to generate character attributes and world state.
Make sure you save the scene after the character is loaded as it can then be loaded as normal talemate scenario in the future.
Further documentation
Please read the documents in the docs
folder for more advanced configuration and usage.
- Creative mode (docs WIP)
- Prompt template overrides
- Text-to-Speech (TTS)
- ChromaDB (long term memory)
- Runpod Integration