continuing-cyan
continuing-cyan7mo ago

% composio add codeinterpreter> Adding integration: Codeinte

Adding integration: Codeinterpreter...
Error: CodeInterpreter does not require authentication This is what happens when trying to add code interpreter. I am wondering how to fix this
8 Replies
Soham
Soham7mo ago
checking. Thanks for reporting.
unwilling-turquoise
unwilling-turquoise5mo ago
I get this same issue and it's blocking to move forward. This won't let me connect it in the composio eco-system.
extended-salmon
extended-salmon5mo ago
Code Interpreter is a no auth app, which means it doesn't require any auth. We are planning more documentation around it, but you can use it in the code directly without requiring composio add appname.
unwilling-turquoise
unwilling-turquoise5mo ago
Thank you for getting back to me @kaavee , please examine:
python /Users/brant/Storage/projects/composio/python/examples/advanced_agents/slack_bot_agent/slack_agent_openai/slack_agent_openai.py
[2024-09-26 17:55:35,180][INFO] Logging is set to INFO, use `logging_level` argument or `COMPOSIO_LOGGING_LEVEL` change this
/Users/brant/Storage/projects/composio/.venv/lib/python3.11/site-packages/composio/client/collections.py:926: UserWarning: Using all the actions of an app is not recommended. Please use tags to filter actions or provide specific actions. We just pass the important actions to the agent, but this is not meant to be used in production. Check out https://docs.composio.dev/sdk/python/actions for more information.
warnings.warn(
Traceback (most recent call last):
File "/Users/brant/Storage/projects/composio/python/examples/advanced_agents/slack_bot_agent/slack_agent_openai/slack_agent_openai.py", line 34, in <module>
codeinterpreter_tools = composio_toolset.get_tools(
python /Users/brant/Storage/projects/composio/python/examples/advanced_agents/slack_bot_agent/slack_agent_openai/slack_agent_openai.py
[2024-09-26 17:55:35,180][INFO] Logging is set to INFO, use `logging_level` argument or `COMPOSIO_LOGGING_LEVEL` change this
/Users/brant/Storage/projects/composio/.venv/lib/python3.11/site-packages/composio/client/collections.py:926: UserWarning: Using all the actions of an app is not recommended. Please use tags to filter actions or provide specific actions. We just pass the important actions to the agent, but this is not meant to be used in production. Check out https://docs.composio.dev/sdk/python/actions for more information.
warnings.warn(
Traceback (most recent call last):
File "/Users/brant/Storage/projects/composio/python/examples/advanced_agents/slack_bot_agent/slack_agent_openai/slack_agent_openai.py", line 34, in <module>
codeinterpreter_tools = composio_toolset.get_tools(
File "/Users/brant/Storage/projects/composio/.venv/lib/python3.11/site-packages/composio_openai/toolset.py", line 126, in get_tools
for schema in self.get_action_schemas(actions=actions, apps=apps, tags=tags)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/brant/Storage/projects/composio/.venv/lib/python3.11/site-packages/composio/tools/toolset.py", line 710, in get_action_schemas
self.check_connected_account(action=item.name)
File "/Users/brant/Storage/projects/composio/.venv/lib/python3.11/site-packages/composio/tools/toolset.py", line 377, in check_connected_account
raise ComposioSDKError(
composio.exceptions.ComposioSDKError: No connected account found for app `codeinterpreter`; Run `composio add codeinterpreter` to fix this
File "/Users/brant/Storage/projects/composio/.venv/lib/python3.11/site-packages/composio_openai/toolset.py", line 126, in get_tools
for schema in self.get_action_schemas(actions=actions, apps=apps, tags=tags)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/brant/Storage/projects/composio/.venv/lib/python3.11/site-packages/composio/tools/toolset.py", line 710, in get_action_schemas
self.check_connected_account(action=item.name)
File "/Users/brant/Storage/projects/composio/.venv/lib/python3.11/site-packages/composio/tools/toolset.py", line 377, in check_connected_account
raise ComposioSDKError(
composio.exceptions.ComposioSDKError: No connected account found for app `codeinterpreter`; Run `composio add codeinterpreter` to fix this
As you can see, I'm using the otb: composio/python/examples/advanced_agents/slack_bot_agent/slack_agent_openai/slack_agent_openai.py
extended-salmon
extended-salmon5mo ago
Examinig the issue. For now, could you run composio apps update and then try?
unwilling-turquoise
unwilling-turquoise5mo ago
Working on that direction...ty @kaavee , that got me passed that issue, ty! now getting this:
python /Users/brant/Storage/projects/composio/python/examples/advanced_agents/slack_bot_agent/slack_agent_openai/slack_agent_openai.py
[2024-09-26 18:32:19,430][INFO] Logging is set to INFO, use `logging_level` argument or `COMPOSIO_LOGGING_LEVEL` change this
/Users/brant/Storage/projects/composio/.venv/lib/python3.11/site-packages/composio/client/collections.py:926: UserWarning: Using all the actions of an app is not recommended. Please use tags to filter actions or provide specific actions. We just pass the important actions to the agent, but this is not meant to be used in production. Check out https://docs.composio.dev/sdk/python/actions for more information.
warnings.warn(
[2024-09-26 18:32:53,640][INFO] Creating trigger subscription
Traceback (most recent call last):
File "/Users/brant/Storage/projects/composio/python/examples/advanced_agents/slack_bot_agent/slack_agent_openai/slack_agent_openai.py", line 48, in <module>
listener = composio_toolset.create_trigger_listener()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/brant/Storage/projects/composio/.venv/lib/python3.11/site-packages/composio/tools/toolset.py", line 788, in create_trigger_listener
return self.client.triggers.subscribe(timeout=timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/brant/Storage/projects/composio/.venv/lib/python3.11/site-packages/composio/client/collections.py", line 766, in subscribe
return pusher.connect(
^^^^^^^^^^^^^^^
File "/Users/brant/Storage/projects/composio/.venv/lib/python3.11/site-packages/composio/client/collections.py", line 677, in connect
raise TimeoutError(
TimeoutError: Timed out while waiting for trigger listener to be established
python /Users/brant/Storage/projects/composio/python/examples/advanced_agents/slack_bot_agent/slack_agent_openai/slack_agent_openai.py
[2024-09-26 18:32:19,430][INFO] Logging is set to INFO, use `logging_level` argument or `COMPOSIO_LOGGING_LEVEL` change this
/Users/brant/Storage/projects/composio/.venv/lib/python3.11/site-packages/composio/client/collections.py:926: UserWarning: Using all the actions of an app is not recommended. Please use tags to filter actions or provide specific actions. We just pass the important actions to the agent, but this is not meant to be used in production. Check out https://docs.composio.dev/sdk/python/actions for more information.
warnings.warn(
[2024-09-26 18:32:53,640][INFO] Creating trigger subscription
Traceback (most recent call last):
File "/Users/brant/Storage/projects/composio/python/examples/advanced_agents/slack_bot_agent/slack_agent_openai/slack_agent_openai.py", line 48, in <module>
listener = composio_toolset.create_trigger_listener()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/brant/Storage/projects/composio/.venv/lib/python3.11/site-packages/composio/tools/toolset.py", line 788, in create_trigger_listener
return self.client.triggers.subscribe(timeout=timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/brant/Storage/projects/composio/.venv/lib/python3.11/site-packages/composio/client/collections.py", line 766, in subscribe
return pusher.connect(
^^^^^^^^^^^^^^^
File "/Users/brant/Storage/projects/composio/.venv/lib/python3.11/site-packages/composio/client/collections.py", line 677, in connect
raise TimeoutError(
TimeoutError: Timed out while waiting for trigger listener to be established
extended-salmon
extended-salmon5mo ago
What's the email associated with your composio account?
unwilling-turquoise
unwilling-turquoise5mo ago
I increased the timeout, it may be going... if not i'll get back to you, tyvm

Did you find this page helpful?