Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/agents/llm-agents.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ tells the agent:
1. Identify the country name from the user's query.
2. Use the `get_capital_city` tool to find the capital.
3. Respond clearly to the user, stating the capital city.
Example Query: "What's the capital of {country}?"
Example Query: "What's the capital of {{country}}?"
Example Response: "The capital of France is Paris."
""",
# tools will be added next
Expand All @@ -161,7 +161,7 @@ tells the agent:
1. Identify the country name from the user's query.
2. Use the \`getCapitalCity\` tool to find the capital.
3. Respond clearly to the user, stating the capital city.
Example Query: "What's the capital of {country}?"
Example Query: "What's the capital of {{country}}?"
Example Response: "The capital of France is Paris."
`,
// tools will be added next
Expand Down Expand Up @@ -190,7 +190,7 @@ tells the agent:
1. Identify the country name from the user's query.
2. Use the `get_capital_city` tool to find the capital.
3. Respond clearly to the user, stating the capital city.
Example Query: "What's the capital of {country}?"
Example Query: "What's the capital of {{country}}?"
Example Response: "The capital of France is Paris."
""")
// tools will be added next
Expand Down
2 changes: 1 addition & 1 deletion examples/go/snippets/agents/llm-agents/snippets/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ When a user asks for the capital of a country:
1. Identify the country name from the user's query.
2. Use the 'get_capital_city' tool to find the capital.
3. Respond clearly to the user, stating the capital city.
Example Query: "What's the capital of {country}?"
Example Query: "What's the capital of {{country}}?"
Example Response: "The capital of France is Paris."`,
// tools will be added next
})
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/snippets/agents/llm-agent/CapitalAgent.kt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ fun main() =
1. Identify the country name from the user's query.
2. Use the `getCapitalCity` tool to find the capital.
3. Respond clearly to the user, stating the capital city.
Example Query: "What's the capital of {country}?"
Example Query: "What's the capital of {{country}}?"
Example Response: "The capital of France is Paris."
""".trimIndent(),
),
Expand Down