Feat: rp mode

This commit is contained in:
Grail Finder
2025-08-09 11:46:33 +03:00
parent 9e2165e056
commit e499a1ae37
4 changed files with 210 additions and 84 deletions

View File

@@ -67,3 +67,21 @@ type LLMResp struct {
StoppingWord string `json:"stopping_word"`
TokensCached int `json:"tokens_cached"`
}
type LCPResp struct {
Content string `json:"content"`
}
type RPScenario struct {
Name string `json:"name"`
CharSysPrompt string `json:"char_sys_prompt"`
UserSysPrompt string `json:"user_sys_prompt"`
CharName string `json:"char_name"`
UserName string `json:"user_name"`
FirstMsg string `json:"first_msg"`
}
type RPMessage struct {
Author string `json:"author"`
Content string `json:"content"`
}