mirror of
https://github.com/vegu-ai/talemate.git
synced 2025-09-01 18:09:08 +00:00
fixes character descriptions missing from dialogue prompt (#21)
* character description is no longer part of the sheet and needs to be added separately * prep 0.10.1
This commit is contained in:
parent
5874d6f05c
commit
c36fd3a9b0
3 changed files with 6 additions and 3 deletions
|
@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"
|
|||
|
||||
[tool.poetry]
|
||||
name = "talemate"
|
||||
version = "0.10.0"
|
||||
version = "0.10.1"
|
||||
description = "AI-backed roleplay and narrative tools"
|
||||
authors = ["FinalWombat"]
|
||||
license = "GNU Affero General Public License v3.0"
|
||||
|
|
|
@ -2,4 +2,4 @@ from .agents import Agent
|
|||
from .client import TextGeneratorWebuiClient
|
||||
from .tale_mate import *
|
||||
|
||||
VERSION = "0.10.0"
|
||||
VERSION = "0.10.1"
|
|
@ -6,9 +6,12 @@
|
|||
<|SECTION:CHARACTERS|>
|
||||
{% for character in characters -%}
|
||||
{{ character.name }}:
|
||||
{{ character.filtered_sheet(['name', 'description', 'age', 'gender']) }}
|
||||
{{ character.filtered_sheet(['name', 'age', 'gender']) }}
|
||||
{{ query_memory("what is "+character.name+"'s personality?", as_question_answer=False) }}
|
||||
|
||||
{{ character.description }}
|
||||
|
||||
|
||||
{% endfor %}
|
||||
<|CLOSE_SECTION|>
|
||||
<|SECTION:DIALOGUE EXAMPLES|>
|
||||
|
|
Loading…
Add table
Reference in a new issue