mirror of
https://github.com/vegu-ai/talemate.git
synced 2025-09-05 20:09:09 +00:00
* groq client * adjust max token length * more openai image download fixes * graphic novel style * dialogue cleanup * fix issue where auto-break repetition would trigger on empty responses * reduce default convo retries to 1 * prompt tweaks * fix some clients not handling autocomplete well * screenplay dialogue generation tweaks * message flags * better cleanup of redundant change_ai_character calls * super experimental continuity error fix mode for editor agent * clamp temperature * tweaks to continuity error fixing and expose to ux * expose to ux * allow CmdFixContinuityErrors to work even if editor has check_continuity_errors disabled * prompt tweak * support --endofline-- as well * double coercion client option added * fix issue with double coercion inserting "None" if not set * client ux refactor to make room for coercion config * rest of -- can be treated as * * disable double coercion when json coercion is active since it kills accuracy * prompt tweaks * prompt tweaks * show coercion status in client list * change preset for edit_fix_continuity * interim commit of coninuity error handling progress * tag based presets * special tokens to keep trailing whitespace if needed * fix continuity errors finalized for now * change double coercion formatting * 0.24.0 and relock * add groq and cohere to supported services * linting
28 lines
No EOL
1.4 KiB
Django/Jinja
28 lines
No EOL
1.4 KiB
Django/Jinja
<|SECTION:EXAMPLES|>
|
|
combine the arguments of the function calls `add_ai_character` and `change_ai_character` for "Sarah" into a single text string argument to be passed to a single `add_ai_character` function call.
|
|
```
|
|
set_simulation_goal("player experiences a rollercoaster ride")
|
|
change_environment("theme park, riding a rollercoaster")
|
|
set_player_persona("young female experiencing rollercoaster ride")
|
|
set_player_name("Susanne")
|
|
add_ai_character("a female friend of player named Sarah")
|
|
change_ai_character("Sarah hates rollercoasters")
|
|
```
|
|
COMBINED ARGUMENT: "a female friend of player named Sarah, Sarah hates rollercoasters"
|
|
|
|
TASK: combine the arguments of the function calls `add_ai_character` and `change_ai_character` for "George" into a single text string argument to be passed to a single `add_ai_character` function call.
|
|
```
|
|
change_environment("building on fire")
|
|
change_ai_character("George is injured")
|
|
add_ai_character("a firefighter named Stephen")
|
|
change_ai_character("Stephen is afraid of heights")
|
|
```
|
|
COMBINED ARGUMENT: "a firefighter named Stephen, Stephen is afraid of heights"
|
|
|
|
<|CLOSE_SECTION|>
|
|
<|SECTION:TASK|>
|
|
TASK: combine the arguments of the function calls `add_ai_character` and `change_ai_character` for "{{ character_name }}" into a single text string argument to be passed to a single `add_ai_character` function call.
|
|
```
|
|
{{ calls }}
|
|
```
|
|
{{ set_prepared_response("COMBINED ARGUMENT:") }} |