-
v0.15.0 Load JSON stories Stable
released this
2023-10-08 03:07:34 -04:00 | 381 commits to master since this releaseWhat's Changed
- Load stories in json format. "No code"!
- Actually copy request body to avoid it being overwritten
- Move prompt setting to llm_io
- Fix bug where exit descriptions were sometimes missing.
- Define start and end sequences for prompts.
- Adding "Tea Party" scenario
Loading JSON stories was one of the first things I set out to do when I forked Tale. But I fell on the finishing lines. I decided to finish it now that I know more about the framework. I intend to use it to create some specific test scenarios and 'sandboxes'. For you, this means you can create your own scenarios without any python knowledge. I'll do a writeup in the wiki, but the easiest way is to copy "test_story" and modify it according to your needs. You don't need any additional files.
I added "The Tea Party" scenario. A freeform scenario I tested out earlier in pure "LLM story mode" when testing how well it could adhere to scenes. There's nothing there but the guests. So you can listen in and partake in their conversations.
Start it with:python -m stories.teaparty.storyReshuffled llm_config and moved start and end tags out of the prompts. This will make it easier if you want to experiment with different ones, or use those specific to your LLM type, ie "[INST] and [/INST]" for llama2, etc.
Full Changelog: https://github.com/neph1/LlamaTale/compare/v0.14.2...v0.15.0