ai-parrot 0.3.18__tar.gz → 0.4.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ai-parrot might be problematic. Click here for more details.
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/MANIFEST.in +3 -1
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/PKG-INFO +51 -85
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/ai_parrot.egg-info/SOURCES.txt +33 -97
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/app.py +0 -3
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/__pycache__/conf.cpython-311.pyc +0 -0
- ai_parrot-0.4.11/parrot/__pycache__/manager.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/__pycache__/models.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/__pycache__/version.cpython-311.pyc +0 -0
- ai_parrot-0.4.11/parrot/bots/__init__.py +13 -0
- ai_parrot-0.4.11/parrot/bots/__pycache__/__init__.cpython-311.pyc +0 -0
- ai_parrot-0.4.11/parrot/bots/__pycache__/a.cpython-311.pyc +0 -0
- ai_parrot-0.4.11/parrot/bots/__pycache__/abstract.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/asktroc.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/base.cpython-311.pyc +0 -0
- ai_parrot-0.4.11/parrot/bots/__pycache__/basic.cpython-311.pyc +0 -0
- ai_parrot-0.4.11/parrot/bots/__pycache__/chatbot.cpython-311.pyc +0 -0
- ai_parrot-0.4.11/parrot/bots/__pycache__/copilot.cpython-311.pyc +0 -0
- ai_parrot-0.4.11/parrot/bots/__pycache__/hrbot.cpython-311.pyc +0 -0
- ai_parrot-0.4.11/parrot/bots/__pycache__/troc.cpython-311.pyc +0 -0
- ai_parrot-0.4.11/parrot/bots/abstract.py +704 -0
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/base.py +1 -0
- ai_parrot-0.4.11/parrot/bots/basic.py +9 -0
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/bose.py +1 -1
- ai_parrot-0.4.11/parrot/bots/chatbot.py +257 -0
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/cody.py +1 -1
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/copilot.py +15 -14
- ai_parrot-0.3.18/parrot/chatbots/hragents.py → ai_parrot-0.4.11/parrot/bots/hrbot.py +1 -1
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/odoo.py +1 -1
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/retrievals/__init__.py +104 -72
- ai_parrot-0.4.11/parrot/bots/retrievals/__pycache__/__init__.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/chatbots/asktroc.py → ai_parrot-0.4.11/parrot/bots/troc.py +1 -1
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/conf.py +0 -1
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/exceptions.cpython-311-x86_64-linux-gnu.so +0 -0
- ai_parrot-0.4.11/parrot/llms/__pycache__/vertex.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/vertex.py +3 -2
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/manager.py +38 -35
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/models.py +4 -1
- ai_parrot-0.4.11/parrot/stores/__pycache__/abstract.cpython-311.pyc +0 -0
- ai_parrot-0.4.11/parrot/stores/__pycache__/milvus.cpython-311.pyc +0 -0
- ai_parrot-0.4.11/parrot/stores/__pycache__/qdrant.cpython-311.pyc +0 -0
- ai_parrot-0.4.11/parrot/stores/abstract.py +163 -0
- ai_parrot-0.4.11/parrot/stores/milvus.py +326 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/stores/qdrant.py +27 -70
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__init__.py +1 -1
- ai_parrot-0.4.11/parrot/tools/__pycache__/__init__.cpython-311.pyc +0 -0
- ai_parrot-0.4.11/parrot/tools/__pycache__/execute.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/parsers/toml.cpython-311-x86_64-linux-gnu.so +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/types.cpython-311-x86_64-linux-gnu.so +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/version.py +2 -2
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/setup.py +54 -85
- ai_parrot-0.3.18/parrot/__pycache__/manager.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/chatbots/__init__.py +0 -7
- ai_parrot-0.3.18/parrot/chatbots/__pycache__/__init__.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/chatbots/__pycache__/abstract.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/chatbots/__pycache__/basic.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/chatbots/__pycache__/copilot.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/chatbots/abstract.py +0 -728
- ai_parrot-0.3.18/parrot/chatbots/basic.py +0 -9
- ai_parrot-0.3.18/parrot/chatbots/retrievals/__pycache__/__init__.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/llms/__pycache__/vertex.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__init__.py +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/__init__.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/abstract.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/basepdf.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/basevideo.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/dir.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/excel.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/github.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/image.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/json.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/pdf.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/pdfchapters.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/pdffn.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/pdfimages.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/pdfmark.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/pdftables.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/ppt.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/qa.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/repo.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/rtd.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/tables.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/txt.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/video.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/videolocal.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/vimeo.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/web.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/web_base.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/word.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/__pycache__/youtube.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/abstract.py +0 -499
- ai_parrot-0.3.18/parrot/loaders/audio.py +0 -106
- ai_parrot-0.3.18/parrot/loaders/basepdf.py +0 -102
- ai_parrot-0.3.18/parrot/loaders/basevideo.py +0 -325
- ai_parrot-0.3.18/parrot/loaders/csv.py +0 -42
- ai_parrot-0.3.18/parrot/loaders/dir.py +0 -37
- ai_parrot-0.3.18/parrot/loaders/excel.py +0 -349
- ai_parrot-0.3.18/parrot/loaders/github.py +0 -65
- ai_parrot-0.3.18/parrot/loaders/handlers/__init__.py +0 -5
- ai_parrot-0.3.18/parrot/loaders/handlers/__pycache__/__init__.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/handlers/__pycache__/data.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/handlers/data.py +0 -213
- ai_parrot-0.3.18/parrot/loaders/image.py +0 -119
- ai_parrot-0.3.18/parrot/loaders/json.py +0 -52
- ai_parrot-0.3.18/parrot/loaders/pdf.py +0 -511
- ai_parrot-0.3.18/parrot/loaders/pdfchapters.py +0 -142
- ai_parrot-0.3.18/parrot/loaders/pdffn.py +0 -112
- ai_parrot-0.3.18/parrot/loaders/pdfimages.py +0 -207
- ai_parrot-0.3.18/parrot/loaders/pdfmark.py +0 -88
- ai_parrot-0.3.18/parrot/loaders/pdftables.py +0 -145
- ai_parrot-0.3.18/parrot/loaders/ppt.py +0 -30
- ai_parrot-0.3.18/parrot/loaders/qa.py +0 -81
- ai_parrot-0.3.18/parrot/loaders/repo.py +0 -103
- ai_parrot-0.3.18/parrot/loaders/rtd.py +0 -65
- ai_parrot-0.3.18/parrot/loaders/txt.py +0 -92
- ai_parrot-0.3.18/parrot/loaders/utils/__init__.py +0 -1
- ai_parrot-0.3.18/parrot/loaders/utils/__pycache__/__init__.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/utils/__pycache__/models.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/loaders/utils/models.py +0 -25
- ai_parrot-0.3.18/parrot/loaders/video.py +0 -96
- ai_parrot-0.3.18/parrot/loaders/videolocal.py +0 -259
- ai_parrot-0.3.18/parrot/loaders/vimeo.py +0 -106
- ai_parrot-0.3.18/parrot/loaders/web.py +0 -216
- ai_parrot-0.3.18/parrot/loaders/web_base.py +0 -112
- ai_parrot-0.3.18/parrot/loaders/word.py +0 -125
- ai_parrot-0.3.18/parrot/loaders/youtube.py +0 -241
- ai_parrot-0.3.18/parrot/stores/__pycache__/abstract.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/stores/__pycache__/milvus.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/stores/__pycache__/qdrant.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/stores/abstract.py +0 -171
- ai_parrot-0.3.18/parrot/stores/milvus.py +0 -636
- ai_parrot-0.3.18/parrot/tools/__pycache__/__init__.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/parrot/tools/__pycache__/execute.cpython-311.pyc +0 -0
- ai_parrot-0.3.18/settings/__init__.py +0 -0
- ai_parrot-0.3.18/settings/settings.py +0 -51
- ai_parrot-0.3.18/templates/.compiled +0 -0
- ai_parrot-0.3.18/templates/README.md +0 -1
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/.flake8 +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/.github/dependabot.yml +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/.github/workflows/codeql-analysis.yml +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/.github/workflows/release.yml +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/.gitignore +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/.isort.cfg +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/.pylintrc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/INSTALL +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/LICENSE +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/Makefile +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/README.md +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/SECURITY.md +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/mypy.ini +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/__init__.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/__pycache__/__init__.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/askbrett.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/bose.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/cody.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/dataframe.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/hragents.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/oddie.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/odoo.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/dataframe.py +0 -0
- {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/retrievals/constitutional.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/__init__.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/__pycache__/__init__.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__init__.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/__init__.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/bing.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/config.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/duckgo.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/file.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/google.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/md2pdf.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/rag.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/url.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/weather.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/bing.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/config.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/duckgo.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/file.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/google.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/gtrends.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/md2pdf.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/rag.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/search.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/url.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/exceptions.c +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/exceptions.pyx +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/handlers/__init__.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/handlers/__pycache__/__init__.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/handlers/__pycache__/bots.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/handlers/__pycache__/chat.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/handlers/bots.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/handlers/chat.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/interfaces/__init__.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/interfaces/__pycache__/__init__.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/interfaces/__pycache__/database.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/interfaces/database.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__init__.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__pycache__/__init__.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__pycache__/abstract.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__pycache__/anthropic.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__pycache__/google.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__pycache__/groq.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__pycache__/hf.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__pycache__/openai.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__pycache__/pipes.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/abstract.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/anthropic.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/google.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/groq.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/hf.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/openai.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/pipes.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/py.typed +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/stores/__init__.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/stores/__pycache__/__init__.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/stores/__pycache__/base.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/abstract.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/asknews.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/bing.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/duck.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/google.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/stack.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/weather.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/wikipedia.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/zipcode.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/abstract.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/asknews.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/bing.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/duck.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/execute.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/google.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/stack.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/weather.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/wikipedia.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/zipcode.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/__init__.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/__pycache__/__init__.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/__pycache__/toml.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/parsers/__init__.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/parsers/__pycache__/__init__.cpython-311.pyc +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/parsers/toml.c +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/parsers/toml.pyx +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/toml.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/types.cpp +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/types.pyx +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/uv.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/pyproject.toml +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/pytest.ini +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/requirements/requirements-dev.txt +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/run.py +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/setup.cfg +0 -0
- {ai_parrot-0.3.18 → ai_parrot-0.4.11}/tox.ini +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ai-parrot
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary: Live Chatbots based on Langchain chatbots and Agents Integrated into Navigator Framework or used into aiohttp applications.
|
|
3
|
+
Version: 0.4.11
|
|
4
|
+
Summary: Live Chatbots based on Langchain chatbots and Agents Integrated into Navigator Framework or used into any aiohttp applications.
|
|
5
5
|
Home-page: https://github.com/phenobarbital/ai-parrot
|
|
6
6
|
Author: Jesus Lara
|
|
7
7
|
Author-email: jesuslara@phenobarbital.info
|
|
@@ -30,92 +30,56 @@ Requires-Python: >=3.9.20
|
|
|
30
30
|
Description-Content-Type: text/markdown
|
|
31
31
|
License-File: LICENSE
|
|
32
32
|
Requires-Dist: Cython==3.0.11
|
|
33
|
-
Requires-Dist:
|
|
34
|
-
Requires-Dist: langchain
|
|
35
|
-
Requires-Dist: langchain-
|
|
36
|
-
Requires-Dist:
|
|
37
|
-
Requires-Dist:
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
Requires-Dist: langchain-text-splitters==0.2.2
|
|
40
|
-
Requires-Dist: langchain-huggingface==0.0.3
|
|
41
|
-
Requires-Dist: huggingface-hub==0.23.5
|
|
42
|
-
Requires-Dist: llama-index==0.10.20
|
|
43
|
-
Requires-Dist: llama_cpp_python==0.2.56
|
|
44
|
-
Requires-Dist: bitsandbytes==0.43.3
|
|
45
|
-
Requires-Dist: Cartopy==0.22.0
|
|
46
|
-
Requires-Dist: chromadb==0.4.24
|
|
47
|
-
Requires-Dist: datasets==2.18.0
|
|
48
|
-
Requires-Dist: faiss-cpu==1.8.0
|
|
49
|
-
Requires-Dist: fastavro==1.9.4
|
|
50
|
-
Requires-Dist: gunicorn==21.2.0
|
|
33
|
+
Requires-Dist: langchain>=0.3.4
|
|
34
|
+
Requires-Dist: langchain-community==0.3.3
|
|
35
|
+
Requires-Dist: langchain-experimental==0.3.2
|
|
36
|
+
Requires-Dist: langchainhub==0.1.21
|
|
37
|
+
Requires-Dist: huggingface-hub==0.26.2
|
|
38
|
+
Requires-Dist: faiss-cpu>=1.9.0
|
|
51
39
|
Requires-Dist: jq==1.7.0
|
|
52
40
|
Requires-Dist: rank_bm25==0.2.2
|
|
53
|
-
Requires-Dist: matplotlib==3.
|
|
54
|
-
Requires-Dist: numba==0.59.0
|
|
55
|
-
Requires-Dist: querysource>=3.12.10
|
|
56
|
-
Requires-Dist: safetensors>=0.4.3
|
|
57
|
-
Requires-Dist: sentence-transformers==3.0.1
|
|
41
|
+
Requires-Dist: matplotlib==3.9.2
|
|
58
42
|
Requires-Dist: tabulate==0.9.0
|
|
59
|
-
Requires-Dist: tiktoken==0.7.0
|
|
60
|
-
Requires-Dist: tokenizers==0.19.1
|
|
61
43
|
Requires-Dist: selenium>=4.18.1
|
|
62
44
|
Requires-Dist: webdriver_manager>=4.0.1
|
|
63
45
|
Requires-Dist: transitions==0.9.0
|
|
64
46
|
Requires-Dist: sentencepiece==0.2.0
|
|
65
|
-
Requires-Dist: duckduckgo-search==5.3.0
|
|
66
|
-
Requires-Dist: google-search-results==2.4.2
|
|
67
|
-
Requires-Dist: google-api-python-client>=2.86.0
|
|
68
|
-
Requires-Dist: gdown==5.1.0
|
|
69
47
|
Requires-Dist: weasyprint==61.2
|
|
70
48
|
Requires-Dist: markdown2==2.4.13
|
|
71
|
-
|
|
72
|
-
Requires-Dist:
|
|
73
|
-
Requires-Dist:
|
|
74
|
-
Requires-Dist:
|
|
75
|
-
Requires-Dist:
|
|
76
|
-
Requires-Dist:
|
|
77
|
-
Requires-Dist:
|
|
78
|
-
Requires-Dist:
|
|
79
|
-
Requires-Dist:
|
|
80
|
-
Requires-Dist:
|
|
81
|
-
Requires-Dist:
|
|
82
|
-
Requires-Dist:
|
|
83
|
-
Provides-Extra:
|
|
84
|
-
Requires-Dist:
|
|
85
|
-
Requires-Dist:
|
|
86
|
-
Requires-Dist:
|
|
87
|
-
Requires-Dist:
|
|
88
|
-
Requires-Dist:
|
|
89
|
-
Requires-Dist:
|
|
90
|
-
Requires-Dist:
|
|
91
|
-
Requires-Dist:
|
|
92
|
-
Requires-Dist:
|
|
93
|
-
Requires-Dist:
|
|
94
|
-
Requires-Dist:
|
|
95
|
-
Requires-Dist:
|
|
96
|
-
Requires-Dist:
|
|
97
|
-
Requires-Dist:
|
|
98
|
-
Requires-Dist:
|
|
99
|
-
|
|
100
|
-
Requires-Dist:
|
|
101
|
-
Requires-Dist:
|
|
102
|
-
Requires-Dist:
|
|
103
|
-
Requires-Dist: pdfminer.six==20231228; extra == "loaders"
|
|
104
|
-
Requires-Dist: pdfplumber==0.11.0; extra == "loaders"
|
|
105
|
-
Requires-Dist: GitPython==3.1.42; extra == "loaders"
|
|
106
|
-
Requires-Dist: opentelemetry-sdk==1.24.0; extra == "loaders"
|
|
107
|
-
Requires-Dist: paddlepaddle==2.6.1; extra == "loaders"
|
|
108
|
-
Requires-Dist: paddlepaddle_gpu==2.6.1; extra == "loaders"
|
|
109
|
-
Requires-Dist: paddleocr==2.8.1; extra == "loaders"
|
|
110
|
-
Requires-Dist: ftfy==6.2.3; extra == "loaders"
|
|
111
|
-
Requires-Dist: librosa==0.10.1; extra == "loaders"
|
|
112
|
-
Requires-Dist: XlsxWriter==3.2.0; extra == "loaders"
|
|
113
|
-
Requires-Dist: timm==1.0.9; extra == "loaders"
|
|
114
|
-
Requires-Dist: simsimd==4.3.1; extra == "loaders"
|
|
115
|
-
Requires-Dist: opencv-python==4.10.0.84; extra == "loaders"
|
|
116
|
-
Requires-Dist: easyocr==1.7.1; extra == "loaders"
|
|
49
|
+
Provides-Extra: agents
|
|
50
|
+
Requires-Dist: numba==0.59.0; extra == "agents"
|
|
51
|
+
Requires-Dist: yfinance==0.2.40; extra == "agents"
|
|
52
|
+
Requires-Dist: youtube_search==2.1.2; extra == "agents"
|
|
53
|
+
Requires-Dist: wikipedia==1.4.0; extra == "agents"
|
|
54
|
+
Requires-Dist: mediawikiapi==1.2; extra == "agents"
|
|
55
|
+
Requires-Dist: pyowm==3.3.0; extra == "agents"
|
|
56
|
+
Requires-Dist: O365==2.0.35; extra == "agents"
|
|
57
|
+
Requires-Dist: stackapi==0.3.1; extra == "agents"
|
|
58
|
+
Requires-Dist: duckduckgo-search==5.3.0; extra == "agents"
|
|
59
|
+
Requires-Dist: google-search-results==2.4.2; extra == "agents"
|
|
60
|
+
Requires-Dist: google-api-python-client>=2.86.0; extra == "agents"
|
|
61
|
+
Provides-Extra: chatbots
|
|
62
|
+
Requires-Dist: torch==2.5.1; extra == "chatbots"
|
|
63
|
+
Requires-Dist: langchain_huggingface==0.1.2; extra == "chatbots"
|
|
64
|
+
Requires-Dist: langchain-text-splitters==0.3.1; extra == "chatbots"
|
|
65
|
+
Requires-Dist: fastembed==0.3.4; extra == "chatbots"
|
|
66
|
+
Requires-Dist: tiktoken==0.7.0; extra == "chatbots"
|
|
67
|
+
Requires-Dist: accelerate==0.34.2; extra == "chatbots"
|
|
68
|
+
Requires-Dist: llama-index==0.11.20; extra == "chatbots"
|
|
69
|
+
Requires-Dist: llama_cpp_python==0.2.56; extra == "chatbots"
|
|
70
|
+
Requires-Dist: bitsandbytes==0.44.1; extra == "chatbots"
|
|
71
|
+
Requires-Dist: datasets>=3.0.2; extra == "chatbots"
|
|
72
|
+
Requires-Dist: safetensors>=0.4.3; extra == "chatbots"
|
|
73
|
+
Requires-Dist: transformers>=4.44.2; extra == "chatbots"
|
|
74
|
+
Requires-Dist: sentence-transformers==3.0.1; extra == "chatbots"
|
|
75
|
+
Requires-Dist: tokenizers==0.20.1; extra == "chatbots"
|
|
76
|
+
Requires-Dist: torchvision==0.20.1; extra == "chatbots"
|
|
77
|
+
Requires-Dist: tensorflow==2.18.0; extra == "chatbots"
|
|
78
|
+
Requires-Dist: tf-keras==2.18.0; extra == "chatbots"
|
|
79
|
+
Requires-Dist: simsimd==4.3.1; extra == "chatbots"
|
|
80
|
+
Requires-Dist: opencv-python==4.10.0.84; extra == "chatbots"
|
|
117
81
|
Provides-Extra: anthropic
|
|
118
|
-
Requires-Dist: langchain-anthropic==0.
|
|
82
|
+
Requires-Dist: langchain-anthropic==0.2.4; extra == "anthropic"
|
|
119
83
|
Requires-Dist: anthropic==0.25.2; extra == "anthropic"
|
|
120
84
|
Provides-Extra: openai
|
|
121
85
|
Requires-Dist: langchain-openai==0.1.21; extra == "openai"
|
|
@@ -123,20 +87,22 @@ Requires-Dist: openai==1.40.3; extra == "openai"
|
|
|
123
87
|
Requires-Dist: llama-index-llms-openai==0.1.11; extra == "openai"
|
|
124
88
|
Requires-Dist: tiktoken==0.7.0; extra == "openai"
|
|
125
89
|
Provides-Extra: google
|
|
126
|
-
Requires-Dist: langchain-google-
|
|
127
|
-
Requires-Dist: langchain-google-
|
|
128
|
-
Requires-Dist: vertexai==1.
|
|
90
|
+
Requires-Dist: langchain-google-genai==2.0.1; extra == "google"
|
|
91
|
+
Requires-Dist: langchain-google-vertexai==2.0.5; extra == "google"
|
|
92
|
+
Requires-Dist: vertexai==1.71.1; extra == "google"
|
|
93
|
+
Requires-Dist: pydantic==2.9.2; extra == "google"
|
|
94
|
+
Requires-Dist: pydantic-core==2.23.4; extra == "google"
|
|
129
95
|
Provides-Extra: hunggingfaces
|
|
130
96
|
Requires-Dist: llama-index-llms-huggingface==0.2.7; extra == "hunggingfaces"
|
|
131
97
|
Provides-Extra: groq
|
|
132
98
|
Requires-Dist: groq==0.11.0; extra == "groq"
|
|
133
|
-
Requires-Dist: langchain-groq==0.
|
|
99
|
+
Requires-Dist: langchain-groq==0.2.0; extra == "groq"
|
|
134
100
|
Provides-Extra: qdrant
|
|
135
|
-
Requires-Dist: qdrant-client==1.
|
|
101
|
+
Requires-Dist: qdrant-client==1.12.1; extra == "qdrant"
|
|
136
102
|
Provides-Extra: milvus
|
|
137
|
-
Requires-Dist: langchain-milvus>=0.1.
|
|
103
|
+
Requires-Dist: langchain-milvus>=0.1.6; extra == "milvus"
|
|
104
|
+
Requires-Dist: pymilvus==2.4.8; extra == "milvus"
|
|
138
105
|
Requires-Dist: milvus==2.3.5; extra == "milvus"
|
|
139
|
-
Requires-Dist: pymilvus==2.4.6; extra == "milvus"
|
|
140
106
|
Provides-Extra: crew
|
|
141
107
|
Requires-Dist: colbert-ai==0.2.19; extra == "crew"
|
|
142
108
|
Requires-Dist: vanna==0.3.4; extra == "crew"
|
|
@@ -32,33 +32,38 @@ parrot/__pycache__/conf.cpython-311.pyc
|
|
|
32
32
|
parrot/__pycache__/manager.cpython-311.pyc
|
|
33
33
|
parrot/__pycache__/models.cpython-311.pyc
|
|
34
34
|
parrot/__pycache__/version.cpython-311.pyc
|
|
35
|
-
parrot/
|
|
36
|
-
parrot/
|
|
37
|
-
parrot/
|
|
38
|
-
parrot/
|
|
39
|
-
parrot/
|
|
40
|
-
parrot/
|
|
41
|
-
parrot/
|
|
42
|
-
parrot/
|
|
43
|
-
parrot/
|
|
44
|
-
parrot/
|
|
45
|
-
parrot/
|
|
46
|
-
parrot/
|
|
47
|
-
parrot/
|
|
48
|
-
parrot/
|
|
49
|
-
parrot/
|
|
50
|
-
parrot/
|
|
51
|
-
parrot/
|
|
52
|
-
parrot/
|
|
53
|
-
parrot/
|
|
54
|
-
parrot/
|
|
55
|
-
parrot/
|
|
56
|
-
parrot/
|
|
57
|
-
parrot/
|
|
58
|
-
parrot/
|
|
59
|
-
parrot/
|
|
60
|
-
parrot/
|
|
61
|
-
parrot/
|
|
35
|
+
parrot/bots/__init__.py
|
|
36
|
+
parrot/bots/abstract.py
|
|
37
|
+
parrot/bots/base.py
|
|
38
|
+
parrot/bots/basic.py
|
|
39
|
+
parrot/bots/bose.py
|
|
40
|
+
parrot/bots/chatbot.py
|
|
41
|
+
parrot/bots/cody.py
|
|
42
|
+
parrot/bots/copilot.py
|
|
43
|
+
parrot/bots/dataframe.py
|
|
44
|
+
parrot/bots/hrbot.py
|
|
45
|
+
parrot/bots/odoo.py
|
|
46
|
+
parrot/bots/troc.py
|
|
47
|
+
parrot/bots/__pycache__/__init__.cpython-311.pyc
|
|
48
|
+
parrot/bots/__pycache__/a.cpython-311.pyc
|
|
49
|
+
parrot/bots/__pycache__/abstract.cpython-311.pyc
|
|
50
|
+
parrot/bots/__pycache__/askbrett.cpython-311.pyc
|
|
51
|
+
parrot/bots/__pycache__/asktroc.cpython-311.pyc
|
|
52
|
+
parrot/bots/__pycache__/base.cpython-311.pyc
|
|
53
|
+
parrot/bots/__pycache__/basic.cpython-311.pyc
|
|
54
|
+
parrot/bots/__pycache__/bose.cpython-311.pyc
|
|
55
|
+
parrot/bots/__pycache__/chatbot.cpython-311.pyc
|
|
56
|
+
parrot/bots/__pycache__/cody.cpython-311.pyc
|
|
57
|
+
parrot/bots/__pycache__/copilot.cpython-311.pyc
|
|
58
|
+
parrot/bots/__pycache__/dataframe.cpython-311.pyc
|
|
59
|
+
parrot/bots/__pycache__/hragents.cpython-311.pyc
|
|
60
|
+
parrot/bots/__pycache__/hrbot.cpython-311.pyc
|
|
61
|
+
parrot/bots/__pycache__/oddie.cpython-311.pyc
|
|
62
|
+
parrot/bots/__pycache__/odoo.cpython-311.pyc
|
|
63
|
+
parrot/bots/__pycache__/troc.cpython-311.pyc
|
|
64
|
+
parrot/bots/retrievals/__init__.py
|
|
65
|
+
parrot/bots/retrievals/constitutional.py
|
|
66
|
+
parrot/bots/retrievals/__pycache__/__init__.cpython-311.pyc
|
|
62
67
|
parrot/crew/__init__.py
|
|
63
68
|
parrot/crew/__pycache__/__init__.cpython-311.pyc
|
|
64
69
|
parrot/crew/tools/__init__.py
|
|
@@ -110,71 +115,6 @@ parrot/llms/__pycache__/hf.cpython-311.pyc
|
|
|
110
115
|
parrot/llms/__pycache__/openai.cpython-311.pyc
|
|
111
116
|
parrot/llms/__pycache__/pipes.cpython-311.pyc
|
|
112
117
|
parrot/llms/__pycache__/vertex.cpython-311.pyc
|
|
113
|
-
parrot/loaders/__init__.py
|
|
114
|
-
parrot/loaders/abstract.py
|
|
115
|
-
parrot/loaders/audio.py
|
|
116
|
-
parrot/loaders/basepdf.py
|
|
117
|
-
parrot/loaders/basevideo.py
|
|
118
|
-
parrot/loaders/csv.py
|
|
119
|
-
parrot/loaders/dir.py
|
|
120
|
-
parrot/loaders/excel.py
|
|
121
|
-
parrot/loaders/github.py
|
|
122
|
-
parrot/loaders/image.py
|
|
123
|
-
parrot/loaders/json.py
|
|
124
|
-
parrot/loaders/pdf.py
|
|
125
|
-
parrot/loaders/pdfchapters.py
|
|
126
|
-
parrot/loaders/pdffn.py
|
|
127
|
-
parrot/loaders/pdfimages.py
|
|
128
|
-
parrot/loaders/pdfmark.py
|
|
129
|
-
parrot/loaders/pdftables.py
|
|
130
|
-
parrot/loaders/ppt.py
|
|
131
|
-
parrot/loaders/qa.py
|
|
132
|
-
parrot/loaders/repo.py
|
|
133
|
-
parrot/loaders/rtd.py
|
|
134
|
-
parrot/loaders/txt.py
|
|
135
|
-
parrot/loaders/video.py
|
|
136
|
-
parrot/loaders/videolocal.py
|
|
137
|
-
parrot/loaders/vimeo.py
|
|
138
|
-
parrot/loaders/web.py
|
|
139
|
-
parrot/loaders/web_base.py
|
|
140
|
-
parrot/loaders/word.py
|
|
141
|
-
parrot/loaders/youtube.py
|
|
142
|
-
parrot/loaders/__pycache__/__init__.cpython-311.pyc
|
|
143
|
-
parrot/loaders/__pycache__/abstract.cpython-311.pyc
|
|
144
|
-
parrot/loaders/__pycache__/basepdf.cpython-311.pyc
|
|
145
|
-
parrot/loaders/__pycache__/basevideo.cpython-311.pyc
|
|
146
|
-
parrot/loaders/__pycache__/dir.cpython-311.pyc
|
|
147
|
-
parrot/loaders/__pycache__/excel.cpython-311.pyc
|
|
148
|
-
parrot/loaders/__pycache__/github.cpython-311.pyc
|
|
149
|
-
parrot/loaders/__pycache__/image.cpython-311.pyc
|
|
150
|
-
parrot/loaders/__pycache__/json.cpython-311.pyc
|
|
151
|
-
parrot/loaders/__pycache__/pdf.cpython-311.pyc
|
|
152
|
-
parrot/loaders/__pycache__/pdfchapters.cpython-311.pyc
|
|
153
|
-
parrot/loaders/__pycache__/pdffn.cpython-311.pyc
|
|
154
|
-
parrot/loaders/__pycache__/pdfimages.cpython-311.pyc
|
|
155
|
-
parrot/loaders/__pycache__/pdfmark.cpython-311.pyc
|
|
156
|
-
parrot/loaders/__pycache__/pdftables.cpython-311.pyc
|
|
157
|
-
parrot/loaders/__pycache__/ppt.cpython-311.pyc
|
|
158
|
-
parrot/loaders/__pycache__/qa.cpython-311.pyc
|
|
159
|
-
parrot/loaders/__pycache__/repo.cpython-311.pyc
|
|
160
|
-
parrot/loaders/__pycache__/rtd.cpython-311.pyc
|
|
161
|
-
parrot/loaders/__pycache__/tables.cpython-311.pyc
|
|
162
|
-
parrot/loaders/__pycache__/txt.cpython-311.pyc
|
|
163
|
-
parrot/loaders/__pycache__/video.cpython-311.pyc
|
|
164
|
-
parrot/loaders/__pycache__/videolocal.cpython-311.pyc
|
|
165
|
-
parrot/loaders/__pycache__/vimeo.cpython-311.pyc
|
|
166
|
-
parrot/loaders/__pycache__/web.cpython-311.pyc
|
|
167
|
-
parrot/loaders/__pycache__/web_base.cpython-311.pyc
|
|
168
|
-
parrot/loaders/__pycache__/word.cpython-311.pyc
|
|
169
|
-
parrot/loaders/__pycache__/youtube.cpython-311.pyc
|
|
170
|
-
parrot/loaders/handlers/__init__.py
|
|
171
|
-
parrot/loaders/handlers/data.py
|
|
172
|
-
parrot/loaders/handlers/__pycache__/__init__.cpython-311.pyc
|
|
173
|
-
parrot/loaders/handlers/__pycache__/data.cpython-311.pyc
|
|
174
|
-
parrot/loaders/utils/__init__.py
|
|
175
|
-
parrot/loaders/utils/models.py
|
|
176
|
-
parrot/loaders/utils/__pycache__/__init__.cpython-311.pyc
|
|
177
|
-
parrot/loaders/utils/__pycache__/models.cpython-311.pyc
|
|
178
118
|
parrot/stores/__init__.py
|
|
179
119
|
parrot/stores/abstract.py
|
|
180
120
|
parrot/stores/milvus.py
|
|
@@ -219,8 +159,4 @@ parrot/utils/parsers/toml.c
|
|
|
219
159
|
parrot/utils/parsers/toml.cpython-311-x86_64-linux-gnu.so
|
|
220
160
|
parrot/utils/parsers/toml.pyx
|
|
221
161
|
parrot/utils/parsers/__pycache__/__init__.cpython-311.pyc
|
|
222
|
-
requirements/requirements-dev.txt
|
|
223
|
-
settings/__init__.py
|
|
224
|
-
settings/settings.py
|
|
225
|
-
templates/.compiled
|
|
226
|
-
templates/README.md
|
|
162
|
+
requirements/requirements-dev.txt
|
|
@@ -3,7 +3,6 @@ from navigator.handlers.types import AppHandler
|
|
|
3
3
|
from navigator.background import BackgroundQueue
|
|
4
4
|
from navigator_auth import AuthHandler
|
|
5
5
|
from parrot.manager import ChatbotManager
|
|
6
|
-
# from parrot.loaders.handlers import DataManagement
|
|
7
6
|
from parrot.conf import STATIC_DIR
|
|
8
7
|
from parrot.handlers.bots import (
|
|
9
8
|
FeedbackTypeHandler,
|
|
@@ -52,8 +51,6 @@ class Main(AppHandler):
|
|
|
52
51
|
'/api/v1/chatbots/questions/{sid}',
|
|
53
52
|
ChatbotSharingQuestion
|
|
54
53
|
)
|
|
55
|
-
# Management APIs:
|
|
56
|
-
# DataManagement.configure(self.app)
|
|
57
54
|
|
|
58
55
|
|
|
59
56
|
async def on_prepare(self, request, response):
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from .abstract import AbstractBot
|
|
2
|
+
from .basic import BasicBot
|
|
3
|
+
from .troc import AskTROC
|
|
4
|
+
from .chatbot import Chatbot
|
|
5
|
+
from .hrbot import HRAgent
|
|
6
|
+
from .cody import Cody
|
|
7
|
+
from .odoo import OddieBot
|
|
8
|
+
from .bose import BoseBot
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
__all__ = (
|
|
12
|
+
'AbstractBot',
|
|
13
|
+
)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
{ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/base.cpython-311.pyc
RENAMED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|