add ai agent

This commit is contained in:
jxxghp
2025-10-18 21:26:51 +08:00
parent 6fee532c96
commit bdd5f1231e

View File

@@ -21,7 +21,7 @@ class PromptManager:
if prompt_name in self.prompts_cache:
return self.prompts_cache[prompt_name]
prompt_file = self.prompts_dir / "definition" / prompt_name
prompt_file = self.prompts_dir / "prompt" / prompt_name
try:
with open(prompt_file, 'r', encoding='utf-8') as f: