* feat: squash rebase of OSS PR * fix: revert changes that weren't on manual rebase * fix: caught another one * fix: disable force * chore: drop print * fix: just stage-api && just publish-api * fix: make agent_type consistently an arg in the client * fix: patch multi-modal support * chore: put in todo stub * fix: disable hardcoding for tests * fix: patch validate agent sync (#4882) patch validate agent sync * fix: strip bad merge diff * fix: revert unrelated diff * fix: react_v2 naming -> letta_v1 naming * fix: strip bad merge --------- Co-authored-by: Kevin Lin <klin5061@gmail.com>
30 lines
782 B
Python
30 lines
782 B
Python
from letta.prompts.system_prompts import (
|
|
letta_v1,
|
|
memgpt_chat,
|
|
memgpt_generate_tool,
|
|
memgpt_v2_chat,
|
|
react,
|
|
sleeptime_doc_ingest,
|
|
sleeptime_v2,
|
|
summary_system_prompt,
|
|
voice_chat,
|
|
voice_sleeptime,
|
|
workflow,
|
|
)
|
|
|
|
SYSTEM_PROMPTS = {
|
|
"voice_chat": voice_chat.PROMPT,
|
|
"voice_sleeptime": voice_sleeptime.PROMPT,
|
|
"memgpt_v2_chat": memgpt_v2_chat.PROMPT,
|
|
"sleeptime_v2": sleeptime_v2.PROMPT,
|
|
"react": react.PROMPT,
|
|
"letta_v1": letta_v1.PROMPT,
|
|
"workflow": workflow.PROMPT,
|
|
"memgpt_chat": memgpt_chat.PROMPT,
|
|
"sleeptime_doc_ingest": sleeptime_doc_ingest.PROMPT,
|
|
"summary_system_prompt": summary_system_prompt.PROMPT,
|
|
"memgpt_generate_tool": memgpt_generate_tool.PROMPT,
|
|
}
|
|
|
|
__all__ = ["SYSTEM_PROMPTS"]
|