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.

Files changed (71) hide show
  1. {ai_parrot-0.3.18.dist-info → ai_parrot-0.5.8.dist-info}/METADATA +99 -104
  2. {ai_parrot-0.3.18.dist-info → ai_parrot-0.5.8.dist-info}/RECORD +71 -31
  3. {ai_parrot-0.3.18.dist-info → ai_parrot-0.5.8.dist-info}/WHEEL +1 -1
  4. {ai_parrot-0.3.18.dist-info → ai_parrot-0.5.8.dist-info}/top_level.txt +0 -1
  5. parrot/bots/__init__.py +9 -0
  6. parrot/bots/abstract.py +1013 -0
  7. parrot/bots/agent.py +404 -0
  8. parrot/bots/base.py +370 -0
  9. parrot/bots/basic.py +9 -0
  10. parrot/bots/bose.py +17 -0
  11. parrot/bots/chatbot.py +259 -0
  12. parrot/bots/cody.py +17 -0
  13. parrot/bots/copilot.py +117 -0
  14. parrot/bots/dataframe.py +103 -0
  15. parrot/bots/hrbot.py +15 -0
  16. parrot/bots/interfaces/__init__.py +1 -0
  17. parrot/bots/interfaces/retrievers.py +12 -0
  18. parrot/bots/odoo.py +17 -0
  19. parrot/bots/prompts/__init__.py +36 -0
  20. parrot/bots/prompts/agents.py +93 -0
  21. parrot/bots/retrievals/__init__.py +1 -0
  22. parrot/bots/retrievals/constitutional.py +19 -0
  23. parrot/bots/retrievals/multi.py +50 -0
  24. parrot/bots/retrievals/retrieval.py +610 -0
  25. parrot/bots/troc.py +16 -0
  26. parrot/conf.py +35 -1
  27. parrot/exceptions.cpython-311-x86_64-linux-gnu.so +0 -0
  28. parrot/handlers/bots.py +1 -1
  29. parrot/handlers/chat.py +44 -21
  30. parrot/interfaces/http.py +805 -0
  31. parrot/llms/__init__.py +1 -1
  32. parrot/llms/google.py +0 -9
  33. parrot/llms/groq.py +9 -5
  34. parrot/llms/openai.py +0 -13
  35. parrot/llms/vertex.py +19 -26
  36. parrot/manager.py +74 -56
  37. parrot/models.py +55 -35
  38. parrot/stores/__init__.py +9 -46
  39. parrot/stores/abstract.py +186 -114
  40. parrot/stores/chroma.py +188 -0
  41. parrot/stores/duck.py +162 -0
  42. parrot/stores/embeddings/__init__.py +10 -0
  43. parrot/stores/embeddings/abstract.py +46 -0
  44. parrot/stores/embeddings/base.py +47 -0
  45. parrot/stores/embeddings/bge.py +20 -0
  46. parrot/stores/embeddings/fastembed.py +17 -0
  47. parrot/stores/embeddings/google.py +18 -0
  48. parrot/stores/embeddings/huggingface.py +20 -0
  49. parrot/stores/embeddings/ollama.py +14 -0
  50. parrot/stores/embeddings/openai.py +26 -0
  51. parrot/stores/embeddings/transformers.py +21 -0
  52. parrot/stores/embeddings/vertexai.py +17 -0
  53. parrot/stores/empty.py +10 -0
  54. parrot/stores/faiss.py +160 -0
  55. parrot/stores/milvus.py +162 -403
  56. parrot/stores/postgres.py +653 -0
  57. parrot/stores/qdrant.py +136 -119
  58. parrot/tools/__init__.py +19 -11
  59. parrot/tools/abstract.py +13 -2
  60. parrot/tools/asknews.py +3 -2
  61. parrot/tools/basic.py +53 -0
  62. parrot/tools/bby.py +359 -0
  63. parrot/tools/bing.py +1 -1
  64. parrot/tools/duck.py +2 -2
  65. parrot/tools/google.py +3 -3
  66. parrot/tools/stack.py +2 -1
  67. parrot/tools/wikipedia.py +4 -5
  68. parrot/tools/zipcode.py +36 -17
  69. parrot/utils/types.cpython-311-x86_64-linux-gnu.so +0 -0
  70. parrot/version.py +2 -2
  71. {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
1
+ Metadata-Version: 2.2
2
2
  Name: ai-parrot
3
- Version: 0.3.18
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: accelerate==0.34.2
34
- Requires-Dist: langchain>=0.2.6
35
- Requires-Dist: langchain-community>=0.2.6
36
- Requires-Dist: langchain-core>=0.2.32
37
- Requires-Dist: langchain-experimental==0.0.62
38
- Requires-Dist: langchainhub==0.1.15
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.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: rank-bm25==0.2.2
53
- Requires-Dist: matplotlib==3.8.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: webdriver-manager>=4.0.1
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: fastembed==0.3.4
72
- Requires-Dist: yfinance==0.2.40
73
- Requires-Dist: youtube-search==2.1.2
74
- Requires-Dist: wikipedia==1.4.0
75
- Requires-Dist: mediawikiapi==1.2
76
- Requires-Dist: pyowm==3.3.0
77
- Requires-Dist: O365==2.0.35
78
- Requires-Dist: stackapi==0.3.1
79
- Requires-Dist: torchvision==0.19.1
80
- Requires-Dist: tf-keras==2.17.0
81
- Requires-Dist: simsimd==4.3.1
82
- Requires-Dist: opencv-python==4.10.0.84
83
- Provides-Extra: analytics
84
- Requires-Dist: annoy==1.17.3; extra == "analytics"
85
- Requires-Dist: gradio-tools==0.0.9; extra == "analytics"
86
- Requires-Dist: gradio-client==0.2.9; extra == "analytics"
87
- Requires-Dist: streamlit==1.37.1; extra == "analytics"
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.1.11; extra == "anthropic"
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.8.0; extra == "qdrant"
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=andrPREuR_BHiXA_Q0Utyb5xSb1ct_uKnjMzEOa1ftE,4373
3
- parrot/exceptions.cpython-311-x86_64-linux-gnu.so,sha256=VNyBh3uLxGQgB0l1bkWjQDqYUN2ZAvRmV12AqQijV9Q,361184
4
- parrot/manager.py,sha256=NhzXoWxSgtoWHpmYP8cV2Ujq_SlvCbQYQBaohAeL2TM,5935
5
- parrot/models.py,sha256=RsVQCqhSXBKRPcu-BCga9Y1wyvENFXDCuq3_ObIKvAo,13452
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=xnHWafNOKl45eRpJEkfbcjlqANVKCF0YVUumL-a1AME,374
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=GG2W8y_GC71f8_mMHxwAYP-ope7ecNP_GShL9c66_uY,5782
36
- parrot/handlers/chat.py,sha256=3FjE8PhR4_SFny8ZxplWf25i0qKsCBKoOz8widR3pDY,5166
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/llms/__init__.py,sha256=bxhPgslU6TjWlOgUFkWV6heavRqmm53PuKNjjZ-Hr1o,3838
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=z17aF26h28Dbtt4b7BIfadB9G1cO0a6JeCAxX6aI-6c,1315
43
- parrot/llms/groq.py,sha256=EZCbcvqojg5DrE41qYTAinLifSn_oIqgVJS22alPKvE,1491
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=NgWv6IwJ1DborlYhTyureBBdgHfAPc_lGHQRGt80ca8,1759
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=a0UsH9sa_GiMkg31E52cWE8pXFZjyMtIanr7eAA7iyE,2615
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=ZFjZvcLhcqJqndx9tiEANpyiude1fvjrCxyt2S42VqY,1496
82
- parrot/stores/abstract.py,sha256=aqDhkVr5VwdKqg7StroIXf32-11MLyyMAlZuh5hJeCY,5138
83
- parrot/stores/milvus.py,sha256=r1PiIf3uFE84l1OeGb_-2oEf09mbu8truY5e6wsDv7I,20606
84
- parrot/stores/qdrant.py,sha256=y-jG5sB6ICESyxdpyGBhQ-hgTDLxxPtM5xYZTWIRiAY,4720
85
- parrot/tools/__init__.py,sha256=XKZwogdGr6ObPfAGbzAdyDjFnXI286eapsi180VwdjE,614
86
- parrot/tools/abstract.py,sha256=pVSZw8MDpbVcQ-CHaGwP6CpqXHIs8hH8Oy1AqUuMmrw,1706
87
- parrot/tools/asknews.py,sha256=hEpPJMyNBVfj2maHbqnumn3VkY45oFvrjkE3Rq8EdGA,1039
88
- parrot/tools/bing.py,sha256=BtmFD66OIuCaOue5U2_yIqtjWf24IhEgNOX1LAVvHtA,464
89
- parrot/tools/duck.py,sha256=UAAZzlF-Q0sZh0_IcS96dwSgCuBPdeepkwRrMM5cJPY,1920
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=NjijcUWH6Crk5Uty_x3FstjDTGZV8JXfBFDQEtMHhac,6236
92
- parrot/tools/stack.py,sha256=M-VRWjIDa18bl5p88dSKtxMj4Kn21YB76to0u6yXA30,942
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=oadBTRAupu2dKThEORSHqqVs4u0G9lWOltbP6vSZgPE,1999
95
- parrot/tools/zipcode.py,sha256=knScSvKgK7bHxyLcBkZFiMs65e-PlYU2_YhG6mohcjU,6440
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=jghuq8bBlgGDjkb88Efi5l9cgR5KZL_qO7yxglGNsTA,791256
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.3.18.dist-info/LICENSE,sha256=vRKOoa7onTsLNvSzJtGtMaNhWWh8B3YAT733Tlu6M4o,1070
108
- ai_parrot-0.3.18.dist-info/METADATA,sha256=NzZe372rA3_inhUwOb63mIUuWPH2DZY4Yfk6Q59eoUM,9958
109
- ai_parrot-0.3.18.dist-info/WHEEL,sha256=UQ-0qXN3LQUffjrV43_e_ZXj2pgORBqTmXipnkj0E8I,113
110
- ai_parrot-0.3.18.dist-info/top_level.txt,sha256=qHoO4BhYDfeTkyKnciZSQtn5FSLN3Q-P5xCTkyvbuxg,26
111
- ai_parrot-0.3.18.dist-info/RECORD,,
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,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (74.1.2)
2
+ Generator: setuptools (76.0.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp311-cp311-manylinux_2_28_x86_64
5
5
 
@@ -1,3 +1,2 @@
1
1
  parrot
2
2
  resources
3
- settings
@@ -0,0 +1,9 @@
1
+ from .abstract import AbstractBot
2
+ from .basic import BasicBot
3
+ from .hrbot import HRAgent
4
+
5
+ __all__ = (
6
+ 'AbstractBot',
7
+ 'BasicBot',
8
+ 'HRAgent'
9
+ )