ai-parrot 0.3.18__cp311-cp311-manylinux_2_28_x86_64.whl → 0.4.11__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.4.11.dist-info}/METADATA +69 -103
- {ai_parrot-0.3.18.dist-info → ai_parrot-0.4.11.dist-info}/RECORD +29 -15
- {ai_parrot-0.3.18.dist-info → ai_parrot-0.4.11.dist-info}/WHEEL +1 -1
- {ai_parrot-0.3.18.dist-info → ai_parrot-0.4.11.dist-info}/top_level.txt +0 -1
- parrot/bots/__init__.py +13 -0
- parrot/bots/abstract.py +704 -0
- parrot/bots/base.py +370 -0
- parrot/bots/basic.py +9 -0
- parrot/bots/bose.py +17 -0
- parrot/bots/chatbot.py +257 -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/odoo.py +17 -0
- parrot/bots/retrievals/__init__.py +610 -0
- parrot/bots/retrievals/constitutional.py +19 -0
- parrot/bots/troc.py +16 -0
- parrot/conf.py +0 -1
- parrot/llms/vertex.py +3 -2
- parrot/manager.py +38 -35
- parrot/models.py +4 -1
- parrot/stores/abstract.py +80 -88
- parrot/stores/milvus.py +51 -361
- parrot/stores/qdrant.py +27 -70
- parrot/tools/__init__.py +1 -1
- 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.4.11.dist-info}/LICENSE +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,122 +30,88 @@ 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
|
-
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
|
|
40
|
+
Requires-Dist: rank_bm25==0.2.2
|
|
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
|
-
Requires-Dist:
|
|
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:
|
|
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"
|
|
88
81
|
Provides-Extra: anthropic
|
|
89
|
-
Requires-Dist: langchain-anthropic==0.
|
|
82
|
+
Requires-Dist: langchain-anthropic==0.2.4; extra == "anthropic"
|
|
90
83
|
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
84
|
Provides-Extra: openai
|
|
143
85
|
Requires-Dist: langchain-openai==0.1.21; extra == "openai"
|
|
144
86
|
Requires-Dist: openai==1.40.3; extra == "openai"
|
|
145
87
|
Requires-Dist: llama-index-llms-openai==0.1.11; extra == "openai"
|
|
146
88
|
Requires-Dist: tiktoken==0.7.0; extra == "openai"
|
|
89
|
+
Provides-Extra: google
|
|
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"
|
|
95
|
+
Provides-Extra: hunggingfaces
|
|
96
|
+
Requires-Dist: llama-index-llms-huggingface==0.2.7; extra == "hunggingfaces"
|
|
97
|
+
Provides-Extra: groq
|
|
98
|
+
Requires-Dist: groq==0.11.0; extra == "groq"
|
|
99
|
+
Requires-Dist: langchain-groq==0.2.0; extra == "groq"
|
|
147
100
|
Provides-Extra: qdrant
|
|
148
|
-
Requires-Dist: qdrant-client==1.
|
|
101
|
+
Requires-Dist: qdrant-client==1.12.1; extra == "qdrant"
|
|
102
|
+
Provides-Extra: milvus
|
|
103
|
+
Requires-Dist: langchain-milvus>=0.1.6; extra == "milvus"
|
|
104
|
+
Requires-Dist: pymilvus==2.4.8; extra == "milvus"
|
|
105
|
+
Requires-Dist: milvus==2.3.5; extra == "milvus"
|
|
106
|
+
Provides-Extra: crew
|
|
107
|
+
Requires-Dist: colbert-ai==0.2.19; extra == "crew"
|
|
108
|
+
Requires-Dist: vanna==0.3.4; extra == "crew"
|
|
109
|
+
Requires-Dist: crewai[tools]==0.28.8; extra == "crew"
|
|
110
|
+
Provides-Extra: analytics
|
|
111
|
+
Requires-Dist: annoy==1.17.3; extra == "analytics"
|
|
112
|
+
Requires-Dist: gradio_tools==0.0.9; extra == "analytics"
|
|
113
|
+
Requires-Dist: gradio-client==0.2.9; extra == "analytics"
|
|
114
|
+
Requires-Dist: streamlit==1.37.1; extra == "analytics"
|
|
149
115
|
|
|
150
116
|
# AI Parrot: Python package for creating Chatbots
|
|
151
117
|
This is an open-source Python package for creating Chatbots based on Langchain and Navigator.
|
|
@@ -1,10 +1,24 @@
|
|
|
1
1
|
parrot/__init__.py,sha256=eTkAkHeJ5BBDG2fxrXA4M37ODBJoS1DQYpeBAWL2xeI,387
|
|
2
|
-
parrot/conf.py,sha256=
|
|
2
|
+
parrot/conf.py,sha256=IQfqqZcfByvsj3ryCwkcgCP5gzTdb3RRTGWgI5XX_Qg,4319
|
|
3
3
|
parrot/exceptions.cpython-311-x86_64-linux-gnu.so,sha256=VNyBh3uLxGQgB0l1bkWjQDqYUN2ZAvRmV12AqQijV9Q,361184
|
|
4
|
-
parrot/manager.py,sha256=
|
|
5
|
-
parrot/models.py,sha256=
|
|
4
|
+
parrot/manager.py,sha256=ItpWBYcQ_rgqPq2ea9KiT9MfxhVzGTmnuWX37nnbtJw,6058
|
|
5
|
+
parrot/models.py,sha256=ZrvVYtjRp0Lcm3hHxXcNq4P-e6TdDHXFzCAlMLR80kY,13534
|
|
6
6
|
parrot/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
parrot/version.py,sha256=
|
|
7
|
+
parrot/version.py,sha256=qdamfnoRGMye4KJFJOYxqbMA9p8gyEsrhWIB5_Y5bow,378
|
|
8
|
+
parrot/bots/__init__.py,sha256=IjRAr4H9gOepuJwZPz6MM0E_eAUe--5OgKxI7-_3i7c,255
|
|
9
|
+
parrot/bots/abstract.py,sha256=R7vsx7bqyRbUpKjft639jzT7lCsPJs3LjOJDm76cREU,23847
|
|
10
|
+
parrot/bots/base.py,sha256=Wl2BXRzxdGsWdHltAi0jalIPPAiM0TkVIHkRc1HQ99I,13422
|
|
11
|
+
parrot/bots/basic.py,sha256=dg2kT_ynMEtZ3cMTcSovmDwrOo7BhBwL1o-Nn_7I85A,235
|
|
12
|
+
parrot/bots/bose.py,sha256=gQQzAgt6wxGshihdr5H9_G4ns0lth814IkL7x1Ukjd4,759
|
|
13
|
+
parrot/bots/chatbot.py,sha256=ZON71-ICIWnMuS_AW993E5uJDIcujwobfT8LA1NGVds,9876
|
|
14
|
+
parrot/bots/cody.py,sha256=gPQPRcn7QNJfTF0zWI9i6K-PhyAG6PBVcoCxdvylRdI,616
|
|
15
|
+
parrot/bots/copilot.py,sha256=Bski3tMCv9uSxmD6l2pXMny4Wny5tjP5IcRhWSQnMTI,2794
|
|
16
|
+
parrot/bots/dataframe.py,sha256=CfZiLKIwnaku52nl2PNjciqRlH8m2lM4buO6xI7P408,3914
|
|
17
|
+
parrot/bots/hrbot.py,sha256=2HLQlYNzNx97uK8P04NIfkRjFrtp4vCayN7gWjmG2ww,567
|
|
18
|
+
parrot/bots/odoo.py,sha256=mG4f_eGgZ0W3sgSGHHQdYjYZ4MDOyFcAWJJ3TBLr5uA,798
|
|
19
|
+
parrot/bots/troc.py,sha256=kelsktpV-0R2rpAQQtxxqo7UZitvJB7MM8DOrAUPqqk,597
|
|
20
|
+
parrot/bots/retrievals/__init__.py,sha256=wvMM53k76njV5b6t6CCKiYVk2o81JCHzCNmlHBKYFMg,20622
|
|
21
|
+
parrot/bots/retrievals/constitutional.py,sha256=x7kFR0KpmkR0Wz6bXNOeU3Hesn_EXc6eOSd4TdXxb8o,600
|
|
8
22
|
parrot/chatbots/__init__.py,sha256=ypskCnME0xUv6psBEGCEyXCrD0J0ULHSllpVmSxqb4A,200
|
|
9
23
|
parrot/chatbots/abstract.py,sha256=CmDn3k4r9uKImOZRN4L9zxLbCdC-1MPUAorDlfZT-kA,26421
|
|
10
24
|
parrot/chatbots/asktroc.py,sha256=gyWzyvpAnmXwXd-3DEKoIJtAxt6NnP5mUZdZbkFky8s,604
|
|
@@ -44,7 +58,7 @@ parrot/llms/groq.py,sha256=EZCbcvqojg5DrE41qYTAinLifSn_oIqgVJS22alPKvE,1491
|
|
|
44
58
|
parrot/llms/hf.py,sha256=f2HhHCICaSHp0y3KRhqNcYXNO-amYTxDXJ_2_9L5Bk8,1594
|
|
45
59
|
parrot/llms/openai.py,sha256=NgWv6IwJ1DborlYhTyureBBdgHfAPc_lGHQRGt80ca8,1759
|
|
46
60
|
parrot/llms/pipes.py,sha256=Ns_wh-alkKocZKlbQyQLKOSBxqfRC_hCbz34vpOOyP8,3798
|
|
47
|
-
parrot/llms/vertex.py,sha256=
|
|
61
|
+
parrot/llms/vertex.py,sha256=C7xbxwSGFm3P6lWoz0ApSkgsYGO7J3weZ4kBHqeF4fw,2634
|
|
48
62
|
parrot/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
63
|
parrot/loaders/abstract.py,sha256=Mx6BtihuwvFkl-Ali_84949BfVXFB0JZjmSKnJ-gXSg,17272
|
|
50
64
|
parrot/loaders/audio.py,sha256=P2tWYKxWLM5TMLMm-5qR35cD_pGQWmf8-UZUTiK4R0o,3698
|
|
@@ -79,10 +93,10 @@ parrot/loaders/handlers/data.py,sha256=olZ2p-wyUMGoazah7tgHY7V9buGX1FOeJ-cv2vGEo
|
|
|
79
93
|
parrot/loaders/utils/__init__.py,sha256=SkDyK3MuPGhp0NM6kHvaxQDe97Gcl3n9t5A741OVh1c,28
|
|
80
94
|
parrot/loaders/utils/models.py,sha256=BHcnFzS7oOKUGG-vPy_TlqeFNAC8puRgsIMX2mSgKxY,1059
|
|
81
95
|
parrot/stores/__init__.py,sha256=ZFjZvcLhcqJqndx9tiEANpyiude1fvjrCxyt2S42VqY,1496
|
|
82
|
-
parrot/stores/abstract.py,sha256=
|
|
83
|
-
parrot/stores/milvus.py,sha256=
|
|
84
|
-
parrot/stores/qdrant.py,sha256=
|
|
85
|
-
parrot/tools/__init__.py,sha256=
|
|
96
|
+
parrot/stores/abstract.py,sha256=J1dSJlLWTS1JV86BTAv0fyboBMumKUkLOPKjzS2oyEU,5370
|
|
97
|
+
parrot/stores/milvus.py,sha256=SU7tpV8xEtG42hq3CsDaheJajoXKwpzp-bsQJCfd6eg,10585
|
|
98
|
+
parrot/stores/qdrant.py,sha256=ovkz8_scDl9iieK5rgYX4nTYSZjcTPIs-tDNVXdM558,3540
|
|
99
|
+
parrot/tools/__init__.py,sha256=RVkWxqQcyuT5oDpn0Lza00vrXdAzBYQglKDhbfMFoBQ,616
|
|
86
100
|
parrot/tools/abstract.py,sha256=pVSZw8MDpbVcQ-CHaGwP6CpqXHIs8hH8Oy1AqUuMmrw,1706
|
|
87
101
|
parrot/tools/asknews.py,sha256=hEpPJMyNBVfj2maHbqnumn3VkY45oFvrjkE3Rq8EdGA,1039
|
|
88
102
|
parrot/tools/bing.py,sha256=BtmFD66OIuCaOue5U2_yIqtjWf24IhEgNOX1LAVvHtA,464
|
|
@@ -95,7 +109,7 @@ parrot/tools/wikipedia.py,sha256=oadBTRAupu2dKThEORSHqqVs4u0G9lWOltbP6vSZgPE,199
|
|
|
95
109
|
parrot/tools/zipcode.py,sha256=knScSvKgK7bHxyLcBkZFiMs65e-PlYU2_YhG6mohcjU,6440
|
|
96
110
|
parrot/utils/__init__.py,sha256=vkBIvfl9-0NRLd76MIZk4s49PjtF_dW5imLTv_UOKxM,101
|
|
97
111
|
parrot/utils/toml.py,sha256=CVyqDdAEyOj6AHfNpyQe4IUvLP_SSXlbHROYPeadLvU,302
|
|
98
|
-
parrot/utils/types.cpython-311-x86_64-linux-gnu.so,sha256=
|
|
112
|
+
parrot/utils/types.cpython-311-x86_64-linux-gnu.so,sha256=UxJ_wgXnTrVha1Ml8FQFyP2UPRSDWsRc9VgX0OVjfw8,791256
|
|
99
113
|
parrot/utils/uv.py,sha256=Mb09bsi13hhi3xQDBjEhCf-U1wherXl-K4-BLcSvqtc,308
|
|
100
114
|
parrot/utils/parsers/__init__.py,sha256=l82uIu07QvSJ8Xt0d_seei9n7UUL8PE-YFGBTyNbxSI,62
|
|
101
115
|
parrot/utils/parsers/toml.cpython-311-x86_64-linux-gnu.so,sha256=gEnv6QGF6DtxExEdVTdNx48j90wPYKBLyCH1UCRj4MQ,451088
|
|
@@ -104,8 +118,8 @@ resources/users/handlers.py,sha256=BGzqBvPY_OaIF_nONWX4b_B5OyyBrdGuSihIsdlFwjk,2
|
|
|
104
118
|
resources/users/models.py,sha256=glk7Emv7QCi6i32xRFDrGc8UwK23_LPg0XUOJoHnwRU,6799
|
|
105
119
|
settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
120
|
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.
|
|
121
|
+
ai_parrot-0.4.11.dist-info/LICENSE,sha256=vRKOoa7onTsLNvSzJtGtMaNhWWh8B3YAT733Tlu6M4o,1070
|
|
122
|
+
ai_parrot-0.4.11.dist-info/METADATA,sha256=IOVVDeUxCkxBqGLDPx8LePDUuR3rxrW43s4lmt15tCQ,8725
|
|
123
|
+
ai_parrot-0.4.11.dist-info/WHEEL,sha256=UO082ao4TiA_Os50ZDC22xyI_w8ettWcRb2PiE4WbrA,113
|
|
124
|
+
ai_parrot-0.4.11.dist-info/top_level.txt,sha256=VCLpdIu_5wkShgIQjK85jFzL9HEVVjAqlQa_gupLekI,17
|
|
125
|
+
ai_parrot-0.4.11.dist-info/RECORD,,
|
parrot/bots/__init__.py
ADDED
|
@@ -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
|
+
)
|