From 36b07335dc014b536e8c461937c6be5a1ebcfeb8 Mon Sep 17 00:00:00 2001 From: tushar-composio Date: Thu, 19 Dec 2024 02:01:00 -0800 Subject: [PATCH] chore: remove duplicate print of response in llamaindex demo (#1040) --- python/plugins/llamaindex/llamaindex_demo.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/python/plugins/llamaindex/llamaindex_demo.py b/python/plugins/llamaindex/llamaindex_demo.py index d359697ee56..db2cbc2e210 100644 --- a/python/plugins/llamaindex/llamaindex_demo.py +++ b/python/plugins/llamaindex/llamaindex_demo.py @@ -38,10 +38,7 @@ def main(): verbose=True, ).as_agent() - response = agent.chat( - "Hello! I would like to star a repo composiohq/composio on GitHub" - ) - print("Response:", response) + agent.chat("Hello! I would like to star a repo composiohq/composio on GitHub") if __name__ == "__main__":