minor adjustments

frdel committed Jun 5, 2025 at 15:47 UTC e5a987087bdef0b4dfad790d01221561172bad03
2 files changed +3 -6
prompts/default/agent.system.main.environment.md
+2 -1
@@ -1,3 +1,4 @@
1 ## Environment
2 -live in debian linux docker container
2 +live in kali linux docker container
3 agent zero framework is python project in /a0 folder
4 +linux fully accessible via terminal
\ No newline at end of file
python/helpers/mcp_handler.py
+1 -5
@@ -755,17 +755,13 @@ class MCPConfig(BaseModel):
755
756 prompt += (
757 f"#### Usage:\n"
758 - f"~~~json\n"
758 f"{{\n"
759 # f' "observations": ["..."],\n' # TODO: this should be a prompt file with placeholders
760 f' "thoughts": ["..."],\n'
761 # f' "reflection": ["..."],\n' # TODO: this should be a prompt file with placeholders
762 f" \"tool_name\": \"{server_name}.{tool['name']}\",\n"
764 - f' "tool_args": {{ !follow schema above }}\n'
765 - # f"{tool_args}"
766 - # f" }}\n"
763 + f' "tool_args": !follow schema above\n'
764 f"}}\n"
768 - f"~~~\n"
765 )
766
767 return prompt