Hey - this looks like a really cool project. Is it still maintained?
If so, there are some issues:
#!/usr/bin/env python
from gensphere.genflow import GenFlow
from gensphere.hub import Hub
import os
# hub=Hub()
# hub.pull(push_id='2c03079c-0e33-489e-bbbe-777da744d56f',
# yaml_filename='simple_examples.yaml',
# functions_filename='simple_examples_functions.py',
# save_to_disk=True)
### DONE but files were downloaded with differnet names
flow=GenFlow('geosphere.yaml','functions.py')
flow.parse_yaml()
flow.run()
### Worked once, then after running `pip install composio`, it no longer works
### even after uninstalling.
### Error
### Traceback (most recent call last):
### File "/vagrant/temp/test.py", line 1, in <module>
### from gensphere.genflow import GenFlow
### File "/home/vagrant/venv/lib/python3.13/site-packages/gensphere/genflow.py", line 16, in <module>
### from composio_openai import ComposioToolSet, App, Action
### File "/home/vagrant/venv/lib/python3.13/site-packages/composio_openai/__init__.py", line 1, in <module>
### from composio import Action, App, Tag, Trigger, WorkspaceType, action
### ImportError: cannot import name 'Action' from 'composio' (/home/vagrant/venv/lib/python3.13/site-packages/composio/__init__.py)
Hey - this looks like a really cool project. Is it still maintained?
If so, there are some issues: