Fixing build issue for lower Python versions caused by a typo

This commit is contained in:
Cole Medin 2025-04-01 07:28:05 -05:00
parent 2802b549bd
commit 661bf420de
4 changed files with 4 additions and 4 deletions

View File

@ -47,7 +47,7 @@ advisor_agent = Agent(
@advisor_agent.system_prompt
def add_file_list(ctx: RunContext[str]) -> str:
return f"""
\n\Here is the list of all the files that you can pull the contents of with the
\nHere 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
agent the user is trying to build:\n
{"\n".join(ctx.deps.file_list)}

View File

@ -56,7 +56,7 @@ tools_refiner_agent = Agent(
@tools_refiner_agent.system_prompt
def add_file_list(ctx: RunContext[str]) -> str:
return f"""
\n\Here is the list of all the files that you can pull the contents of with the
\nHere 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
agent the user is trying to build:\n
{"\n".join(ctx.deps.file_list)}

View File

@ -47,7 +47,7 @@ advisor_agent = Agent(
@advisor_agent.system_prompt
def add_file_list(ctx: RunContext[str]) -> str:
return f"""
\n\Here is the list of all the files that you can pull the contents of with the
\nHere 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
agent the user is trying to build:\n
{"\n".join(ctx.deps.file_list)}

View File

@ -56,7 +56,7 @@ tools_refiner_agent = Agent(
@tools_refiner_agent.system_prompt
def add_file_list(ctx: RunContext[str]) -> str:
return f"""
\n\Here is the list of all the files that you can pull the contents of with the
\nHere 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
agent the user is trying to build:\n
{"\n".join(ctx.deps.file_list)}