ai-parrot 0.4.11__cp311-cp311-manylinux_2_28_x86_64.whl → 0.5.9__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 (61) hide show
  1. {ai_parrot-0.4.11.dist-info → ai_parrot-0.5.9.dist-info}/METADATA +60 -31
  2. {ai_parrot-0.4.11.dist-info → ai_parrot-0.5.9.dist-info}/RECORD +61 -35
  3. {ai_parrot-0.4.11.dist-info → ai_parrot-0.5.9.dist-info}/WHEEL +1 -1
  4. parrot/bots/__init__.py +2 -6
  5. parrot/bots/abstract.py +472 -163
  6. parrot/bots/agent.py +404 -0
  7. parrot/bots/chatbot.py +65 -63
  8. parrot/bots/copilot.py +1 -1
  9. parrot/bots/interfaces/__init__.py +1 -0
  10. parrot/bots/interfaces/retrievers.py +12 -0
  11. parrot/bots/prompts/__init__.py +36 -0
  12. parrot/bots/prompts/agents.py +93 -0
  13. parrot/bots/retrievals/__init__.py +1 -610
  14. parrot/bots/retrievals/multi.py +50 -0
  15. parrot/bots/retrievals/retrieval.py +610 -0
  16. parrot/conf.py +35 -0
  17. parrot/exceptions.cpython-311-x86_64-linux-gnu.so +0 -0
  18. parrot/handlers/bots.py +1 -1
  19. parrot/handlers/chat.py +44 -21
  20. parrot/interfaces/http.py +805 -0
  21. parrot/llms/__init__.py +1 -1
  22. parrot/llms/google.py +0 -9
  23. parrot/llms/groq.py +9 -5
  24. parrot/llms/openai.py +0 -13
  25. parrot/llms/vertex.py +18 -26
  26. parrot/manager.py +60 -45
  27. parrot/models.py +52 -35
  28. parrot/stores/__init__.py +9 -46
  29. parrot/stores/abstract.py +168 -88
  30. parrot/stores/chroma.py +188 -0
  31. parrot/stores/duck.py +162 -0
  32. parrot/stores/embeddings/__init__.py +10 -0
  33. parrot/stores/embeddings/abstract.py +46 -0
  34. parrot/stores/embeddings/base.py +47 -0
  35. parrot/stores/embeddings/bge.py +20 -0
  36. parrot/stores/embeddings/fastembed.py +17 -0
  37. parrot/stores/embeddings/google.py +18 -0
  38. parrot/stores/embeddings/huggingface.py +20 -0
  39. parrot/stores/embeddings/ollama.py +14 -0
  40. parrot/stores/embeddings/openai.py +26 -0
  41. parrot/stores/embeddings/transformers.py +21 -0
  42. parrot/stores/embeddings/vertexai.py +17 -0
  43. parrot/stores/empty.py +10 -0
  44. parrot/stores/faiss.py +160 -0
  45. parrot/stores/milvus.py +129 -60
  46. parrot/stores/postgres.py +653 -0
  47. parrot/stores/qdrant.py +139 -79
  48. parrot/tools/__init__.py +19 -11
  49. parrot/tools/abstract.py +13 -2
  50. parrot/tools/asknews.py +3 -2
  51. parrot/tools/basic.py +53 -0
  52. parrot/tools/bby.py +359 -0
  53. parrot/tools/bing.py +1 -1
  54. parrot/tools/duck.py +2 -2
  55. parrot/tools/google.py +3 -3
  56. parrot/tools/stack.py +2 -1
  57. parrot/tools/wikipedia.py +4 -5
  58. parrot/tools/zipcode.py +36 -17
  59. parrot/version.py +1 -1
  60. {ai_parrot-0.4.11.dist-info → ai_parrot-0.5.9.dist-info}/LICENSE +0 -0
  61. {ai_parrot-0.4.11.dist-info → ai_parrot-0.5.9.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: ai-parrot
3
- Version: 0.4.11
3
+ Version: 0.5.9
4
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
@@ -30,11 +30,14 @@ 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: langchain>=0.3.4
34
- Requires-Dist: langchain-community==0.3.3
35
- Requires-Dist: langchain-experimental==0.3.2
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
36
38
  Requires-Dist: langchainhub==0.1.21
37
- Requires-Dist: huggingface-hub==0.26.2
39
+ Requires-Dist: huggingface-hub==0.29.1
40
+ Requires-Dist: langgraph==0.3.0
38
41
  Requires-Dist: faiss-cpu>=1.9.0
39
42
  Requires-Dist: jq==1.7.0
40
43
  Requires-Dist: rank_bm25==0.2.2
@@ -46,38 +49,48 @@ Requires-Dist: transitions==0.9.0
46
49
  Requires-Dist: sentencepiece==0.2.0
47
50
  Requires-Dist: weasyprint==61.2
48
51
  Requires-Dist: markdown2==2.4.13
52
+ Requires-Dist: psycopg-binary==3.2.5
49
53
  Provides-Extra: agents
54
+ Requires-Dist: numexpr==2.10.2; extra == "agents"
50
55
  Requires-Dist: numba==0.59.0; extra == "agents"
51
- Requires-Dist: yfinance==0.2.40; extra == "agents"
56
+ Requires-Dist: yfinance==0.2.54; extra == "agents"
52
57
  Requires-Dist: youtube_search==2.1.2; extra == "agents"
53
58
  Requires-Dist: wikipedia==1.4.0; extra == "agents"
54
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"
55
62
  Requires-Dist: pyowm==3.3.0; extra == "agents"
56
63
  Requires-Dist: O365==2.0.35; extra == "agents"
57
64
  Requires-Dist: stackapi==0.3.1; extra == "agents"
58
- Requires-Dist: duckduckgo-search==5.3.0; extra == "agents"
65
+ Requires-Dist: duckduckgo-search==7.5.0; extra == "agents"
59
66
  Requires-Dist: google-search-results==2.4.2; extra == "agents"
60
67
  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"
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"
81
94
  Provides-Extra: anthropic
82
95
  Requires-Dist: langchain-anthropic==0.2.4; extra == "anthropic"
83
96
  Requires-Dist: anthropic==0.25.2; extra == "anthropic"
@@ -90,19 +103,21 @@ Provides-Extra: google
90
103
  Requires-Dist: langchain-google-genai==2.0.1; extra == "google"
91
104
  Requires-Dist: langchain-google-vertexai==2.0.5; extra == "google"
92
105
  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
106
  Provides-Extra: hunggingfaces
96
107
  Requires-Dist: llama-index-llms-huggingface==0.2.7; extra == "hunggingfaces"
97
108
  Provides-Extra: groq
98
109
  Requires-Dist: groq==0.11.0; extra == "groq"
99
110
  Requires-Dist: langchain-groq==0.2.0; extra == "groq"
100
111
  Provides-Extra: qdrant
101
- Requires-Dist: qdrant-client==1.12.1; extra == "qdrant"
112
+ Requires-Dist: qdrant-client==1.13.2; extra == "qdrant"
113
+ Requires-Dist: langchain-qdrant==0.2.0; extra == "qdrant"
102
114
  Provides-Extra: milvus
103
115
  Requires-Dist: langchain-milvus>=0.1.6; extra == "milvus"
104
116
  Requires-Dist: pymilvus==2.4.8; extra == "milvus"
105
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"
106
121
  Provides-Extra: crew
107
122
  Requires-Dist: colbert-ai==0.2.19; extra == "crew"
108
123
  Requires-Dist: vanna==0.3.4; extra == "crew"
@@ -112,6 +127,20 @@ Requires-Dist: annoy==1.17.3; extra == "analytics"
112
127
  Requires-Dist: gradio_tools==0.0.9; extra == "analytics"
113
128
  Requires-Dist: gradio-client==0.2.9; extra == "analytics"
114
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
115
144
 
116
145
  # AI Parrot: Python package for creating Chatbots
117
146
  This is an open-source Python package for creating Chatbots based on Langchain and Navigator.
@@ -1,24 +1,31 @@
1
1
  parrot/__init__.py,sha256=eTkAkHeJ5BBDG2fxrXA4M37ODBJoS1DQYpeBAWL2xeI,387
2
- parrot/conf.py,sha256=IQfqqZcfByvsj3ryCwkcgCP5gzTdb3RRTGWgI5XX_Qg,4319
3
- parrot/exceptions.cpython-311-x86_64-linux-gnu.so,sha256=VNyBh3uLxGQgB0l1bkWjQDqYUN2ZAvRmV12AqQijV9Q,361184
4
- parrot/manager.py,sha256=ItpWBYcQ_rgqPq2ea9KiT9MfxhVzGTmnuWX37nnbtJw,6058
5
- parrot/models.py,sha256=ZrvVYtjRp0Lcm3hHxXcNq4P-e6TdDHXFzCAlMLR80kY,13534
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=qdamfnoRGMye4KJFJOYxqbMA9p8gyEsrhWIB5_Y5bow,378
8
- parrot/bots/__init__.py,sha256=IjRAr4H9gOepuJwZPz6MM0E_eAUe--5OgKxI7-_3i7c,255
9
- parrot/bots/abstract.py,sha256=R7vsx7bqyRbUpKjft639jzT7lCsPJs3LjOJDm76cREU,23847
7
+ parrot/version.py,sha256=uuGJi_QomqOL8oXXvwTsmEi7k1OjqnC5QmKhiQZmywE,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
10
11
  parrot/bots/base.py,sha256=Wl2BXRzxdGsWdHltAi0jalIPPAiM0TkVIHkRc1HQ99I,13422
11
12
  parrot/bots/basic.py,sha256=dg2kT_ynMEtZ3cMTcSovmDwrOo7BhBwL1o-Nn_7I85A,235
12
13
  parrot/bots/bose.py,sha256=gQQzAgt6wxGshihdr5H9_G4ns0lth814IkL7x1Ukjd4,759
13
- parrot/bots/chatbot.py,sha256=ZON71-ICIWnMuS_AW993E5uJDIcujwobfT8LA1NGVds,9876
14
+ parrot/bots/chatbot.py,sha256=uvTCgTSCsbGRz2BZbk0Ueca3Lvzl_tBj4eUfqon0AQQ,10106
14
15
  parrot/bots/cody.py,sha256=gPQPRcn7QNJfTF0zWI9i6K-PhyAG6PBVcoCxdvylRdI,616
15
- parrot/bots/copilot.py,sha256=Bski3tMCv9uSxmD6l2pXMny4Wny5tjP5IcRhWSQnMTI,2794
16
+ parrot/bots/copilot.py,sha256=PDK1Hj3TmxHgZT0rAplMnbbDkmV51B9tTstWWQjsLFM,2795
16
17
  parrot/bots/dataframe.py,sha256=CfZiLKIwnaku52nl2PNjciqRlH8m2lM4buO6xI7P408,3914
17
18
  parrot/bots/hrbot.py,sha256=2HLQlYNzNx97uK8P04NIfkRjFrtp4vCayN7gWjmG2ww,567
18
19
  parrot/bots/odoo.py,sha256=mG4f_eGgZ0W3sgSGHHQdYjYZ4MDOyFcAWJJ3TBLr5uA,798
19
20
  parrot/bots/troc.py,sha256=kelsktpV-0R2rpAQQtxxqo7UZitvJB7MM8DOrAUPqqk,597
20
- parrot/bots/retrievals/__init__.py,sha256=wvMM53k76njV5b6t6CCKiYVk2o81JCHzCNmlHBKYFMg,20622
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
21
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
22
29
  parrot/chatbots/__init__.py,sha256=ypskCnME0xUv6psBEGCEyXCrD0J0ULHSllpVmSxqb4A,200
23
30
  parrot/chatbots/abstract.py,sha256=CmDn3k4r9uKImOZRN4L9zxLbCdC-1MPUAorDlfZT-kA,26421
24
31
  parrot/chatbots/asktroc.py,sha256=gyWzyvpAnmXwXd-3DEKoIJtAxt6NnP5mUZdZbkFky8s,604
@@ -46,19 +53,20 @@ parrot/crew/tools/rag.py,sha256=sTp20-77Ui_3J-gItztVLb4Vinl2BVqTNSbTDikrj0g,1406
46
53
  parrot/crew/tools/search.py,sha256=itWpJD_78IXVtBSKrQIAamCPLbejwmUj1oCBKqBxvO0,1055
47
54
  parrot/crew/tools/url.py,sha256=m5v9XFQPotHRID7NmY-NQVmXtXEJvfly6tFMslL8U_0,682
48
55
  parrot/handlers/__init__.py,sha256=WKn2yg4pSi5-IivkQ34uHSfTG7f1nYj4jB8-4wNG2_A,64
49
- parrot/handlers/bots.py,sha256=GG2W8y_GC71f8_mMHxwAYP-ope7ecNP_GShL9c66_uY,5782
50
- 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
51
58
  parrot/interfaces/__init__.py,sha256=m3FpxsFeEKq_hvQR9YRGAhZS6u8LZZBuzf6-njugiHE,69
52
59
  parrot/interfaces/database.py,sha256=PHy133KTqa9K0tALOQt1q0ufwUZ4n7rndZrhob6Wbk4,609
53
- 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
54
62
  parrot/llms/abstract.py,sha256=bIrAMkRbP4hf8MYQESUzcNnIqc70vbDuoseoee7Xhho,1395
55
63
  parrot/llms/anthropic.py,sha256=8g7hA5LKfGWCahOPw_zV4pniwa4Fg4KTkAnL9qcq9KU,1311
56
- parrot/llms/google.py,sha256=z17aF26h28Dbtt4b7BIfadB9G1cO0a6JeCAxX6aI-6c,1315
57
- 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
58
66
  parrot/llms/hf.py,sha256=f2HhHCICaSHp0y3KRhqNcYXNO-amYTxDXJ_2_9L5Bk8,1594
59
- parrot/llms/openai.py,sha256=NgWv6IwJ1DborlYhTyureBBdgHfAPc_lGHQRGt80ca8,1759
67
+ parrot/llms/openai.py,sha256=Qqb5oz1On4uUvateS4espbQFN6N7qxq6hFcNWWEGBcs,1299
60
68
  parrot/llms/pipes.py,sha256=Ns_wh-alkKocZKlbQyQLKOSBxqfRC_hCbz34vpOOyP8,3798
61
- parrot/llms/vertex.py,sha256=C7xbxwSGFm3P6lWoz0ApSkgsYGO7J3weZ4kBHqeF4fw,2634
69
+ parrot/llms/vertex.py,sha256=r89khQ0janBTDg6SrgKYUSqirEUj5S-FsYe6TzUg_qE,2387
62
70
  parrot/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
71
  parrot/loaders/abstract.py,sha256=Mx6BtihuwvFkl-Ali_84949BfVXFB0JZjmSKnJ-gXSg,17272
64
72
  parrot/loaders/audio.py,sha256=P2tWYKxWLM5TMLMm-5qR35cD_pGQWmf8-UZUTiK4R0o,3698
@@ -92,21 +100,39 @@ parrot/loaders/handlers/__init__.py,sha256=ksEDtUOEJELmyCIi0KNv7tR2fCUyADBVkwCcy
92
100
  parrot/loaders/handlers/data.py,sha256=olZ2p-wyUMGoazah7tgHY7V9buGX1FOeJ-cv2vGEoH8,7386
93
101
  parrot/loaders/utils/__init__.py,sha256=SkDyK3MuPGhp0NM6kHvaxQDe97Gcl3n9t5A741OVh1c,28
94
102
  parrot/loaders/utils/models.py,sha256=BHcnFzS7oOKUGG-vPy_TlqeFNAC8puRgsIMX2mSgKxY,1059
95
- parrot/stores/__init__.py,sha256=ZFjZvcLhcqJqndx9tiEANpyiude1fvjrCxyt2S42VqY,1496
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
100
- parrot/tools/abstract.py,sha256=pVSZw8MDpbVcQ-CHaGwP6CpqXHIs8hH8Oy1AqUuMmrw,1706
101
- parrot/tools/asknews.py,sha256=hEpPJMyNBVfj2maHbqnumn3VkY45oFvrjkE3Rq8EdGA,1039
102
- parrot/tools/bing.py,sha256=BtmFD66OIuCaOue5U2_yIqtjWf24IhEgNOX1LAVvHtA,464
103
- 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
104
130
  parrot/tools/execute.py,sha256=fTMQAsXuUzVyIWmZxL22LrSj2eQ-Rh-ncyUZ9gY-d-A,1687
105
- parrot/tools/google.py,sha256=NjijcUWH6Crk5Uty_x3FstjDTGZV8JXfBFDQEtMHhac,6236
106
- 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
107
133
  parrot/tools/weather.py,sha256=4v9Ft5lkVzb9Pg7afNs7BK5T3WEcsZbHPlBrF9oXSo8,2541
108
- parrot/tools/wikipedia.py,sha256=oadBTRAupu2dKThEORSHqqVs4u0G9lWOltbP6vSZgPE,1999
109
- 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
110
136
  parrot/utils/__init__.py,sha256=vkBIvfl9-0NRLd76MIZk4s49PjtF_dW5imLTv_UOKxM,101
111
137
  parrot/utils/toml.py,sha256=CVyqDdAEyOj6AHfNpyQe4IUvLP_SSXlbHROYPeadLvU,302
112
138
  parrot/utils/types.cpython-311-x86_64-linux-gnu.so,sha256=UxJ_wgXnTrVha1Ml8FQFyP2UPRSDWsRc9VgX0OVjfw8,791256
@@ -118,8 +144,8 @@ resources/users/handlers.py,sha256=BGzqBvPY_OaIF_nONWX4b_B5OyyBrdGuSihIsdlFwjk,2
118
144
  resources/users/models.py,sha256=glk7Emv7QCi6i32xRFDrGc8UwK23_LPg0XUOJoHnwRU,6799
119
145
  settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
146
  settings/settings.py,sha256=9ueEvyLNurUX-AaIeRPV8GKX1c4YjDLbksUAeqEq6Ck,1854
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,,
147
+ ai_parrot-0.5.9.dist-info/LICENSE,sha256=vRKOoa7onTsLNvSzJtGtMaNhWWh8B3YAT733Tlu6M4o,1070
148
+ ai_parrot-0.5.9.dist-info/METADATA,sha256=kyo9XvvUMJ8Nhi8w-nD4P-Q2TFseOPbmjs9H9PxEx5g,9715
149
+ ai_parrot-0.5.9.dist-info/WHEEL,sha256=lNWVJ6q28SO2kTKDIyc1kQ-4wE2w5snxBQXSv06oiUw,113
150
+ ai_parrot-0.5.9.dist-info/top_level.txt,sha256=VCLpdIu_5wkShgIQjK85jFzL9HEVVjAqlQa_gupLekI,17
151
+ ai_parrot-0.5.9.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (76.0.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp311-cp311-manylinux_2_28_x86_64
5
5
 
parrot/bots/__init__.py CHANGED
@@ -1,13 +1,9 @@
1
1
  from .abstract import AbstractBot
2
2
  from .basic import BasicBot
3
- from .troc import AskTROC
4
- from .chatbot import Chatbot
5
3
  from .hrbot import HRAgent
6
- from .cody import Cody
7
- from .odoo import OddieBot
8
- from .bose import BoseBot
9
-
10
4
 
11
5
  __all__ = (
12
6
  'AbstractBot',
7
+ 'BasicBot',
8
+ 'HRAgent'
13
9
  )