├── .gitignore ├── LICENSE ├── README.md ├── dist ├── taskflowai-0.5.13-py3-none-any.whl └── taskflowai-0.5.13.tar.gz ├── poetry.lock ├── pyproject.toml ├── research_agent.py ├── taskflowai-multi-agent-team.png └── taskflowai ├── __init__.py ├── agent.py ├── knowledgebases ├── __init__.py └── faiss_knowledgebase.py ├── llm.py ├── task.py ├── tools ├── __init__.py ├── amadeus_tools.py ├── audio_tools.py ├── calculator_tools.py ├── conversation_tools.py ├── embedding_tools.py ├── faiss_tools.py ├── file_tools.py ├── fred_tools.py ├── github_tools.py ├── langchain_tools.py ├── matplotlib_tools.py ├── pinecone_tools.py ├── semantic_splitter.py ├── sentence_splitter.py ├── text_splitters.py ├── web_tools.py ├── wikipedia_tools.py └── yahoo_finance_tools.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/README.md -------------------------------------------------------------------------------- /dist/taskflowai-0.5.13-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/dist/taskflowai-0.5.13-py3-none-any.whl -------------------------------------------------------------------------------- /dist/taskflowai-0.5.13.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/dist/taskflowai-0.5.13.tar.gz -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/pyproject.toml -------------------------------------------------------------------------------- /research_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/research_agent.py -------------------------------------------------------------------------------- /taskflowai-multi-agent-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai-multi-agent-team.png -------------------------------------------------------------------------------- /taskflowai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/__init__.py -------------------------------------------------------------------------------- /taskflowai/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/agent.py -------------------------------------------------------------------------------- /taskflowai/knowledgebases/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/knowledgebases/__init__.py -------------------------------------------------------------------------------- /taskflowai/knowledgebases/faiss_knowledgebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/knowledgebases/faiss_knowledgebase.py -------------------------------------------------------------------------------- /taskflowai/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/llm.py -------------------------------------------------------------------------------- /taskflowai/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/task.py -------------------------------------------------------------------------------- /taskflowai/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/__init__.py -------------------------------------------------------------------------------- /taskflowai/tools/amadeus_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/amadeus_tools.py -------------------------------------------------------------------------------- /taskflowai/tools/audio_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/audio_tools.py -------------------------------------------------------------------------------- /taskflowai/tools/calculator_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/calculator_tools.py -------------------------------------------------------------------------------- /taskflowai/tools/conversation_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/conversation_tools.py -------------------------------------------------------------------------------- /taskflowai/tools/embedding_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/embedding_tools.py -------------------------------------------------------------------------------- /taskflowai/tools/faiss_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/faiss_tools.py -------------------------------------------------------------------------------- /taskflowai/tools/file_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/file_tools.py -------------------------------------------------------------------------------- /taskflowai/tools/fred_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/fred_tools.py -------------------------------------------------------------------------------- /taskflowai/tools/github_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/github_tools.py -------------------------------------------------------------------------------- /taskflowai/tools/langchain_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/langchain_tools.py -------------------------------------------------------------------------------- /taskflowai/tools/matplotlib_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/matplotlib_tools.py -------------------------------------------------------------------------------- /taskflowai/tools/pinecone_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/pinecone_tools.py -------------------------------------------------------------------------------- /taskflowai/tools/semantic_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/semantic_splitter.py -------------------------------------------------------------------------------- /taskflowai/tools/sentence_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/sentence_splitter.py -------------------------------------------------------------------------------- /taskflowai/tools/text_splitters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/text_splitters.py -------------------------------------------------------------------------------- /taskflowai/tools/web_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/web_tools.py -------------------------------------------------------------------------------- /taskflowai/tools/wikipedia_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/wikipedia_tools.py -------------------------------------------------------------------------------- /taskflowai/tools/yahoo_finance_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/tools/yahoo_finance_tools.py -------------------------------------------------------------------------------- /taskflowai/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippe-page/taskflowai/HEAD/taskflowai/utils.py --------------------------------------------------------------------------------