diff --git a/context/agent/few-shot-learning.mdx b/context/agent/few-shot-learning.mdx index 98f1839f..3443ae36 100644 --- a/context/agent/few-shot-learning.mdx +++ b/context/agent/few-shot-learning.mdx @@ -97,10 +97,8 @@ if __name__ == "__main__": markdown=True, ) - for i, example in enumerate(support_examples, 1): - print(f"Example {i}: {example}") - print("-" * 50) - agent.print_response(example) + agent.print_response("My order hasn't arrived yet, what should I do?") + agent.print_response("How do I cancel my subscription?") ``` ## Usage