ai-parrot 0.3.18__cp311-cp311-manylinux_2_28_x86_64.whl → 0.5.8__cp311-cp311-manylinux_2_28_x86_64.whl
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.dist-info → ai_parrot-0.5.8.dist-info}/METADATA +99 -104
- {ai_parrot-0.3.18.dist-info → ai_parrot-0.5.8.dist-info}/RECORD +71 -31
- {ai_parrot-0.3.18.dist-info → ai_parrot-0.5.8.dist-info}/WHEEL +1 -1
- {ai_parrot-0.3.18.dist-info → ai_parrot-0.5.8.dist-info}/top_level.txt +0 -1
- parrot/bots/__init__.py +9 -0
- parrot/bots/abstract.py +1013 -0
- parrot/bots/agent.py +404 -0
- parrot/bots/base.py +370 -0
- parrot/bots/basic.py +9 -0
- parrot/bots/bose.py +17 -0
- parrot/bots/chatbot.py +259 -0
- parrot/bots/cody.py +17 -0
- parrot/bots/copilot.py +117 -0
- parrot/bots/dataframe.py +103 -0
- parrot/bots/hrbot.py +15 -0
- parrot/bots/interfaces/__init__.py +1 -0
- parrot/bots/interfaces/retrievers.py +12 -0
- parrot/bots/odoo.py +17 -0
- parrot/bots/prompts/__init__.py +36 -0
- parrot/bots/prompts/agents.py +93 -0
- parrot/bots/retrievals/__init__.py +1 -0
- parrot/bots/retrievals/constitutional.py +19 -0
- parrot/bots/retrievals/multi.py +50 -0
- parrot/bots/retrievals/retrieval.py +610 -0
- parrot/bots/troc.py +16 -0
- parrot/conf.py +35 -1
- parrot/exceptions.cpython-311-x86_64-linux-gnu.so +0 -0
- parrot/handlers/bots.py +1 -1
- parrot/handlers/chat.py +44 -21
- parrot/interfaces/http.py +805 -0
- parrot/llms/__init__.py +1 -1
- parrot/llms/google.py +0 -9
- parrot/llms/groq.py +9 -5
- parrot/llms/openai.py +0 -13
- parrot/llms/vertex.py +19 -26
- parrot/manager.py +74 -56
- parrot/models.py +55 -35
- parrot/stores/__init__.py +9 -46
- parrot/stores/abstract.py +186 -114
- parrot/stores/chroma.py +188 -0
- parrot/stores/duck.py +162 -0
- parrot/stores/embeddings/__init__.py +10 -0
- parrot/stores/embeddings/abstract.py +46 -0
- parrot/stores/embeddings/base.py +47 -0
- parrot/stores/embeddings/bge.py +20 -0
- parrot/stores/embeddings/fastembed.py +17 -0
- parrot/stores/embeddings/google.py +18 -0
- parrot/stores/embeddings/huggingface.py +20 -0
- parrot/stores/embeddings/ollama.py +14 -0
- parrot/stores/embeddings/openai.py +26 -0
- parrot/stores/embeddings/transformers.py +21 -0
- parrot/stores/embeddings/vertexai.py +17 -0
- parrot/stores/empty.py +10 -0
- parrot/stores/faiss.py +160 -0
- parrot/stores/milvus.py +162 -403
- parrot/stores/postgres.py +653 -0
- parrot/stores/qdrant.py +136 -119
- parrot/tools/__init__.py +19 -11
- parrot/tools/abstract.py +13 -2
- parrot/tools/asknews.py +3 -2
- parrot/tools/basic.py +53 -0
- parrot/tools/bby.py +359 -0
- parrot/tools/bing.py +1 -1
- parrot/tools/duck.py +2 -2
- parrot/tools/google.py +3 -3
- parrot/tools/stack.py +2 -1
- parrot/tools/wikipedia.py +4 -5
- parrot/tools/zipcode.py +36 -17
- parrot/utils/types.cpython-311-x86_64-linux-gnu.so +0 -0
- parrot/version.py +2 -2
- {ai_parrot-0.3.18.dist-info → ai_parrot-0.5.8.dist-info}/LICENSE +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
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.5.8
|
|
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,122 +30,117 @@ 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-community
|
|
36
|
-
Requires-Dist: langchain-
|
|
37
|
-
Requires-Dist: langchain-
|
|
38
|
-
Requires-Dist: langchainhub==0.1.
|
|
39
|
-
Requires-Dist:
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist:
|
|
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.19
|
|
34
|
+
Requires-Dist: langchain-core==0.3.40
|
|
35
|
+
Requires-Dist: langchain-community==0.3.18
|
|
36
|
+
Requires-Dist: langchain-experimental==0.3.4
|
|
37
|
+
Requires-Dist: langchain-text-splitters==0.3.6
|
|
38
|
+
Requires-Dist: langchainhub==0.1.21
|
|
39
|
+
Requires-Dist: huggingface-hub==0.29.1
|
|
40
|
+
Requires-Dist: langgraph==0.3.0
|
|
41
|
+
Requires-Dist: faiss-cpu>=1.9.0
|
|
51
42
|
Requires-Dist: jq==1.7.0
|
|
52
|
-
Requires-Dist:
|
|
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
|
|
43
|
+
Requires-Dist: rank_bm25==0.2.2
|
|
44
|
+
Requires-Dist: matplotlib==3.9.2
|
|
58
45
|
Requires-Dist: tabulate==0.9.0
|
|
59
|
-
Requires-Dist: tiktoken==0.7.0
|
|
60
|
-
Requires-Dist: tokenizers==0.19.1
|
|
61
46
|
Requires-Dist: selenium>=4.18.1
|
|
62
|
-
Requires-Dist:
|
|
47
|
+
Requires-Dist: webdriver_manager>=4.0.1
|
|
63
48
|
Requires-Dist: transitions==0.9.0
|
|
64
49
|
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
50
|
Requires-Dist: weasyprint==61.2
|
|
70
51
|
Requires-Dist: markdown2==2.4.13
|
|
71
|
-
Requires-Dist:
|
|
72
|
-
|
|
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
|
-
|
|
84
|
-
Requires-Dist:
|
|
85
|
-
Requires-Dist:
|
|
86
|
-
Requires-Dist:
|
|
87
|
-
Requires-Dist:
|
|
52
|
+
Requires-Dist: psycopg-binary==3.2.5
|
|
53
|
+
Provides-Extra: agents
|
|
54
|
+
Requires-Dist: numexpr==2.10.2; extra == "agents"
|
|
55
|
+
Requires-Dist: numba==0.59.0; extra == "agents"
|
|
56
|
+
Requires-Dist: yfinance==0.2.54; extra == "agents"
|
|
57
|
+
Requires-Dist: youtube_search==2.1.2; extra == "agents"
|
|
58
|
+
Requires-Dist: wikipedia==1.4.0; extra == "agents"
|
|
59
|
+
Requires-Dist: mediawikiapi==1.2; extra == "agents"
|
|
60
|
+
Requires-Dist: wikibase-rest-api-client==0.2.2; extra == "agents"
|
|
61
|
+
Requires-Dist: asknews>=0.10.0; extra == "agents"
|
|
62
|
+
Requires-Dist: pyowm==3.3.0; extra == "agents"
|
|
63
|
+
Requires-Dist: O365==2.0.35; extra == "agents"
|
|
64
|
+
Requires-Dist: stackapi==0.3.1; extra == "agents"
|
|
65
|
+
Requires-Dist: duckduckgo-search==7.5.0; extra == "agents"
|
|
66
|
+
Requires-Dist: google-search-results==2.4.2; extra == "agents"
|
|
67
|
+
Requires-Dist: google-api-python-client>=2.86.0; extra == "agents"
|
|
68
|
+
Requires-Dist: google-api-core==2.24.1; extra == "agents"
|
|
69
|
+
Requires-Dist: grpcio-status==1.67.1; extra == "agents"
|
|
70
|
+
Provides-Extra: vector
|
|
71
|
+
Requires-Dist: torch==2.5.1; extra == "vector"
|
|
72
|
+
Requires-Dist: langchain_huggingface==0.1.2; extra == "vector"
|
|
73
|
+
Requires-Dist: fastembed==0.3.4; extra == "vector"
|
|
74
|
+
Requires-Dist: tiktoken==0.7.0; extra == "vector"
|
|
75
|
+
Requires-Dist: accelerate==0.34.2; extra == "vector"
|
|
76
|
+
Requires-Dist: llama-index==0.11.20; extra == "vector"
|
|
77
|
+
Requires-Dist: llama_cpp_python==0.2.56; extra == "vector"
|
|
78
|
+
Requires-Dist: bitsandbytes==0.44.1; extra == "vector"
|
|
79
|
+
Requires-Dist: datasets>=3.0.2; extra == "vector"
|
|
80
|
+
Requires-Dist: safetensors>=0.4.3; extra == "vector"
|
|
81
|
+
Requires-Dist: transformers>=4.44.2; extra == "vector"
|
|
82
|
+
Requires-Dist: sentence-transformers==3.4.1; extra == "vector"
|
|
83
|
+
Requires-Dist: tokenizers==0.20.1; extra == "vector"
|
|
84
|
+
Requires-Dist: torchvision==0.20.1; extra == "vector"
|
|
85
|
+
Requires-Dist: tensorflow==2.18.0; extra == "vector"
|
|
86
|
+
Requires-Dist: tf-keras==2.18.0; extra == "vector"
|
|
87
|
+
Requires-Dist: simsimd==4.3.1; extra == "vector"
|
|
88
|
+
Requires-Dist: opencv-python==4.10.0.84; extra == "vector"
|
|
89
|
+
Requires-Dist: langchain-postgres==0.0.13; extra == "vector"
|
|
90
|
+
Requires-Dist: langchain_chroma==0.2.2; extra == "vector"
|
|
91
|
+
Requires-Dist: chromadb==0.6.3; extra == "vector"
|
|
92
|
+
Requires-Dist: langchain_duckdb==0.1.1; extra == "vector"
|
|
93
|
+
Requires-Dist: langchain-ollama==0.2.3; extra == "vector"
|
|
88
94
|
Provides-Extra: anthropic
|
|
89
|
-
Requires-Dist: langchain-anthropic==0.
|
|
95
|
+
Requires-Dist: langchain-anthropic==0.2.4; extra == "anthropic"
|
|
90
96
|
Requires-Dist: anthropic==0.25.2; extra == "anthropic"
|
|
91
|
-
Provides-Extra: basic_loaders
|
|
92
|
-
Requires-Dist: youtube-transcript-api==0.6.2; extra == "basic-loaders"
|
|
93
|
-
Requires-Dist: pymupdf==1.24.4; extra == "basic-loaders"
|
|
94
|
-
Requires-Dist: pymupdf4llm==0.0.1; extra == "basic-loaders"
|
|
95
|
-
Requires-Dist: pdf4llm==0.0.6; extra == "basic-loaders"
|
|
96
|
-
Requires-Dist: pytube==15.0.0; extra == "basic-loaders"
|
|
97
|
-
Requires-Dist: pydub==0.25.1; extra == "basic-loaders"
|
|
98
|
-
Requires-Dist: markdownify==0.12.1; extra == "basic-loaders"
|
|
99
|
-
Requires-Dist: yt-dlp==2024.4.9; extra == "basic-loaders"
|
|
100
|
-
Requires-Dist: moviepy==1.0.3; extra == "basic-loaders"
|
|
101
|
-
Requires-Dist: rapidocr-onnxruntime==1.3.15; extra == "basic-loaders"
|
|
102
|
-
Requires-Dist: pytesseract==0.3.10; extra == "basic-loaders"
|
|
103
|
-
Requires-Dist: python-docx==1.1.0; extra == "basic-loaders"
|
|
104
|
-
Requires-Dist: python-pptx==0.6.23; extra == "basic-loaders"
|
|
105
|
-
Requires-Dist: docx2txt==0.8; extra == "basic-loaders"
|
|
106
|
-
Requires-Dist: mammoth==1.7.1; extra == "basic-loaders"
|
|
107
|
-
Provides-Extra: crew
|
|
108
|
-
Requires-Dist: colbert-ai==0.2.19; extra == "crew"
|
|
109
|
-
Requires-Dist: vanna==0.3.4; extra == "crew"
|
|
110
|
-
Requires-Dist: crewai[tools]==0.28.8; extra == "crew"
|
|
111
|
-
Provides-Extra: google
|
|
112
|
-
Requires-Dist: langchain-google-vertexai==1.0.10; extra == "google"
|
|
113
|
-
Requires-Dist: langchain-google-genai==1.0.10; extra == "google"
|
|
114
|
-
Requires-Dist: vertexai==1.65.0; extra == "google"
|
|
115
|
-
Provides-Extra: groq
|
|
116
|
-
Requires-Dist: groq==0.11.0; extra == "groq"
|
|
117
|
-
Requires-Dist: langchain-groq==0.1.9; extra == "groq"
|
|
118
|
-
Provides-Extra: hunggingfaces
|
|
119
|
-
Requires-Dist: llama-index-llms-huggingface==0.2.7; extra == "hunggingfaces"
|
|
120
|
-
Provides-Extra: loaders
|
|
121
|
-
Requires-Dist: unstructured==0.14.3; extra == "loaders"
|
|
122
|
-
Requires-Dist: unstructured-client==0.18.0; extra == "loaders"
|
|
123
|
-
Requires-Dist: PyPDF2==3.0.1; extra == "loaders"
|
|
124
|
-
Requires-Dist: pdfminer.six==20231228; extra == "loaders"
|
|
125
|
-
Requires-Dist: pdfplumber==0.11.0; extra == "loaders"
|
|
126
|
-
Requires-Dist: GitPython==3.1.42; extra == "loaders"
|
|
127
|
-
Requires-Dist: opentelemetry-sdk==1.24.0; extra == "loaders"
|
|
128
|
-
Requires-Dist: paddlepaddle==2.6.1; extra == "loaders"
|
|
129
|
-
Requires-Dist: paddlepaddle-gpu==2.6.1; extra == "loaders"
|
|
130
|
-
Requires-Dist: paddleocr==2.8.1; extra == "loaders"
|
|
131
|
-
Requires-Dist: ftfy==6.2.3; extra == "loaders"
|
|
132
|
-
Requires-Dist: librosa==0.10.1; extra == "loaders"
|
|
133
|
-
Requires-Dist: XlsxWriter==3.2.0; extra == "loaders"
|
|
134
|
-
Requires-Dist: timm==1.0.9; extra == "loaders"
|
|
135
|
-
Requires-Dist: simsimd==4.3.1; extra == "loaders"
|
|
136
|
-
Requires-Dist: opencv-python==4.10.0.84; extra == "loaders"
|
|
137
|
-
Requires-Dist: easyocr==1.7.1; extra == "loaders"
|
|
138
|
-
Provides-Extra: milvus
|
|
139
|
-
Requires-Dist: langchain-milvus>=0.1.4; extra == "milvus"
|
|
140
|
-
Requires-Dist: milvus==2.3.5; extra == "milvus"
|
|
141
|
-
Requires-Dist: pymilvus==2.4.6; extra == "milvus"
|
|
142
97
|
Provides-Extra: openai
|
|
143
98
|
Requires-Dist: langchain-openai==0.1.21; extra == "openai"
|
|
144
99
|
Requires-Dist: openai==1.40.3; extra == "openai"
|
|
145
100
|
Requires-Dist: llama-index-llms-openai==0.1.11; extra == "openai"
|
|
146
101
|
Requires-Dist: tiktoken==0.7.0; extra == "openai"
|
|
102
|
+
Provides-Extra: google
|
|
103
|
+
Requires-Dist: langchain-google-genai==2.0.1; extra == "google"
|
|
104
|
+
Requires-Dist: langchain-google-vertexai==2.0.5; extra == "google"
|
|
105
|
+
Requires-Dist: vertexai==1.71.1; extra == "google"
|
|
106
|
+
Provides-Extra: hunggingfaces
|
|
107
|
+
Requires-Dist: llama-index-llms-huggingface==0.2.7; extra == "hunggingfaces"
|
|
108
|
+
Provides-Extra: groq
|
|
109
|
+
Requires-Dist: groq==0.11.0; extra == "groq"
|
|
110
|
+
Requires-Dist: langchain-groq==0.2.0; extra == "groq"
|
|
147
111
|
Provides-Extra: qdrant
|
|
148
|
-
Requires-Dist: qdrant-client==1.
|
|
112
|
+
Requires-Dist: qdrant-client==1.13.2; extra == "qdrant"
|
|
113
|
+
Requires-Dist: langchain-qdrant==0.2.0; extra == "qdrant"
|
|
114
|
+
Provides-Extra: milvus
|
|
115
|
+
Requires-Dist: langchain-milvus>=0.1.6; extra == "milvus"
|
|
116
|
+
Requires-Dist: pymilvus==2.4.8; extra == "milvus"
|
|
117
|
+
Requires-Dist: milvus==2.3.5; extra == "milvus"
|
|
118
|
+
Provides-Extra: chroma
|
|
119
|
+
Requires-Dist: chroma==0.2.0; extra == "chroma"
|
|
120
|
+
Requires-Dist: langchain-chroma==0.2.2; extra == "chroma"
|
|
121
|
+
Provides-Extra: crew
|
|
122
|
+
Requires-Dist: colbert-ai==0.2.19; extra == "crew"
|
|
123
|
+
Requires-Dist: vanna==0.3.4; extra == "crew"
|
|
124
|
+
Requires-Dist: crewai[tools]==0.28.8; extra == "crew"
|
|
125
|
+
Provides-Extra: analytics
|
|
126
|
+
Requires-Dist: annoy==1.17.3; extra == "analytics"
|
|
127
|
+
Requires-Dist: gradio_tools==0.0.9; extra == "analytics"
|
|
128
|
+
Requires-Dist: gradio-client==0.2.9; extra == "analytics"
|
|
129
|
+
Requires-Dist: streamlit==1.37.1; extra == "analytics"
|
|
130
|
+
Dynamic: author
|
|
131
|
+
Dynamic: author-email
|
|
132
|
+
Dynamic: classifier
|
|
133
|
+
Dynamic: description
|
|
134
|
+
Dynamic: description-content-type
|
|
135
|
+
Dynamic: home-page
|
|
136
|
+
Dynamic: keywords
|
|
137
|
+
Dynamic: license
|
|
138
|
+
Dynamic: platform
|
|
139
|
+
Dynamic: project-url
|
|
140
|
+
Dynamic: provides-extra
|
|
141
|
+
Dynamic: requires-dist
|
|
142
|
+
Dynamic: requires-python
|
|
143
|
+
Dynamic: summary
|
|
149
144
|
|
|
150
145
|
# AI Parrot: Python package for creating Chatbots
|
|
151
146
|
This is an open-source Python package for creating Chatbots based on Langchain and Navigator.
|
|
@@ -1,10 +1,31 @@
|
|
|
1
1
|
parrot/__init__.py,sha256=eTkAkHeJ5BBDG2fxrXA4M37ODBJoS1DQYpeBAWL2xeI,387
|
|
2
|
-
parrot/conf.py,sha256=
|
|
3
|
-
parrot/exceptions.cpython-311-x86_64-linux-gnu.so,sha256=
|
|
4
|
-
parrot/manager.py,sha256=
|
|
5
|
-
parrot/models.py,sha256=
|
|
2
|
+
parrot/conf.py,sha256=BBbArVYjcGGaNKw3_h1dOw_pl1qcYNuT6Sj6dINwJd8,5404
|
|
3
|
+
parrot/exceptions.cpython-311-x86_64-linux-gnu.so,sha256=1tKBneucxl6ShNqI8KS4-pa9G-YQw9kXCnqUB-n2tbc,361184
|
|
4
|
+
parrot/manager.py,sha256=E1OdoNnZh1qCqVgZzcp8rdRnE1-xRwyQ6d1nFcOmg3U,6527
|
|
5
|
+
parrot/models.py,sha256=MT88rYdITenwTuyCfeqHqaNf49rieAKz43R2TibN7G8,14314
|
|
6
6
|
parrot/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
parrot/version.py,sha256=
|
|
7
|
+
parrot/version.py,sha256=rMfBkgxBHluw7UIb-q8O7rUJHQNoWGs-n9DUPtPHKzI,377
|
|
8
|
+
parrot/bots/__init__.py,sha256=qD-WOn8n34VUCp7Mq6Mq1lZV8h_cKAeXQxn27UtBDP4,153
|
|
9
|
+
parrot/bots/abstract.py,sha256=mmMEs9O_a7VJ9nx_IgvTqS7pMFML0U8sLnGaW5Qst0A,35790
|
|
10
|
+
parrot/bots/agent.py,sha256=2v_5hQ3XCvCPpwTne7t-NDUpX3na1LIwXfufT-cK9LU,13432
|
|
11
|
+
parrot/bots/base.py,sha256=Wl2BXRzxdGsWdHltAi0jalIPPAiM0TkVIHkRc1HQ99I,13422
|
|
12
|
+
parrot/bots/basic.py,sha256=dg2kT_ynMEtZ3cMTcSovmDwrOo7BhBwL1o-Nn_7I85A,235
|
|
13
|
+
parrot/bots/bose.py,sha256=gQQzAgt6wxGshihdr5H9_G4ns0lth814IkL7x1Ukjd4,759
|
|
14
|
+
parrot/bots/chatbot.py,sha256=rEMtMyW-R1zZT5nRUBia2nA8tdNpiXAj1nblo50CvjI,10085
|
|
15
|
+
parrot/bots/cody.py,sha256=gPQPRcn7QNJfTF0zWI9i6K-PhyAG6PBVcoCxdvylRdI,616
|
|
16
|
+
parrot/bots/copilot.py,sha256=PDK1Hj3TmxHgZT0rAplMnbbDkmV51B9tTstWWQjsLFM,2795
|
|
17
|
+
parrot/bots/dataframe.py,sha256=CfZiLKIwnaku52nl2PNjciqRlH8m2lM4buO6xI7P408,3914
|
|
18
|
+
parrot/bots/hrbot.py,sha256=2HLQlYNzNx97uK8P04NIfkRjFrtp4vCayN7gWjmG2ww,567
|
|
19
|
+
parrot/bots/odoo.py,sha256=mG4f_eGgZ0W3sgSGHHQdYjYZ4MDOyFcAWJJ3TBLr5uA,798
|
|
20
|
+
parrot/bots/troc.py,sha256=kelsktpV-0R2rpAQQtxxqo7UZitvJB7MM8DOrAUPqqk,597
|
|
21
|
+
parrot/bots/interfaces/__init__.py,sha256=Sgel4P6GA9pJ9Q-NH5faEEhBGfL2x2UBPr5fvC72BAU,39
|
|
22
|
+
parrot/bots/interfaces/retrievers.py,sha256=xoHwFAJTwzKLe3k3RLE8oAg--wdWPx0mBc5UbxYGyX0,348
|
|
23
|
+
parrot/bots/prompts/__init__.py,sha256=rm_rAX7ZIxDIpSVOjHVuHRLMI9wS3avsu5fUfwAsd1A,922
|
|
24
|
+
parrot/bots/prompts/agents.py,sha256=nXmzmRG15jiTDnjhmZ8ljSYCB1xU4RwsayZThFSj0Zg,4310
|
|
25
|
+
parrot/bots/retrievals/__init__.py,sha256=AgI0mTB27tZ0Oyr7RU63G-ZO1VyX-uCJ6lwxgP4baag,45
|
|
26
|
+
parrot/bots/retrievals/constitutional.py,sha256=x7kFR0KpmkR0Wz6bXNOeU3Hesn_EXc6eOSd4TdXxb8o,600
|
|
27
|
+
parrot/bots/retrievals/multi.py,sha256=km1zaE2ialNYYjY5f9CrhNeA44SNeUlJ7wRUCL2yb4w,1790
|
|
28
|
+
parrot/bots/retrievals/retrieval.py,sha256=wvMM53k76njV5b6t6CCKiYVk2o81JCHzCNmlHBKYFMg,20622
|
|
8
29
|
parrot/chatbots/__init__.py,sha256=ypskCnME0xUv6psBEGCEyXCrD0J0ULHSllpVmSxqb4A,200
|
|
9
30
|
parrot/chatbots/abstract.py,sha256=CmDn3k4r9uKImOZRN4L9zxLbCdC-1MPUAorDlfZT-kA,26421
|
|
10
31
|
parrot/chatbots/asktroc.py,sha256=gyWzyvpAnmXwXd-3DEKoIJtAxt6NnP5mUZdZbkFky8s,604
|
|
@@ -32,19 +53,20 @@ parrot/crew/tools/rag.py,sha256=sTp20-77Ui_3J-gItztVLb4Vinl2BVqTNSbTDikrj0g,1406
|
|
|
32
53
|
parrot/crew/tools/search.py,sha256=itWpJD_78IXVtBSKrQIAamCPLbejwmUj1oCBKqBxvO0,1055
|
|
33
54
|
parrot/crew/tools/url.py,sha256=m5v9XFQPotHRID7NmY-NQVmXtXEJvfly6tFMslL8U_0,682
|
|
34
55
|
parrot/handlers/__init__.py,sha256=WKn2yg4pSi5-IivkQ34uHSfTG7f1nYj4jB8-4wNG2_A,64
|
|
35
|
-
parrot/handlers/bots.py,sha256=
|
|
36
|
-
parrot/handlers/chat.py,sha256=
|
|
56
|
+
parrot/handlers/bots.py,sha256=OxyE6N-Mqt9G5UAai-ERFd2-0VAULO3e-wJn17QaDFI,5782
|
|
57
|
+
parrot/handlers/chat.py,sha256=tkmTtY3Lm5XWhiz2dC2oGQwsgLVUZHysYDFm3TYeBJU,5833
|
|
37
58
|
parrot/interfaces/__init__.py,sha256=m3FpxsFeEKq_hvQR9YRGAhZS6u8LZZBuzf6-njugiHE,69
|
|
38
59
|
parrot/interfaces/database.py,sha256=PHy133KTqa9K0tALOQt1q0ufwUZ4n7rndZrhob6Wbk4,609
|
|
39
|
-
parrot/
|
|
60
|
+
parrot/interfaces/http.py,sha256=HfSg1EeozHp8GL2CfRrRieoz7v2LDs5mL_8myYys7pI,33808
|
|
61
|
+
parrot/llms/__init__.py,sha256=7ccYWQi3RfKTI3_tLemsMni1u3n50vnm5WJWrjVIY_I,3849
|
|
40
62
|
parrot/llms/abstract.py,sha256=bIrAMkRbP4hf8MYQESUzcNnIqc70vbDuoseoee7Xhho,1395
|
|
41
63
|
parrot/llms/anthropic.py,sha256=8g7hA5LKfGWCahOPw_zV4pniwa4Fg4KTkAnL9qcq9KU,1311
|
|
42
|
-
parrot/llms/google.py,sha256=
|
|
43
|
-
parrot/llms/groq.py,sha256=
|
|
64
|
+
parrot/llms/google.py,sha256=nd82kretpWBFZVwPOP3B85LG0H3jizEMXxxsj8m7meo,973
|
|
65
|
+
parrot/llms/groq.py,sha256=ebpBFhzAK3r-fIay7oHW2E-X2tLVCNG3DgQmWltaH2k,1617
|
|
44
66
|
parrot/llms/hf.py,sha256=f2HhHCICaSHp0y3KRhqNcYXNO-amYTxDXJ_2_9L5Bk8,1594
|
|
45
|
-
parrot/llms/openai.py,sha256=
|
|
67
|
+
parrot/llms/openai.py,sha256=Qqb5oz1On4uUvateS4espbQFN6N7qxq6hFcNWWEGBcs,1299
|
|
46
68
|
parrot/llms/pipes.py,sha256=Ns_wh-alkKocZKlbQyQLKOSBxqfRC_hCbz34vpOOyP8,3798
|
|
47
|
-
parrot/llms/vertex.py,sha256=
|
|
69
|
+
parrot/llms/vertex.py,sha256=r89khQ0janBTDg6SrgKYUSqirEUj5S-FsYe6TzUg_qE,2387
|
|
48
70
|
parrot/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
71
|
parrot/loaders/abstract.py,sha256=Mx6BtihuwvFkl-Ali_84949BfVXFB0JZjmSKnJ-gXSg,17272
|
|
50
72
|
parrot/loaders/audio.py,sha256=P2tWYKxWLM5TMLMm-5qR35cD_pGQWmf8-UZUTiK4R0o,3698
|
|
@@ -78,24 +100,42 @@ parrot/loaders/handlers/__init__.py,sha256=ksEDtUOEJELmyCIi0KNv7tR2fCUyADBVkwCcy
|
|
|
78
100
|
parrot/loaders/handlers/data.py,sha256=olZ2p-wyUMGoazah7tgHY7V9buGX1FOeJ-cv2vGEoH8,7386
|
|
79
101
|
parrot/loaders/utils/__init__.py,sha256=SkDyK3MuPGhp0NM6kHvaxQDe97Gcl3n9t5A741OVh1c,28
|
|
80
102
|
parrot/loaders/utils/models.py,sha256=BHcnFzS7oOKUGG-vPy_TlqeFNAC8puRgsIMX2mSgKxY,1059
|
|
81
|
-
parrot/stores/__init__.py,sha256=
|
|
82
|
-
parrot/stores/abstract.py,sha256=
|
|
83
|
-
parrot/stores/
|
|
84
|
-
parrot/stores/
|
|
85
|
-
parrot/
|
|
86
|
-
parrot/
|
|
87
|
-
parrot/
|
|
88
|
-
parrot/
|
|
89
|
-
parrot/
|
|
103
|
+
parrot/stores/__init__.py,sha256=W7Ggvvxw4Dn13IWbuXaT0KTTJJORpvLtTKuaajNUxNA,264
|
|
104
|
+
parrot/stores/abstract.py,sha256=1ixPyClc8gaiafl3ZW7KtmwZTgVACFleF73DwzFsamk,7186
|
|
105
|
+
parrot/stores/chroma.py,sha256=UbPNs6P1o8BnUA0B_IwQ6n89VuZt7H2j0FpNmK22Ids,5932
|
|
106
|
+
parrot/stores/duck.py,sha256=FTDV2HJb580ojVNBdUrC1ukuDUTyk4qUwF-LaN-IbWA,4740
|
|
107
|
+
parrot/stores/empty.py,sha256=bCQJt54YPpR_pN9uHA2VA95GPPp04daMBJHbHQsRY0Q,234
|
|
108
|
+
parrot/stores/faiss.py,sha256=tbur-YM7ictMh9S65Tc6WGK88JBkunQqES98w27CBtE,5694
|
|
109
|
+
parrot/stores/milvus.py,sha256=Bi2geRA8yT0ux_DeYo436U38qth-Obpp_HN_NmPWRZ8,13209
|
|
110
|
+
parrot/stores/postgres.py,sha256=7mZ4l8EKcTMegWw6ooI9nfIUCdlutMCzJfQ0ULQFh6k,24908
|
|
111
|
+
parrot/stores/qdrant.py,sha256=u07DUoFHWDf-IU5tHbhinhMjPGWFgUbzaBhT_lWrvCA,6003
|
|
112
|
+
parrot/stores/embeddings/__init__.py,sha256=ZQPpLBhiBx27Q5FhB_v-Vibcq3rHEP7x9GXfn_LGFOc,283
|
|
113
|
+
parrot/stores/embeddings/abstract.py,sha256=WYP_pEJVSpJpR7pemt_3nzHi_lhwEaG1CEgWwiPE-As,1091
|
|
114
|
+
parrot/stores/embeddings/base.py,sha256=uRC3u5DryvtNVlnBsY2umveisfKF-WKxqRSqCcFQYN8,1636
|
|
115
|
+
parrot/stores/embeddings/bge.py,sha256=QUqbqCLK0kyyoLtaKWEW8kH47fdjVZnQEgEGnWTZzL8,637
|
|
116
|
+
parrot/stores/embeddings/fastembed.py,sha256=W1RbogkjqydY9TVB0nMGRBsG0juJc_kqfOwTxzhnNo8,482
|
|
117
|
+
parrot/stores/embeddings/google.py,sha256=BDUe_FunPkKdywrn-8HLTVHr5Lgi9eFFDojTyE79lLk,595
|
|
118
|
+
parrot/stores/embeddings/huggingface.py,sha256=47yvCr6KX8iDIsrC_XpgTsKK4UEaucUitNMlep48L2g,649
|
|
119
|
+
parrot/stores/embeddings/ollama.py,sha256=IPo_hpqxj7A9BvtdWYu29oe8JVdkOgOh5geHIDtmZQI,399
|
|
120
|
+
parrot/stores/embeddings/openai.py,sha256=IOBUcwauNHe0DQfFDEkDnXgd2XZyl7mmIg1AqMHdZeU,800
|
|
121
|
+
parrot/stores/embeddings/transformers.py,sha256=ybI5rOiEutNLsR1W3YxDwQTceR1ujO5u6wpQfvsQMow,678
|
|
122
|
+
parrot/stores/embeddings/vertexai.py,sha256=aCa0TjRTInawiVSgQPvB3m2UnamZywUa06FvfCnFhE0,666
|
|
123
|
+
parrot/tools/__init__.py,sha256=TUz-EiGDPOHuQZM7XX6I3id2JqRELQAXA_VYP1oqu10,792
|
|
124
|
+
parrot/tools/abstract.py,sha256=S9fWqACDyA5YH4LZvb_7ey8gbXejq8mBCcNiieHcSeg,1975
|
|
125
|
+
parrot/tools/asknews.py,sha256=gTps1dVmr6hfzLQcQSQ-C3JT-QYYnM6YmoG-BkuUbcw,1114
|
|
126
|
+
parrot/tools/basic.py,sha256=9Ee4vD8VxfC8iZ5OzyZ8eNltYaMYWJ1mRzt2zVv7z6g,1656
|
|
127
|
+
parrot/tools/bby.py,sha256=3cKTReAHGprdwtxoKslpgBXvBxlVLmIH7LX5eFG6jZo,15621
|
|
128
|
+
parrot/tools/bing.py,sha256=Vfkucm7bytvXKTwCQVpYdI5ycCIS6BmkvDGoeMiOfGI,531
|
|
129
|
+
parrot/tools/duck.py,sha256=qmmcQxCuKS72sBC5qPpE71Au9gImEAOo6FjDAR8A46A,1958
|
|
90
130
|
parrot/tools/execute.py,sha256=fTMQAsXuUzVyIWmZxL22LrSj2eQ-Rh-ncyUZ9gY-d-A,1687
|
|
91
|
-
parrot/tools/google.py,sha256=
|
|
92
|
-
parrot/tools/stack.py,sha256=
|
|
131
|
+
parrot/tools/google.py,sha256=WkaOquUOdVwDHJj8gK0RC_EH-ISKsQiWebFZAZfMOg4,6241
|
|
132
|
+
parrot/tools/stack.py,sha256=bVtaEWsZRl9UpHJQ6MNp3uaF90CcViylRy6oXpwBEns,969
|
|
93
133
|
parrot/tools/weather.py,sha256=4v9Ft5lkVzb9Pg7afNs7BK5T3WEcsZbHPlBrF9oXSo8,2541
|
|
94
|
-
parrot/tools/wikipedia.py,sha256=
|
|
95
|
-
parrot/tools/zipcode.py,sha256=
|
|
134
|
+
parrot/tools/wikipedia.py,sha256=lPLc3rCem8xH3-m4YxGesBC6uRtnr0vwcO-OZeypj7Y,2058
|
|
135
|
+
parrot/tools/zipcode.py,sha256=tMXVN9ZZmwwJFWOaif1V4eX8BrPpHdbAmFbhDv0VgsY,7014
|
|
96
136
|
parrot/utils/__init__.py,sha256=vkBIvfl9-0NRLd76MIZk4s49PjtF_dW5imLTv_UOKxM,101
|
|
97
137
|
parrot/utils/toml.py,sha256=CVyqDdAEyOj6AHfNpyQe4IUvLP_SSXlbHROYPeadLvU,302
|
|
98
|
-
parrot/utils/types.cpython-311-x86_64-linux-gnu.so,sha256=
|
|
138
|
+
parrot/utils/types.cpython-311-x86_64-linux-gnu.so,sha256=UxJ_wgXnTrVha1Ml8FQFyP2UPRSDWsRc9VgX0OVjfw8,791256
|
|
99
139
|
parrot/utils/uv.py,sha256=Mb09bsi13hhi3xQDBjEhCf-U1wherXl-K4-BLcSvqtc,308
|
|
100
140
|
parrot/utils/parsers/__init__.py,sha256=l82uIu07QvSJ8Xt0d_seei9n7UUL8PE-YFGBTyNbxSI,62
|
|
101
141
|
parrot/utils/parsers/toml.cpython-311-x86_64-linux-gnu.so,sha256=gEnv6QGF6DtxExEdVTdNx48j90wPYKBLyCH1UCRj4MQ,451088
|
|
@@ -104,8 +144,8 @@ resources/users/handlers.py,sha256=BGzqBvPY_OaIF_nONWX4b_B5OyyBrdGuSihIsdlFwjk,2
|
|
|
104
144
|
resources/users/models.py,sha256=glk7Emv7QCi6i32xRFDrGc8UwK23_LPg0XUOJoHnwRU,6799
|
|
105
145
|
settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
146
|
settings/settings.py,sha256=9ueEvyLNurUX-AaIeRPV8GKX1c4YjDLbksUAeqEq6Ck,1854
|
|
107
|
-
ai_parrot-0.
|
|
108
|
-
ai_parrot-0.
|
|
109
|
-
ai_parrot-0.
|
|
110
|
-
ai_parrot-0.
|
|
111
|
-
ai_parrot-0.
|
|
147
|
+
ai_parrot-0.5.8.dist-info/LICENSE,sha256=vRKOoa7onTsLNvSzJtGtMaNhWWh8B3YAT733Tlu6M4o,1070
|
|
148
|
+
ai_parrot-0.5.8.dist-info/METADATA,sha256=m_RMP97ZnAjNcoWjthSw7POMMjR-0jkA3_obRLtSNX8,9715
|
|
149
|
+
ai_parrot-0.5.8.dist-info/WHEEL,sha256=lNWVJ6q28SO2kTKDIyc1kQ-4wE2w5snxBQXSv06oiUw,113
|
|
150
|
+
ai_parrot-0.5.8.dist-info/top_level.txt,sha256=VCLpdIu_5wkShgIQjK85jFzL9HEVVjAqlQa_gupLekI,17
|
|
151
|
+
ai_parrot-0.5.8.dist-info/RECORD,,
|