ai-parrot 0.5.15__cp311-cp311-manylinux_2_28_x86_64.whl → 0.8.1rc0__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 (58) hide show
  1. {ai_parrot-0.5.15.dist-info → ai_parrot-0.8.1rc0.dist-info}/METADATA +56 -35
  2. {ai_parrot-0.5.15.dist-info → ai_parrot-0.8.1rc0.dist-info}/RECORD +58 -34
  3. {ai_parrot-0.5.15.dist-info → ai_parrot-0.8.1rc0.dist-info}/WHEEL +1 -1
  4. parrot/__init__.py +9 -0
  5. parrot/bots/__init__.py +2 -6
  6. parrot/bots/abstract.py +197 -104
  7. parrot/bots/agent.py +104 -16
  8. parrot/bots/chatbot.py +9 -0
  9. parrot/bots/data.py +730 -0
  10. parrot/bots/notebook.py +619 -0
  11. parrot/bots/prompts/__init__.py +1 -1
  12. parrot/bots/prompts/agents.py +35 -37
  13. parrot/bots/prompts/data.py +214 -0
  14. parrot/bots/tools/__init__.py +7 -0
  15. parrot/bots/tools/eda.py +325 -0
  16. parrot/bots/tools/pdf.py +50 -0
  17. parrot/bots/tools/plot.py +48 -0
  18. parrot/conf.py +27 -3
  19. parrot/handlers/agents.py +292 -0
  20. parrot/handlers/chat.py +8 -1
  21. parrot/interfaces/database.py +1 -3
  22. parrot/interfaces/http.py +2 -2
  23. parrot/interfaces/images/__init__.py +0 -0
  24. parrot/interfaces/images/plugins/__init__.py +18 -0
  25. parrot/interfaces/images/plugins/abstract.py +58 -0
  26. parrot/interfaces/images/plugins/exif.py +427 -0
  27. parrot/interfaces/images/plugins/hash.py +52 -0
  28. parrot/interfaces/images/plugins/vision.py +104 -0
  29. parrot/interfaces/images/plugins/yolo.py +66 -0
  30. parrot/interfaces/images/plugins/zerodetect.py +197 -0
  31. parrot/llms/__init__.py +1 -137
  32. parrot/llms/abstract.py +29 -7
  33. parrot/llms/anthropic.py +19 -7
  34. parrot/llms/gemma.py +15 -0
  35. parrot/llms/google.py +21 -10
  36. parrot/llms/groq.py +23 -5
  37. parrot/llms/openai.py +25 -10
  38. parrot/llms/vertex.py +47 -29
  39. parrot/loaders/__init__.py +9 -0
  40. parrot/loaders/abstract.py +534 -405
  41. parrot/loaders/files/__init__.py +0 -0
  42. parrot/loaders/files/abstract.py +39 -0
  43. parrot/loaders/files/text.py +63 -0
  44. parrot/loaders/txt.py +10 -76
  45. parrot/manager.py +151 -4
  46. parrot/models.py +115 -3
  47. parrot/stores/embeddings/base.py +11 -6
  48. parrot/tools/__init__.py +3 -0
  49. parrot/tools/abstract.py +4 -0
  50. parrot/tools/basic.py +3 -5
  51. parrot/tools/docx.py +343 -0
  52. parrot/tools/duck.py +2 -2
  53. parrot/tools/gamma.py +28 -0
  54. parrot/tools/gvoice.py +301 -0
  55. parrot/tools/results.py +278 -0
  56. parrot/version.py +1 -1
  57. {ai_parrot-0.5.15.dist-info → ai_parrot-0.8.1rc0.dist-info/licenses}/LICENSE +0 -0
  58. {ai_parrot-0.5.15.dist-info → ai_parrot-0.8.1rc0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: ai-parrot
3
- Version: 0.5.15
3
+ Version: 0.8.1rc0
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,45 +30,67 @@ 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.19
34
- Requires-Dist: langchain-core==0.3.40
35
- Requires-Dist: langchain-community==0.3.18
33
+ Requires-Dist: langchain>=0.3.25
34
+ Requires-Dist: langchain-core==0.3.58
35
+ Requires-Dist: langchain-community==0.3.21
36
36
  Requires-Dist: langchain-experimental==0.3.4
37
- Requires-Dist: langchain-text-splitters==0.3.6
37
+ Requires-Dist: langchain-text-splitters==0.3.8
38
38
  Requires-Dist: langchainhub==0.1.21
39
- Requires-Dist: huggingface-hub==0.29.1
40
- Requires-Dist: langgraph==0.3.0
39
+ Requires-Dist: huggingface-hub==0.30.2
40
+ Requires-Dist: langgraph==0.3.27
41
41
  Requires-Dist: faiss-cpu>=1.9.0
42
42
  Requires-Dist: jq==1.7.0
43
43
  Requires-Dist: rank_bm25==0.2.2
44
- Requires-Dist: matplotlib==3.9.2
45
44
  Requires-Dist: tabulate==0.9.0
46
- Requires-Dist: selenium>=4.18.1
47
- Requires-Dist: webdriver_manager>=4.0.1
48
45
  Requires-Dist: transitions==0.9.0
49
46
  Requires-Dist: sentencepiece==0.2.0
50
- Requires-Dist: weasyprint==61.2
51
47
  Requires-Dist: markdown2==2.4.13
52
- Requires-Dist: psycopg-binary==3.2.5
48
+ Requires-Dist: psycopg-binary==3.2.6
49
+ Requires-Dist: langchain_postgres==0.0.14
50
+ Requires-Dist: python-datamodel>=0.10.17
51
+ Requires-Dist: backoff==2.2.1
52
+ Requires-Dist: asyncdb>=2.11.6
53
+ Requires-Dist: google-cloud-bigquery==3.30.0
54
+ Requires-Dist: numexpr==2.10.2
55
+ Requires-Dist: fpdf==1.7.2
56
+ Requires-Dist: python-docx==1.1.2
53
57
  Provides-Extra: agents
54
- Requires-Dist: numexpr==2.10.2; extra == "agents"
55
- Requires-Dist: numba==0.59.0; extra == "agents"
56
58
  Requires-Dist: yfinance==0.2.54; extra == "agents"
57
59
  Requires-Dist: youtube_search==2.1.2; extra == "agents"
58
60
  Requires-Dist: wikipedia==1.4.0; extra == "agents"
59
61
  Requires-Dist: mediawikiapi==1.2; extra == "agents"
60
62
  Requires-Dist: wikibase-rest-api-client==0.2.2; extra == "agents"
61
- Requires-Dist: asknews>=0.10.0; extra == "agents"
62
63
  Requires-Dist: pyowm==3.3.0; extra == "agents"
63
64
  Requires-Dist: O365==2.0.35; extra == "agents"
64
65
  Requires-Dist: stackapi==0.3.1; extra == "agents"
65
66
  Requires-Dist: duckduckgo-search==7.5.0; extra == "agents"
66
67
  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"
68
+ Requires-Dist: google-api-python-client>=2.151.0; extra == "agents"
69
+ Requires-Dist: pomegranate==1.1.0; extra == "agents"
70
+ Requires-Dist: autoviz==0.1.905; extra == "agents"
71
+ Requires-Dist: spacy==3.8.5; extra == "agents"
72
+ Provides-Extra: loaders
73
+ Requires-Dist: mammoth==1.8.0; extra == "loaders"
74
+ Requires-Dist: markdownify==1.1.0; extra == "loaders"
75
+ Requires-Dist: python-docx==1.1.2; extra == "loaders"
76
+ Requires-Dist: pymupdf==1.25.5; extra == "loaders"
77
+ Requires-Dist: pymupdf4llm==0.0.22; extra == "loaders"
78
+ Requires-Dist: pdf4llm==0.0.22; extra == "loaders"
79
+ Requires-Dist: langchain-huggingface==0.1.2; extra == "loaders"
80
+ Provides-Extra: images
81
+ Requires-Dist: torchvision==0.21.0; extra == "images"
82
+ Requires-Dist: timm==1.0.15; extra == "images"
83
+ Requires-Dist: ultralytics==8.3.121; extra == "images"
84
+ Requires-Dist: albumentations==2.0.6; extra == "images"
85
+ Requires-Dist: filetype==1.2.0; extra == "images"
86
+ Requires-Dist: imagehash==4.3.1; extra == "images"
87
+ Requires-Dist: pgvector==0.3.6; extra == "images"
88
+ Requires-Dist: pyheif==0.8.0; extra == "images"
89
+ Requires-Dist: exif==1.6.1; extra == "images"
90
+ Requires-Dist: pillow-avif-plugin==1.5.2; extra == "images"
91
+ Requires-Dist: pillow-heif==0.22.0; extra == "images"
70
92
  Provides-Extra: vector
71
- Requires-Dist: torch==2.5.1; extra == "vector"
93
+ Requires-Dist: torch<=2.6.0,>=2.5.1; extra == "vector"
72
94
  Requires-Dist: langchain_huggingface==0.1.2; extra == "vector"
73
95
  Requires-Dist: fastembed==0.3.4; extra == "vector"
74
96
  Requires-Dist: tiktoken==0.7.0; extra == "vector"
@@ -78,36 +100,34 @@ Requires-Dist: llama_cpp_python==0.2.56; extra == "vector"
78
100
  Requires-Dist: bitsandbytes==0.44.1; extra == "vector"
79
101
  Requires-Dist: datasets>=3.0.2; extra == "vector"
80
102
  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"
103
+ Requires-Dist: transformers<=4.51.2,>=4.44.2; extra == "vector"
104
+ Requires-Dist: sentence-transformers==4.0.2; extra == "vector"
83
105
  Requires-Dist: tokenizers==0.20.1; extra == "vector"
84
- Requires-Dist: torchvision==0.20.1; extra == "vector"
85
106
  Requires-Dist: tensorflow==2.18.0; extra == "vector"
86
107
  Requires-Dist: tf-keras==2.18.0; extra == "vector"
87
- Requires-Dist: simsimd==4.3.1; extra == "vector"
108
+ Requires-Dist: simsimd>=4.3.1; extra == "vector"
88
109
  Requires-Dist: opencv-python==4.10.0.84; extra == "vector"
89
- Requires-Dist: langchain-postgres==0.0.13; extra == "vector"
90
110
  Requires-Dist: langchain_chroma==0.2.2; extra == "vector"
91
111
  Requires-Dist: chromadb==0.6.3; extra == "vector"
92
112
  Requires-Dist: langchain_duckdb==0.1.1; extra == "vector"
93
113
  Requires-Dist: langchain-ollama==0.2.3; extra == "vector"
94
114
  Provides-Extra: anthropic
95
- Requires-Dist: langchain-anthropic==0.2.4; extra == "anthropic"
96
- Requires-Dist: anthropic==0.25.2; extra == "anthropic"
115
+ Requires-Dist: anthropic==0.50.0; extra == "anthropic"
116
+ Requires-Dist: langchain_anthropic==0.3.12; extra == "anthropic"
97
117
  Provides-Extra: openai
98
- Requires-Dist: langchain-openai==0.1.21; extra == "openai"
99
- Requires-Dist: openai==1.40.3; extra == "openai"
100
- Requires-Dist: llama-index-llms-openai==0.1.11; extra == "openai"
118
+ Requires-Dist: langchain_openai==0.3.16; extra == "openai"
119
+ Requires-Dist: openai==1.76.2; extra == "openai"
101
120
  Requires-Dist: tiktoken==0.7.0; extra == "openai"
102
121
  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"
122
+ Requires-Dist: langchain-google-genai>=2.1.4; extra == "google"
123
+ Requires-Dist: langchain-google-vertexai>=2.0.10; extra == "google"
124
+ Requires-Dist: google-cloud-texttospeech==2.26.0; extra == "google"
125
+ Requires-Dist: google-genai>=1.0.0; extra == "google"
106
126
  Provides-Extra: hunggingfaces
107
127
  Requires-Dist: llama-index-llms-huggingface==0.2.7; extra == "hunggingfaces"
108
128
  Provides-Extra: groq
109
- Requires-Dist: groq==0.11.0; extra == "groq"
110
- Requires-Dist: langchain-groq==0.2.0; extra == "groq"
129
+ Requires-Dist: groq==0.22.0; extra == "groq"
130
+ Requires-Dist: langchain-groq==0.3.2; extra == "groq"
111
131
  Provides-Extra: qdrant
112
132
  Requires-Dist: qdrant-client==1.13.2; extra == "qdrant"
113
133
  Requires-Dist: langchain-qdrant==0.2.0; extra == "qdrant"
@@ -135,6 +155,7 @@ Dynamic: description-content-type
135
155
  Dynamic: home-page
136
156
  Dynamic: keywords
137
157
  Dynamic: license
158
+ Dynamic: license-file
138
159
  Dynamic: platform
139
160
  Dynamic: project-url
140
161
  Dynamic: provides-extra
@@ -1,31 +1,39 @@
1
- parrot/__init__.py,sha256=eTkAkHeJ5BBDG2fxrXA4M37ODBJoS1DQYpeBAWL2xeI,387
2
- parrot/conf.py,sha256=BBbArVYjcGGaNKw3_h1dOw_pl1qcYNuT6Sj6dINwJd8,5404
1
+ ai_parrot-0.8.1rc0.dist-info/licenses/LICENSE,sha256=vRKOoa7onTsLNvSzJtGtMaNhWWh8B3YAT733Tlu6M4o,1070
2
+ parrot/__init__.py,sha256=EO8KLYx9hQ_XBmD8Z9CclLMQNNtHLmYk7Q5Gm-p-fRo,815
3
+ parrot/conf.py,sha256=GqIFvDJBMcu7TGUqN0WiqYr31hDTwJ6VFsU5Jsq5xA8,6232
3
4
  parrot/exceptions.cpython-311-x86_64-linux-gnu.so,sha256=1tKBneucxl6ShNqI8KS4-pa9G-YQw9kXCnqUB-n2tbc,361184
4
- parrot/manager.py,sha256=JNE6vY1H2PvpVeKzLv18uXTY9u5rb-JvmKSx-aIH1y4,6618
5
- parrot/models.py,sha256=MT88rYdITenwTuyCfeqHqaNf49rieAKz43R2TibN7G8,14314
5
+ parrot/manager.py,sha256=q0trXop817WwKTQd_hrF9KAMAj3C0288pFU4nvTl-2M,12383
6
+ parrot/models.py,sha256=2oCbq4-EUDDmeyRw_TjBT36lF8WbbuoF-MPt3-3QrEg,18369
6
7
  parrot/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- parrot/version.py,sha256=U54zO3D8_39FflpXD5eJ9GDphLpuioshfqpq1LAddKw,378
8
- parrot/bots/__init__.py,sha256=qD-WOn8n34VUCp7Mq6Mq1lZV8h_cKAeXQxn27UtBDP4,153
9
- parrot/bots/abstract.py,sha256=_DX7zASDyDIBsH62ZrLiiA3VCLPnFLDSvh2kkB5W7CY,36298
10
- parrot/bots/agent.py,sha256=2v_5hQ3XCvCPpwTne7t-NDUpX3na1LIwXfufT-cK9LU,13432
8
+ parrot/version.py,sha256=8K0rpK-NIFV1hEz-nPMcyxeKsNktfTtHKfWsTV5iwzw,379
9
+ parrot/bots/__init__.py,sha256=OM7cuy_YjGtuADKxCbQiDG4tuAqIu41GmzVTcDiR1uU,155
10
+ parrot/bots/abstract.py,sha256=bNu4DoN9AtUaH808wE7CUL610CbEbBxVwQJuUGMC0eI,39852
11
+ parrot/bots/agent.py,sha256=eD-kTFa3NeLyKcJ_sUh3SLgNJIi9LE0oTXkd9oBfyb8,16750
11
12
  parrot/bots/base.py,sha256=Wl2BXRzxdGsWdHltAi0jalIPPAiM0TkVIHkRc1HQ99I,13422
12
13
  parrot/bots/basic.py,sha256=dg2kT_ynMEtZ3cMTcSovmDwrOo7BhBwL1o-Nn_7I85A,235
13
14
  parrot/bots/bose.py,sha256=gQQzAgt6wxGshihdr5H9_G4ns0lth814IkL7x1Ukjd4,759
14
- parrot/bots/chatbot.py,sha256=E7pz0duU2-qrbo9QzvwM_Gfw2OtpcWziXvEZmfWfPeo,10201
15
+ parrot/bots/chatbot.py,sha256=28QrZmjK-TbNHdo9odLyFtdn0VYWPUTzTgWq6OONOsA,10589
15
16
  parrot/bots/cody.py,sha256=gPQPRcn7QNJfTF0zWI9i6K-PhyAG6PBVcoCxdvylRdI,616
16
17
  parrot/bots/copilot.py,sha256=PDK1Hj3TmxHgZT0rAplMnbbDkmV51B9tTstWWQjsLFM,2795
18
+ parrot/bots/data.py,sha256=uElOUWi2AebKLR_zfSmUuZSjV_W0zVTwm4jv5raM2ZQ,27837
17
19
  parrot/bots/dataframe.py,sha256=CfZiLKIwnaku52nl2PNjciqRlH8m2lM4buO6xI7P408,3914
18
20
  parrot/bots/hrbot.py,sha256=2HLQlYNzNx97uK8P04NIfkRjFrtp4vCayN7gWjmG2ww,567
21
+ parrot/bots/notebook.py,sha256=48GGskzt1HseC_32Ru63IVFFwr5c4_GsUhgamFdwdAk,25077
19
22
  parrot/bots/odoo.py,sha256=mG4f_eGgZ0W3sgSGHHQdYjYZ4MDOyFcAWJJ3TBLr5uA,798
20
23
  parrot/bots/troc.py,sha256=kelsktpV-0R2rpAQQtxxqo7UZitvJB7MM8DOrAUPqqk,597
21
24
  parrot/bots/interfaces/__init__.py,sha256=Sgel4P6GA9pJ9Q-NH5faEEhBGfL2x2UBPr5fvC72BAU,39
22
25
  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
26
+ parrot/bots/prompts/__init__.py,sha256=MYWrXtpqzNxInecNZCpJh0uMLjg8KNr-cKTSR7sjPdU,964
27
+ parrot/bots/prompts/agents.py,sha256=Hjyx--brZ5FW-nMHT4jHrAe6bXUWeAnHj4DLay1lYUk,3958
28
+ parrot/bots/prompts/data.py,sha256=Yq5mnKmnyjNp3FqfeRl_AULM4D8rNDKKf_9KfHGptrs,9608
25
29
  parrot/bots/retrievals/__init__.py,sha256=AgI0mTB27tZ0Oyr7RU63G-ZO1VyX-uCJ6lwxgP4baag,45
26
30
  parrot/bots/retrievals/constitutional.py,sha256=x7kFR0KpmkR0Wz6bXNOeU3Hesn_EXc6eOSd4TdXxb8o,600
27
31
  parrot/bots/retrievals/multi.py,sha256=92exQXAU5B2gk0uA9dAJnZMwFldPcarcQzLo-iEZy6o,4990
28
32
  parrot/bots/retrievals/retrieval.py,sha256=wvMM53k76njV5b6t6CCKiYVk2o81JCHzCNmlHBKYFMg,20622
33
+ parrot/bots/tools/__init__.py,sha256=l0oqzVwBsTZaLGeT79cYmkjWRYUsDPAhnP4MZkErOnM,230
34
+ parrot/bots/tools/eda.py,sha256=BAiLqlW5IzMNEUBTGvzZnmyEK1wZND-YUoP0BkjU8KU,14022
35
+ parrot/bots/tools/pdf.py,sha256=D7SO0Pf3Y9_fCRSrLJ65fzFKHdRBov_Cuf09RpPh96w,1426
36
+ parrot/bots/tools/plot.py,sha256=BNs-6ahr5tilVE2hTfNvorZOktqjlDeITGgMHbcVPjI,1141
29
37
  parrot/chatbots/__init__.py,sha256=ypskCnME0xUv6psBEGCEyXCrD0J0ULHSllpVmSxqb4A,200
30
38
  parrot/chatbots/abstract.py,sha256=CmDn3k4r9uKImOZRN4L9zxLbCdC-1MPUAorDlfZT-kA,26421
31
39
  parrot/chatbots/asktroc.py,sha256=gyWzyvpAnmXwXd-3DEKoIJtAxt6NnP5mUZdZbkFky8s,604
@@ -53,22 +61,32 @@ parrot/crew/tools/rag.py,sha256=sTp20-77Ui_3J-gItztVLb4Vinl2BVqTNSbTDikrj0g,1406
53
61
  parrot/crew/tools/search.py,sha256=itWpJD_78IXVtBSKrQIAamCPLbejwmUj1oCBKqBxvO0,1055
54
62
  parrot/crew/tools/url.py,sha256=m5v9XFQPotHRID7NmY-NQVmXtXEJvfly6tFMslL8U_0,682
55
63
  parrot/handlers/__init__.py,sha256=WKn2yg4pSi5-IivkQ34uHSfTG7f1nYj4jB8-4wNG2_A,64
64
+ parrot/handlers/agents.py,sha256=Ys0B1Ryx8caEnu3su2aDe9IBJHxlxuXqgJj3LXROA9I,9519
56
65
  parrot/handlers/bots.py,sha256=OxyE6N-Mqt9G5UAai-ERFd2-0VAULO3e-wJn17QaDFI,5782
57
- parrot/handlers/chat.py,sha256=tkmTtY3Lm5XWhiz2dC2oGQwsgLVUZHysYDFm3TYeBJU,5833
66
+ parrot/handlers/chat.py,sha256=gZSDOZ5PFoiipfipM48hiR7VXZX9tN9AzjOeuLC4Tro,6122
58
67
  parrot/interfaces/__init__.py,sha256=m3FpxsFeEKq_hvQR9YRGAhZS6u8LZZBuzf6-njugiHE,69
59
- parrot/interfaces/database.py,sha256=PHy133KTqa9K0tALOQt1q0ufwUZ4n7rndZrhob6Wbk4,609
60
- parrot/interfaces/http.py,sha256=HfSg1EeozHp8GL2CfRrRieoz7v2LDs5mL_8myYys7pI,33808
61
- parrot/llms/__init__.py,sha256=7ccYWQi3RfKTI3_tLemsMni1u3n50vnm5WJWrjVIY_I,3849
62
- parrot/llms/abstract.py,sha256=bIrAMkRbP4hf8MYQESUzcNnIqc70vbDuoseoee7Xhho,1395
63
- parrot/llms/anthropic.py,sha256=8g7hA5LKfGWCahOPw_zV4pniwa4Fg4KTkAnL9qcq9KU,1311
64
- parrot/llms/google.py,sha256=nd82kretpWBFZVwPOP3B85LG0H3jizEMXxxsj8m7meo,973
65
- parrot/llms/groq.py,sha256=ebpBFhzAK3r-fIay7oHW2E-X2tLVCNG3DgQmWltaH2k,1617
68
+ parrot/interfaces/database.py,sha256=t-UGwInCLHaVlPnaaVcUPtUYwLhoh5tcQa8HGmmqZkc,565
69
+ parrot/interfaces/http.py,sha256=wJWP15z-ANPn1CoWCdwEILbdnof_Xs1Yvu5WcI4c49Q,33808
70
+ parrot/interfaces/images/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
+ parrot/interfaces/images/plugins/__init__.py,sha256=CwFY6RS6iFagvhqwWAmwF8sfM5uZqHmyU8amMj8gGbE,461
72
+ parrot/interfaces/images/plugins/abstract.py,sha256=FOh0V6hoPUF0L63UxvtYEHIkTjSQSBBplcgK7aGucmQ,1650
73
+ parrot/interfaces/images/plugins/exif.py,sha256=VplHG8qLGB7-NYsy8WCM7u7Ws1A3QCKxX9DWdW0RNnk,18792
74
+ parrot/interfaces/images/plugins/hash.py,sha256=FT7CVhZ0FLLc5Lr9EzsBoC_y342mnSnrcnFfBy-Q9lI,1704
75
+ parrot/interfaces/images/plugins/vision.py,sha256=gR29IX8KYGCATpEMNqFn5D0jrC1UcKZYbIUMIbB1tJM,3920
76
+ parrot/interfaces/images/plugins/yolo.py,sha256=dhyy8301GD7twb9I2prpmsWRI5usw_8iO3Is-xhZtyI,2325
77
+ parrot/interfaces/images/plugins/zerodetect.py,sha256=Bq8vrm0VgDeVilll5bGMHHx5H1CjMeXdlQk21Dm27no,7985
78
+ parrot/llms/__init__.py,sha256=rAtMKIM-k55ouEIvglxJmFxtUs2KHtthdh4KEkv6veQ,47
79
+ parrot/llms/abstract.py,sha256=0ucg_fAl2l7hR5zhzE5_ovjCgDkUmvh6ahqDkVAZZaw,2292
80
+ parrot/llms/anthropic.py,sha256=-Ogd19_RLEy_j46s_EQwT1wfXv9yyQNoHnrcF3LewsQ,1854
81
+ parrot/llms/gemma.py,sha256=ybyWrXEN6a7OJJVGioCnE7CmpL_sbYlaHPQvi2CRK0w,352
82
+ parrot/llms/google.py,sha256=cETHa0hvdIZ1uNO6mC435gxaVC76_P1pCHMccWulV58,1293
83
+ parrot/llms/groq.py,sha256=6W77FjjKKkCqLqjvW2EmujDnvG_lKgtI4rOx-aPIzxA,2319
66
84
  parrot/llms/hf.py,sha256=f2HhHCICaSHp0y3KRhqNcYXNO-amYTxDXJ_2_9L5Bk8,1594
67
- parrot/llms/openai.py,sha256=Qqb5oz1On4uUvateS4espbQFN6N7qxq6hFcNWWEGBcs,1299
85
+ parrot/llms/openai.py,sha256=WipdwedYTIARTs0QXa7V-oUDG-AXMXexM-LVD17sh08,1766
68
86
  parrot/llms/pipes.py,sha256=Ns_wh-alkKocZKlbQyQLKOSBxqfRC_hCbz34vpOOyP8,3798
69
- parrot/llms/vertex.py,sha256=r89khQ0janBTDg6SrgKYUSqirEUj5S-FsYe6TzUg_qE,2387
70
- parrot/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
- parrot/loaders/abstract.py,sha256=Mx6BtihuwvFkl-Ali_84949BfVXFB0JZjmSKnJ-gXSg,17272
87
+ parrot/llms/vertex.py,sha256=3dYVrOuyyGeDdr2xTLzpbI_ao2D6SLxGfMATMZHPGEY,2967
88
+ parrot/loaders/__init__.py,sha256=ocwIdDCZ9oF8uCjK49SsALoOM6LoS14QipHfDsD0piI,259
89
+ parrot/loaders/abstract.py,sha256=UJbkuE8j-wH3WcXoXUJwD8ZZe9oosrY-1VtPDJ-MSVc,23284
72
90
  parrot/loaders/audio.py,sha256=P2tWYKxWLM5TMLMm-5qR35cD_pGQWmf8-UZUTiK4R0o,3698
73
91
  parrot/loaders/basepdf.py,sha256=Qh_hzR0JArQEVP31SgWt9utt7qWmbfwVoCzUDyBHcXw,3243
74
92
  parrot/loaders/basevideo.py,sha256=xLAMfIhjGR10T3-Pdx8MLq5Bp6woCOuq5Jr6yUZ6LCU,11992
@@ -88,7 +106,7 @@ parrot/loaders/ppt.py,sha256=6XailMQeQBFMzaSCvNJTHtfpzunTJRatytGT6o3v8-c,832
88
106
  parrot/loaders/qa.py,sha256=3K_2yBxUzj-ifDpAbUsIc-v66004fKPzGavUqrhc3Kc,2646
89
107
  parrot/loaders/repo.py,sha256=vBqBAnwU6p3_DCvI9DVhi1Bs8iCDYHwFGp0P9zvGRyw,3737
90
108
  parrot/loaders/rtd.py,sha256=O0h7LDntP_0IBT8LDQi09u-gYVUO5cuvmGsfZLZ4CoU,1990
91
- parrot/loaders/txt.py,sha256=-xXVSuvkC2LQ2XZ44Nqwk3V8nE4F6UgXylosMCNgeFo,2804
109
+ parrot/loaders/txt.py,sha256=WvxuasrP9VX-QkWxJ-ZiyrA4i3wkh7SJpnpPTLEI-yc,673
92
110
  parrot/loaders/video.py,sha256=9zKUFFROSIbWjWFOvxDrW4uOewrMzD7-xADmszOpP4k,2930
93
111
  parrot/loaders/videolocal.py,sha256=cRYv3KvKKHltMY4QbnvEMCOLHlEY9ZmWeXTL23fy-gA,9669
94
112
  parrot/loaders/vimeo.py,sha256=Cs7FkL2Cr8yV44-Tv5wWkveKzqhOeAIP6kF93SCr_Lk,4118
@@ -96,6 +114,9 @@ parrot/loaders/web.py,sha256=kTi-NtAsbQLKi3wD_2o15Z0HHnYzsEEEGjH0RdvyQqQ,8869
96
114
  parrot/loaders/web_base.py,sha256=ZwSFXtJR71cpFGN1WCLUC2W6JjEUV865tRKf8isbJ5M,4382
97
115
  parrot/loaders/word.py,sha256=jZdHSL5CtAEn1otBYLNSqKLtO3BNcTObDPgqhzk5-4M,4533
98
116
  parrot/loaders/youtube.py,sha256=DzH9bD5ZrLaTG_6GMjHsy1cHoTBR712yUC8tJiAYbNM,9607
117
+ parrot/loaders/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
118
+ parrot/loaders/files/abstract.py,sha256=CEmFdpuyRkJFA_9vD1UyUMElK0VGf1AMIEtYzy3unCg,1077
119
+ parrot/loaders/files/text.py,sha256=199Q_A0fN2NYxuXO5fuNjkPnTPYGW9shv5vPUmO32Ds,1832
99
120
  parrot/loaders/handlers/__init__.py,sha256=ksEDtUOEJELmyCIi0KNv7tR2fCUyADBVkwCcyqN_sVE,70
100
121
  parrot/loaders/handlers/data.py,sha256=olZ2p-wyUMGoazah7tgHY7V9buGX1FOeJ-cv2vGEoH8,7386
101
122
  parrot/loaders/utils/__init__.py,sha256=SkDyK3MuPGhp0NM6kHvaxQDe97Gcl3n9t5A741OVh1c,28
@@ -111,7 +132,7 @@ parrot/stores/postgres.py,sha256=7mZ4l8EKcTMegWw6ooI9nfIUCdlutMCzJfQ0ULQFh6k,249
111
132
  parrot/stores/qdrant.py,sha256=u07DUoFHWDf-IU5tHbhinhMjPGWFgUbzaBhT_lWrvCA,6003
112
133
  parrot/stores/embeddings/__init__.py,sha256=ZQPpLBhiBx27Q5FhB_v-Vibcq3rHEP7x9GXfn_LGFOc,283
113
134
  parrot/stores/embeddings/abstract.py,sha256=WYP_pEJVSpJpR7pemt_3nzHi_lhwEaG1CEgWwiPE-As,1091
114
- parrot/stores/embeddings/base.py,sha256=uRC3u5DryvtNVlnBsY2umveisfKF-WKxqRSqCcFQYN8,1636
135
+ parrot/stores/embeddings/base.py,sha256=5ZEY7fmjgobTGAMrHS_u-op8_iKm7P-A-HM9tLeHfN8,1921
115
136
  parrot/stores/embeddings/bge.py,sha256=QUqbqCLK0kyyoLtaKWEW8kH47fdjVZnQEgEGnWTZzL8,637
116
137
  parrot/stores/embeddings/fastembed.py,sha256=W1RbogkjqydY9TVB0nMGRBsG0juJc_kqfOwTxzhnNo8,482
117
138
  parrot/stores/embeddings/google.py,sha256=BDUe_FunPkKdywrn-8HLTVHr5Lgi9eFFDojTyE79lLk,595
@@ -120,15 +141,19 @@ parrot/stores/embeddings/ollama.py,sha256=IPo_hpqxj7A9BvtdWYu29oe8JVdkOgOh5geHID
120
141
  parrot/stores/embeddings/openai.py,sha256=IOBUcwauNHe0DQfFDEkDnXgd2XZyl7mmIg1AqMHdZeU,800
121
142
  parrot/stores/embeddings/transformers.py,sha256=ybI5rOiEutNLsR1W3YxDwQTceR1ujO5u6wpQfvsQMow,678
122
143
  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
144
+ parrot/tools/__init__.py,sha256=GzaO0ipTHiyK_qLXA1seKhtZJlNIIlXTHMNoDLaaS0k,894
145
+ parrot/tools/abstract.py,sha256=4uyAczSAeuscpV6PVSJaF6jpzgm1nb54D3sNO76-4aY,2211
125
146
  parrot/tools/asknews.py,sha256=gTps1dVmr6hfzLQcQSQ-C3JT-QYYnM6YmoG-BkuUbcw,1114
126
- parrot/tools/basic.py,sha256=9Ee4vD8VxfC8iZ5OzyZ8eNltYaMYWJ1mRzt2zVv7z6g,1656
147
+ parrot/tools/basic.py,sha256=FFIzzjkJ_a7FUM9N2O4ig1fgXGeyZGl44dAc56neIkM,1581
127
148
  parrot/tools/bby.py,sha256=3cKTReAHGprdwtxoKslpgBXvBxlVLmIH7LX5eFG6jZo,15621
128
149
  parrot/tools/bing.py,sha256=Vfkucm7bytvXKTwCQVpYdI5ycCIS6BmkvDGoeMiOfGI,531
129
- parrot/tools/duck.py,sha256=qmmcQxCuKS72sBC5qPpE71Au9gImEAOo6FjDAR8A46A,1958
150
+ parrot/tools/docx.py,sha256=1w9SNkVACL19HLKaGkFDTBfx2_MrlQ-zqJVK6HSMgZM,13118
151
+ parrot/tools/duck.py,sha256=yH2DUMAwpn8P5d0q4qqaoIPrY8-u6-ikFUKFGRJsiwU,1954
130
152
  parrot/tools/execute.py,sha256=fTMQAsXuUzVyIWmZxL22LrSj2eQ-Rh-ncyUZ9gY-d-A,1687
153
+ parrot/tools/gamma.py,sha256=T0Moo1Gw3wl50M_nT0krMvuShsYaqheg3lQGl8Mba94,850
131
154
  parrot/tools/google.py,sha256=WkaOquUOdVwDHJj8gK0RC_EH-ISKsQiWebFZAZfMOg4,6241
155
+ parrot/tools/gvoice.py,sha256=JiwdrLMLTkHLD4GTKwH6NvPBYTojmNGmYmdeF_E8jkA,12737
156
+ parrot/tools/results.py,sha256=_FEmHbWVQAW6sJwxtpcA3wMx_JSTjBpwiRsg39GtC-c,9812
132
157
  parrot/tools/stack.py,sha256=bVtaEWsZRl9UpHJQ6MNp3uaF90CcViylRy6oXpwBEns,969
133
158
  parrot/tools/weather.py,sha256=4v9Ft5lkVzb9Pg7afNs7BK5T3WEcsZbHPlBrF9oXSo8,2541
134
159
  parrot/tools/wikipedia.py,sha256=lPLc3rCem8xH3-m4YxGesBC6uRtnr0vwcO-OZeypj7Y,2058
@@ -144,8 +169,7 @@ resources/users/handlers.py,sha256=BGzqBvPY_OaIF_nONWX4b_B5OyyBrdGuSihIsdlFwjk,2
144
169
  resources/users/models.py,sha256=glk7Emv7QCi6i32xRFDrGc8UwK23_LPg0XUOJoHnwRU,6799
145
170
  settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
146
171
  settings/settings.py,sha256=9ueEvyLNurUX-AaIeRPV8GKX1c4YjDLbksUAeqEq6Ck,1854
147
- ai_parrot-0.5.15.dist-info/LICENSE,sha256=vRKOoa7onTsLNvSzJtGtMaNhWWh8B3YAT733Tlu6M4o,1070
148
- ai_parrot-0.5.15.dist-info/METADATA,sha256=7hqzqxTP4cdcbaxKzhOFTiAsXkuQK7T4U2DhwyndThk,9716
149
- ai_parrot-0.5.15.dist-info/WHEEL,sha256=lNWVJ6q28SO2kTKDIyc1kQ-4wE2w5snxBQXSv06oiUw,113
150
- ai_parrot-0.5.15.dist-info/top_level.txt,sha256=VCLpdIu_5wkShgIQjK85jFzL9HEVVjAqlQa_gupLekI,17
151
- ai_parrot-0.5.15.dist-info/RECORD,,
172
+ ai_parrot-0.8.1rc0.dist-info/METADATA,sha256=KwOEIcPsojNmOVbP9Q4b7kEs1I4ubh0r16ZCM4fstfE,10681
173
+ ai_parrot-0.8.1rc0.dist-info/WHEEL,sha256=Z86WDsKLEh1rS9eDwCHvs-XjknSypuCoXRhb7G2_Ipw,113
174
+ ai_parrot-0.8.1rc0.dist-info/top_level.txt,sha256=VCLpdIu_5wkShgIQjK85jFzL9HEVVjAqlQa_gupLekI,17
175
+ ai_parrot-0.8.1rc0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (76.0.0)
2
+ Generator: setuptools (80.4.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp311-cp311-manylinux_2_28_x86_64
5
5
 
parrot/__init__.py CHANGED
@@ -5,6 +5,7 @@ Basic Chatbots for Navigator Services.
5
5
  """
6
6
  import os
7
7
  from pathlib import Path
8
+ from navconfig.logging import logging
8
9
  from .version import (
9
10
  __author__,
10
11
  __author_email__,
@@ -13,7 +14,15 @@ from .version import (
13
14
  __version__
14
15
  )
15
16
 
17
+ logging.getLogger('h5py').setLevel(logging.ERROR)
18
+ logging.getLogger('tensorflow').setLevel(logging.ERROR)
19
+ logging.getLogger('matplotlib').setLevel(logging.ERROR)
20
+ logging.getLogger('langchain').setLevel(logging.ERROR)
21
+ logging.getLogger("grpc").setLevel(logging.CRITICAL)
22
+
16
23
  os.environ["USER_AGENT"] = "Parrot.AI/1.0"
24
+ # This environment variable can help prevent some gRPC cleanup issues
25
+ os.environ["GRPC_ENABLE_FORK_SUPPORT"] = "false"
17
26
 
18
27
  def get_project_root() -> Path:
19
28
  return Path(__file__).parent.parent
parrot/bots/__init__.py CHANGED
@@ -1,9 +1,5 @@
1
1
  from .abstract import AbstractBot
2
2
  from .basic import BasicBot
3
3
  from .hrbot import HRAgent
4
-
5
- __all__ = (
6
- 'AbstractBot',
7
- 'BasicBot',
8
- 'HRAgent'
9
- )
4
+ from .data import PandasAgent
5
+ from .notebook import NotebookAgent