mirror of
https://github.com/coleam00/Archon.git
synced 2025-12-23 18:29:18 -05:00
Another quick f string update for the agent prompts
This commit is contained in:
@@ -46,13 +46,14 @@ advisor_agent = Agent(
|
|||||||
|
|
||||||
@advisor_agent.system_prompt
|
@advisor_agent.system_prompt
|
||||||
def add_file_list(ctx: RunContext[str]) -> str:
|
def add_file_list(ctx: RunContext[str]) -> str:
|
||||||
|
joined_files = "\n".join(ctx.deps.file_list)
|
||||||
return f"""
|
return f"""
|
||||||
|
|
||||||
Here is the list of all the files that you can pull the contents of with the
|
Here is the list of all the files that you can pull the contents of with the
|
||||||
'get_file_content' tool if the example/tool/MCP server is relevant to the
|
'get_file_content' tool if the example/tool/MCP server is relevant to the
|
||||||
agent the user is trying to build:
|
agent the user is trying to build:
|
||||||
|
|
||||||
{"\n".join(ctx.deps.file_list)}
|
{joined_files}
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@advisor_agent.tool_plain
|
@advisor_agent.tool_plain
|
||||||
|
|||||||
@@ -55,13 +55,14 @@ tools_refiner_agent = Agent(
|
|||||||
|
|
||||||
@tools_refiner_agent.system_prompt
|
@tools_refiner_agent.system_prompt
|
||||||
def add_file_list(ctx: RunContext[str]) -> str:
|
def add_file_list(ctx: RunContext[str]) -> str:
|
||||||
|
joined_files = "\n".join(ctx.deps.file_list)
|
||||||
return f"""
|
return f"""
|
||||||
|
|
||||||
Here is the list of all the files that you can pull the contents of with the
|
Here is the list of all the files that you can pull the contents of with the
|
||||||
'get_file_content' tool if the example/tool/MCP server is relevant to the
|
'get_file_content' tool if the example/tool/MCP server is relevant to the
|
||||||
agent the user is trying to build:
|
agent the user is trying to build:
|
||||||
|
|
||||||
{"\n".join(ctx.deps.file_list)}
|
{joined_files}
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@tools_refiner_agent.tool
|
@tools_refiner_agent.tool
|
||||||
|
|||||||
@@ -46,13 +46,14 @@ advisor_agent = Agent(
|
|||||||
|
|
||||||
@advisor_agent.system_prompt
|
@advisor_agent.system_prompt
|
||||||
def add_file_list(ctx: RunContext[str]) -> str:
|
def add_file_list(ctx: RunContext[str]) -> str:
|
||||||
|
joined_files = "\n".join(ctx.deps.file_list)
|
||||||
return f"""
|
return f"""
|
||||||
|
|
||||||
Here is the list of all the files that you can pull the contents of with the
|
Here is the list of all the files that you can pull the contents of with the
|
||||||
'get_file_content' tool if the example/tool/MCP server is relevant to the
|
'get_file_content' tool if the example/tool/MCP server is relevant to the
|
||||||
agent the user is trying to build:
|
agent the user is trying to build:
|
||||||
|
|
||||||
{"\n".join(ctx.deps.file_list)}
|
{joined_files}
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@advisor_agent.tool_plain
|
@advisor_agent.tool_plain
|
||||||
|
|||||||
@@ -55,13 +55,14 @@ tools_refiner_agent = Agent(
|
|||||||
|
|
||||||
@tools_refiner_agent.system_prompt
|
@tools_refiner_agent.system_prompt
|
||||||
def add_file_list(ctx: RunContext[str]) -> str:
|
def add_file_list(ctx: RunContext[str]) -> str:
|
||||||
|
joined_files = "\n".join(ctx.deps.file_list)
|
||||||
return f"""
|
return f"""
|
||||||
|
|
||||||
Here is the list of all the files that you can pull the contents of with the
|
Here is the list of all the files that you can pull the contents of with the
|
||||||
'get_file_content' tool if the example/tool/MCP server is relevant to the
|
'get_file_content' tool if the example/tool/MCP server is relevant to the
|
||||||
agent the user is trying to build:
|
agent the user is trying to build:
|
||||||
|
|
||||||
{"\n".join(ctx.deps.file_list)}
|
{joined_files}
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@tools_refiner_agent.tool
|
@tools_refiner_agent.tool
|
||||||
|
|||||||
Reference in New Issue
Block a user