ai-parrot 0.3.18__tar.gz → 0.4.11__tar.gz

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 (251) hide show
  1. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/MANIFEST.in +3 -1
  2. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/PKG-INFO +51 -85
  3. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/ai_parrot.egg-info/SOURCES.txt +33 -97
  4. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/app.py +0 -3
  5. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/__pycache__/conf.cpython-311.pyc +0 -0
  6. ai_parrot-0.4.11/parrot/__pycache__/manager.cpython-311.pyc +0 -0
  7. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/__pycache__/models.cpython-311.pyc +0 -0
  8. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/__pycache__/version.cpython-311.pyc +0 -0
  9. ai_parrot-0.4.11/parrot/bots/__init__.py +13 -0
  10. ai_parrot-0.4.11/parrot/bots/__pycache__/__init__.cpython-311.pyc +0 -0
  11. ai_parrot-0.4.11/parrot/bots/__pycache__/a.cpython-311.pyc +0 -0
  12. ai_parrot-0.4.11/parrot/bots/__pycache__/abstract.cpython-311.pyc +0 -0
  13. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/asktroc.cpython-311.pyc +0 -0
  14. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/base.cpython-311.pyc +0 -0
  15. ai_parrot-0.4.11/parrot/bots/__pycache__/basic.cpython-311.pyc +0 -0
  16. ai_parrot-0.4.11/parrot/bots/__pycache__/chatbot.cpython-311.pyc +0 -0
  17. ai_parrot-0.4.11/parrot/bots/__pycache__/copilot.cpython-311.pyc +0 -0
  18. ai_parrot-0.4.11/parrot/bots/__pycache__/hrbot.cpython-311.pyc +0 -0
  19. ai_parrot-0.4.11/parrot/bots/__pycache__/troc.cpython-311.pyc +0 -0
  20. ai_parrot-0.4.11/parrot/bots/abstract.py +704 -0
  21. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/base.py +1 -0
  22. ai_parrot-0.4.11/parrot/bots/basic.py +9 -0
  23. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/bose.py +1 -1
  24. ai_parrot-0.4.11/parrot/bots/chatbot.py +257 -0
  25. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/cody.py +1 -1
  26. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/copilot.py +15 -14
  27. ai_parrot-0.3.18/parrot/chatbots/hragents.py → ai_parrot-0.4.11/parrot/bots/hrbot.py +1 -1
  28. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/odoo.py +1 -1
  29. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/retrievals/__init__.py +104 -72
  30. ai_parrot-0.4.11/parrot/bots/retrievals/__pycache__/__init__.cpython-311.pyc +0 -0
  31. ai_parrot-0.3.18/parrot/chatbots/asktroc.py → ai_parrot-0.4.11/parrot/bots/troc.py +1 -1
  32. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/conf.py +0 -1
  33. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/exceptions.cpython-311-x86_64-linux-gnu.so +0 -0
  34. ai_parrot-0.4.11/parrot/llms/__pycache__/vertex.cpython-311.pyc +0 -0
  35. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/vertex.py +3 -2
  36. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/manager.py +38 -35
  37. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/models.py +4 -1
  38. ai_parrot-0.4.11/parrot/stores/__pycache__/abstract.cpython-311.pyc +0 -0
  39. ai_parrot-0.4.11/parrot/stores/__pycache__/milvus.cpython-311.pyc +0 -0
  40. ai_parrot-0.4.11/parrot/stores/__pycache__/qdrant.cpython-311.pyc +0 -0
  41. ai_parrot-0.4.11/parrot/stores/abstract.py +163 -0
  42. ai_parrot-0.4.11/parrot/stores/milvus.py +326 -0
  43. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/stores/qdrant.py +27 -70
  44. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__init__.py +1 -1
  45. ai_parrot-0.4.11/parrot/tools/__pycache__/__init__.cpython-311.pyc +0 -0
  46. ai_parrot-0.4.11/parrot/tools/__pycache__/execute.cpython-311.pyc +0 -0
  47. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/parsers/toml.cpython-311-x86_64-linux-gnu.so +0 -0
  48. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/types.cpython-311-x86_64-linux-gnu.so +0 -0
  49. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/version.py +2 -2
  50. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/setup.py +54 -85
  51. ai_parrot-0.3.18/parrot/__pycache__/manager.cpython-311.pyc +0 -0
  52. ai_parrot-0.3.18/parrot/chatbots/__init__.py +0 -7
  53. ai_parrot-0.3.18/parrot/chatbots/__pycache__/__init__.cpython-311.pyc +0 -0
  54. ai_parrot-0.3.18/parrot/chatbots/__pycache__/abstract.cpython-311.pyc +0 -0
  55. ai_parrot-0.3.18/parrot/chatbots/__pycache__/basic.cpython-311.pyc +0 -0
  56. ai_parrot-0.3.18/parrot/chatbots/__pycache__/copilot.cpython-311.pyc +0 -0
  57. ai_parrot-0.3.18/parrot/chatbots/abstract.py +0 -728
  58. ai_parrot-0.3.18/parrot/chatbots/basic.py +0 -9
  59. ai_parrot-0.3.18/parrot/chatbots/retrievals/__pycache__/__init__.cpython-311.pyc +0 -0
  60. ai_parrot-0.3.18/parrot/llms/__pycache__/vertex.cpython-311.pyc +0 -0
  61. ai_parrot-0.3.18/parrot/loaders/__init__.py +0 -0
  62. ai_parrot-0.3.18/parrot/loaders/__pycache__/__init__.cpython-311.pyc +0 -0
  63. ai_parrot-0.3.18/parrot/loaders/__pycache__/abstract.cpython-311.pyc +0 -0
  64. ai_parrot-0.3.18/parrot/loaders/__pycache__/basepdf.cpython-311.pyc +0 -0
  65. ai_parrot-0.3.18/parrot/loaders/__pycache__/basevideo.cpython-311.pyc +0 -0
  66. ai_parrot-0.3.18/parrot/loaders/__pycache__/dir.cpython-311.pyc +0 -0
  67. ai_parrot-0.3.18/parrot/loaders/__pycache__/excel.cpython-311.pyc +0 -0
  68. ai_parrot-0.3.18/parrot/loaders/__pycache__/github.cpython-311.pyc +0 -0
  69. ai_parrot-0.3.18/parrot/loaders/__pycache__/image.cpython-311.pyc +0 -0
  70. ai_parrot-0.3.18/parrot/loaders/__pycache__/json.cpython-311.pyc +0 -0
  71. ai_parrot-0.3.18/parrot/loaders/__pycache__/pdf.cpython-311.pyc +0 -0
  72. ai_parrot-0.3.18/parrot/loaders/__pycache__/pdfchapters.cpython-311.pyc +0 -0
  73. ai_parrot-0.3.18/parrot/loaders/__pycache__/pdffn.cpython-311.pyc +0 -0
  74. ai_parrot-0.3.18/parrot/loaders/__pycache__/pdfimages.cpython-311.pyc +0 -0
  75. ai_parrot-0.3.18/parrot/loaders/__pycache__/pdfmark.cpython-311.pyc +0 -0
  76. ai_parrot-0.3.18/parrot/loaders/__pycache__/pdftables.cpython-311.pyc +0 -0
  77. ai_parrot-0.3.18/parrot/loaders/__pycache__/ppt.cpython-311.pyc +0 -0
  78. ai_parrot-0.3.18/parrot/loaders/__pycache__/qa.cpython-311.pyc +0 -0
  79. ai_parrot-0.3.18/parrot/loaders/__pycache__/repo.cpython-311.pyc +0 -0
  80. ai_parrot-0.3.18/parrot/loaders/__pycache__/rtd.cpython-311.pyc +0 -0
  81. ai_parrot-0.3.18/parrot/loaders/__pycache__/tables.cpython-311.pyc +0 -0
  82. ai_parrot-0.3.18/parrot/loaders/__pycache__/txt.cpython-311.pyc +0 -0
  83. ai_parrot-0.3.18/parrot/loaders/__pycache__/video.cpython-311.pyc +0 -0
  84. ai_parrot-0.3.18/parrot/loaders/__pycache__/videolocal.cpython-311.pyc +0 -0
  85. ai_parrot-0.3.18/parrot/loaders/__pycache__/vimeo.cpython-311.pyc +0 -0
  86. ai_parrot-0.3.18/parrot/loaders/__pycache__/web.cpython-311.pyc +0 -0
  87. ai_parrot-0.3.18/parrot/loaders/__pycache__/web_base.cpython-311.pyc +0 -0
  88. ai_parrot-0.3.18/parrot/loaders/__pycache__/word.cpython-311.pyc +0 -0
  89. ai_parrot-0.3.18/parrot/loaders/__pycache__/youtube.cpython-311.pyc +0 -0
  90. ai_parrot-0.3.18/parrot/loaders/abstract.py +0 -499
  91. ai_parrot-0.3.18/parrot/loaders/audio.py +0 -106
  92. ai_parrot-0.3.18/parrot/loaders/basepdf.py +0 -102
  93. ai_parrot-0.3.18/parrot/loaders/basevideo.py +0 -325
  94. ai_parrot-0.3.18/parrot/loaders/csv.py +0 -42
  95. ai_parrot-0.3.18/parrot/loaders/dir.py +0 -37
  96. ai_parrot-0.3.18/parrot/loaders/excel.py +0 -349
  97. ai_parrot-0.3.18/parrot/loaders/github.py +0 -65
  98. ai_parrot-0.3.18/parrot/loaders/handlers/__init__.py +0 -5
  99. ai_parrot-0.3.18/parrot/loaders/handlers/__pycache__/__init__.cpython-311.pyc +0 -0
  100. ai_parrot-0.3.18/parrot/loaders/handlers/__pycache__/data.cpython-311.pyc +0 -0
  101. ai_parrot-0.3.18/parrot/loaders/handlers/data.py +0 -213
  102. ai_parrot-0.3.18/parrot/loaders/image.py +0 -119
  103. ai_parrot-0.3.18/parrot/loaders/json.py +0 -52
  104. ai_parrot-0.3.18/parrot/loaders/pdf.py +0 -511
  105. ai_parrot-0.3.18/parrot/loaders/pdfchapters.py +0 -142
  106. ai_parrot-0.3.18/parrot/loaders/pdffn.py +0 -112
  107. ai_parrot-0.3.18/parrot/loaders/pdfimages.py +0 -207
  108. ai_parrot-0.3.18/parrot/loaders/pdfmark.py +0 -88
  109. ai_parrot-0.3.18/parrot/loaders/pdftables.py +0 -145
  110. ai_parrot-0.3.18/parrot/loaders/ppt.py +0 -30
  111. ai_parrot-0.3.18/parrot/loaders/qa.py +0 -81
  112. ai_parrot-0.3.18/parrot/loaders/repo.py +0 -103
  113. ai_parrot-0.3.18/parrot/loaders/rtd.py +0 -65
  114. ai_parrot-0.3.18/parrot/loaders/txt.py +0 -92
  115. ai_parrot-0.3.18/parrot/loaders/utils/__init__.py +0 -1
  116. ai_parrot-0.3.18/parrot/loaders/utils/__pycache__/__init__.cpython-311.pyc +0 -0
  117. ai_parrot-0.3.18/parrot/loaders/utils/__pycache__/models.cpython-311.pyc +0 -0
  118. ai_parrot-0.3.18/parrot/loaders/utils/models.py +0 -25
  119. ai_parrot-0.3.18/parrot/loaders/video.py +0 -96
  120. ai_parrot-0.3.18/parrot/loaders/videolocal.py +0 -259
  121. ai_parrot-0.3.18/parrot/loaders/vimeo.py +0 -106
  122. ai_parrot-0.3.18/parrot/loaders/web.py +0 -216
  123. ai_parrot-0.3.18/parrot/loaders/web_base.py +0 -112
  124. ai_parrot-0.3.18/parrot/loaders/word.py +0 -125
  125. ai_parrot-0.3.18/parrot/loaders/youtube.py +0 -241
  126. ai_parrot-0.3.18/parrot/stores/__pycache__/abstract.cpython-311.pyc +0 -0
  127. ai_parrot-0.3.18/parrot/stores/__pycache__/milvus.cpython-311.pyc +0 -0
  128. ai_parrot-0.3.18/parrot/stores/__pycache__/qdrant.cpython-311.pyc +0 -0
  129. ai_parrot-0.3.18/parrot/stores/abstract.py +0 -171
  130. ai_parrot-0.3.18/parrot/stores/milvus.py +0 -636
  131. ai_parrot-0.3.18/parrot/tools/__pycache__/__init__.cpython-311.pyc +0 -0
  132. ai_parrot-0.3.18/parrot/tools/__pycache__/execute.cpython-311.pyc +0 -0
  133. ai_parrot-0.3.18/settings/__init__.py +0 -0
  134. ai_parrot-0.3.18/settings/settings.py +0 -51
  135. ai_parrot-0.3.18/templates/.compiled +0 -0
  136. ai_parrot-0.3.18/templates/README.md +0 -1
  137. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/.flake8 +0 -0
  138. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/.github/dependabot.yml +0 -0
  139. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/.github/workflows/codeql-analysis.yml +0 -0
  140. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/.github/workflows/release.yml +0 -0
  141. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/.gitignore +0 -0
  142. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/.isort.cfg +0 -0
  143. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/.pylintrc +0 -0
  144. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/INSTALL +0 -0
  145. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/LICENSE +0 -0
  146. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/Makefile +0 -0
  147. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/README.md +0 -0
  148. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/SECURITY.md +0 -0
  149. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/mypy.ini +0 -0
  150. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/__init__.py +0 -0
  151. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/__pycache__/__init__.cpython-311.pyc +0 -0
  152. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/askbrett.cpython-311.pyc +0 -0
  153. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/bose.cpython-311.pyc +0 -0
  154. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/cody.cpython-311.pyc +0 -0
  155. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/dataframe.cpython-311.pyc +0 -0
  156. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/hragents.cpython-311.pyc +0 -0
  157. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/oddie.cpython-311.pyc +0 -0
  158. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/__pycache__/odoo.cpython-311.pyc +0 -0
  159. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/dataframe.py +0 -0
  160. {ai_parrot-0.3.18/parrot/chatbots → ai_parrot-0.4.11/parrot/bots}/retrievals/constitutional.py +0 -0
  161. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/__init__.py +0 -0
  162. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/__pycache__/__init__.cpython-311.pyc +0 -0
  163. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__init__.py +0 -0
  164. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/__init__.cpython-311.pyc +0 -0
  165. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/bing.cpython-311.pyc +0 -0
  166. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/config.cpython-311.pyc +0 -0
  167. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/duckgo.cpython-311.pyc +0 -0
  168. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/file.cpython-311.pyc +0 -0
  169. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/google.cpython-311.pyc +0 -0
  170. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/md2pdf.cpython-311.pyc +0 -0
  171. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/rag.cpython-311.pyc +0 -0
  172. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/url.cpython-311.pyc +0 -0
  173. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/__pycache__/weather.cpython-311.pyc +0 -0
  174. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/bing.py +0 -0
  175. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/config.py +0 -0
  176. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/duckgo.py +0 -0
  177. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/file.py +0 -0
  178. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/google.py +0 -0
  179. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/gtrends.py +0 -0
  180. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/md2pdf.py +0 -0
  181. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/rag.py +0 -0
  182. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/search.py +0 -0
  183. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/crew/tools/url.py +0 -0
  184. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/exceptions.c +0 -0
  185. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/exceptions.pyx +0 -0
  186. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/handlers/__init__.py +0 -0
  187. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/handlers/__pycache__/__init__.cpython-311.pyc +0 -0
  188. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/handlers/__pycache__/bots.cpython-311.pyc +0 -0
  189. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/handlers/__pycache__/chat.cpython-311.pyc +0 -0
  190. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/handlers/bots.py +0 -0
  191. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/handlers/chat.py +0 -0
  192. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/interfaces/__init__.py +0 -0
  193. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/interfaces/__pycache__/__init__.cpython-311.pyc +0 -0
  194. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/interfaces/__pycache__/database.cpython-311.pyc +0 -0
  195. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/interfaces/database.py +0 -0
  196. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__init__.py +0 -0
  197. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__pycache__/__init__.cpython-311.pyc +0 -0
  198. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__pycache__/abstract.cpython-311.pyc +0 -0
  199. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__pycache__/anthropic.cpython-311.pyc +0 -0
  200. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__pycache__/google.cpython-311.pyc +0 -0
  201. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__pycache__/groq.cpython-311.pyc +0 -0
  202. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__pycache__/hf.cpython-311.pyc +0 -0
  203. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__pycache__/openai.cpython-311.pyc +0 -0
  204. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/__pycache__/pipes.cpython-311.pyc +0 -0
  205. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/abstract.py +0 -0
  206. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/anthropic.py +0 -0
  207. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/google.py +0 -0
  208. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/groq.py +0 -0
  209. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/hf.py +0 -0
  210. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/openai.py +0 -0
  211. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/llms/pipes.py +0 -0
  212. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/py.typed +0 -0
  213. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/stores/__init__.py +0 -0
  214. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/stores/__pycache__/__init__.cpython-311.pyc +0 -0
  215. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/stores/__pycache__/base.cpython-311.pyc +0 -0
  216. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/abstract.cpython-311.pyc +0 -0
  217. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/asknews.cpython-311.pyc +0 -0
  218. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/bing.cpython-311.pyc +0 -0
  219. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/duck.cpython-311.pyc +0 -0
  220. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/google.cpython-311.pyc +0 -0
  221. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/stack.cpython-311.pyc +0 -0
  222. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/weather.cpython-311.pyc +0 -0
  223. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/wikipedia.cpython-311.pyc +0 -0
  224. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/__pycache__/zipcode.cpython-311.pyc +0 -0
  225. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/abstract.py +0 -0
  226. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/asknews.py +0 -0
  227. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/bing.py +0 -0
  228. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/duck.py +0 -0
  229. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/execute.py +0 -0
  230. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/google.py +0 -0
  231. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/stack.py +0 -0
  232. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/weather.py +0 -0
  233. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/wikipedia.py +0 -0
  234. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/tools/zipcode.py +0 -0
  235. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/__init__.py +0 -0
  236. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/__pycache__/__init__.cpython-311.pyc +0 -0
  237. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/__pycache__/toml.cpython-311.pyc +0 -0
  238. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/parsers/__init__.py +0 -0
  239. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/parsers/__pycache__/__init__.cpython-311.pyc +0 -0
  240. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/parsers/toml.c +0 -0
  241. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/parsers/toml.pyx +0 -0
  242. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/toml.py +0 -0
  243. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/types.cpp +0 -0
  244. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/types.pyx +0 -0
  245. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/parrot/utils/uv.py +0 -0
  246. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/pyproject.toml +0 -0
  247. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/pytest.ini +0 -0
  248. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/requirements/requirements-dev.txt +0 -0
  249. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/run.py +0 -0
  250. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/setup.cfg +0 -0
  251. {ai_parrot-0.3.18 → ai_parrot-0.4.11}/tox.ini +0 -0
@@ -11,7 +11,9 @@ prune etc
11
11
  prune env
12
12
  prune resources
13
13
  prune dist
14
-
14
+ prune settings
15
+ prune templates
16
+ prune static
15
17
 
16
18
  # Optionally, you can also specify any other unwanted directories
17
19
  prune tests
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
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.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,92 +30,56 @@ 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.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
40
  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
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
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
- 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: basic-loaders
84
- Requires-Dist: youtube-transcript-api==0.6.2; extra == "basic-loaders"
85
- Requires-Dist: pymupdf==1.24.4; extra == "basic-loaders"
86
- Requires-Dist: pymupdf4llm==0.0.1; extra == "basic-loaders"
87
- Requires-Dist: pdf4llm==0.0.6; extra == "basic-loaders"
88
- Requires-Dist: pytube==15.0.0; extra == "basic-loaders"
89
- Requires-Dist: pydub==0.25.1; extra == "basic-loaders"
90
- Requires-Dist: markdownify==0.12.1; extra == "basic-loaders"
91
- Requires-Dist: yt_dlp==2024.4.9; extra == "basic-loaders"
92
- Requires-Dist: moviepy==1.0.3; extra == "basic-loaders"
93
- Requires-Dist: rapidocr-onnxruntime==1.3.15; extra == "basic-loaders"
94
- Requires-Dist: pytesseract==0.3.10; extra == "basic-loaders"
95
- Requires-Dist: python-docx==1.1.0; extra == "basic-loaders"
96
- Requires-Dist: python-pptx==0.6.23; extra == "basic-loaders"
97
- Requires-Dist: docx2txt==0.8; extra == "basic-loaders"
98
- Requires-Dist: mammoth==1.7.1; extra == "basic-loaders"
99
- Provides-Extra: loaders
100
- Requires-Dist: unstructured==0.14.3; extra == "loaders"
101
- Requires-Dist: unstructured-client==0.18.0; extra == "loaders"
102
- Requires-Dist: PyPDF2==3.0.1; extra == "loaders"
103
- Requires-Dist: pdfminer.six==20231228; extra == "loaders"
104
- Requires-Dist: pdfplumber==0.11.0; extra == "loaders"
105
- Requires-Dist: GitPython==3.1.42; extra == "loaders"
106
- Requires-Dist: opentelemetry-sdk==1.24.0; extra == "loaders"
107
- Requires-Dist: paddlepaddle==2.6.1; extra == "loaders"
108
- Requires-Dist: paddlepaddle_gpu==2.6.1; extra == "loaders"
109
- Requires-Dist: paddleocr==2.8.1; extra == "loaders"
110
- Requires-Dist: ftfy==6.2.3; extra == "loaders"
111
- Requires-Dist: librosa==0.10.1; extra == "loaders"
112
- Requires-Dist: XlsxWriter==3.2.0; extra == "loaders"
113
- Requires-Dist: timm==1.0.9; extra == "loaders"
114
- Requires-Dist: simsimd==4.3.1; extra == "loaders"
115
- Requires-Dist: opencv-python==4.10.0.84; extra == "loaders"
116
- Requires-Dist: easyocr==1.7.1; extra == "loaders"
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"
117
81
  Provides-Extra: anthropic
118
- Requires-Dist: langchain-anthropic==0.1.11; extra == "anthropic"
82
+ Requires-Dist: langchain-anthropic==0.2.4; extra == "anthropic"
119
83
  Requires-Dist: anthropic==0.25.2; extra == "anthropic"
120
84
  Provides-Extra: openai
121
85
  Requires-Dist: langchain-openai==0.1.21; extra == "openai"
@@ -123,20 +87,22 @@ Requires-Dist: openai==1.40.3; extra == "openai"
123
87
  Requires-Dist: llama-index-llms-openai==0.1.11; extra == "openai"
124
88
  Requires-Dist: tiktoken==0.7.0; extra == "openai"
125
89
  Provides-Extra: google
126
- Requires-Dist: langchain-google-vertexai==1.0.10; extra == "google"
127
- Requires-Dist: langchain-google-genai==1.0.10; extra == "google"
128
- Requires-Dist: vertexai==1.65.0; 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"
129
95
  Provides-Extra: hunggingfaces
130
96
  Requires-Dist: llama-index-llms-huggingface==0.2.7; extra == "hunggingfaces"
131
97
  Provides-Extra: groq
132
98
  Requires-Dist: groq==0.11.0; extra == "groq"
133
- Requires-Dist: langchain-groq==0.1.9; extra == "groq"
99
+ Requires-Dist: langchain-groq==0.2.0; extra == "groq"
134
100
  Provides-Extra: qdrant
135
- Requires-Dist: qdrant-client==1.8.0; extra == "qdrant"
101
+ Requires-Dist: qdrant-client==1.12.1; extra == "qdrant"
136
102
  Provides-Extra: milvus
137
- Requires-Dist: langchain-milvus>=0.1.4; extra == "milvus"
103
+ Requires-Dist: langchain-milvus>=0.1.6; extra == "milvus"
104
+ Requires-Dist: pymilvus==2.4.8; extra == "milvus"
138
105
  Requires-Dist: milvus==2.3.5; extra == "milvus"
139
- Requires-Dist: pymilvus==2.4.6; extra == "milvus"
140
106
  Provides-Extra: crew
141
107
  Requires-Dist: colbert-ai==0.2.19; extra == "crew"
142
108
  Requires-Dist: vanna==0.3.4; extra == "crew"
@@ -32,33 +32,38 @@ parrot/__pycache__/conf.cpython-311.pyc
32
32
  parrot/__pycache__/manager.cpython-311.pyc
33
33
  parrot/__pycache__/models.cpython-311.pyc
34
34
  parrot/__pycache__/version.cpython-311.pyc
35
- parrot/chatbots/__init__.py
36
- parrot/chatbots/abstract.py
37
- parrot/chatbots/asktroc.py
38
- parrot/chatbots/base.py
39
- parrot/chatbots/basic.py
40
- parrot/chatbots/bose.py
41
- parrot/chatbots/cody.py
42
- parrot/chatbots/copilot.py
43
- parrot/chatbots/dataframe.py
44
- parrot/chatbots/hragents.py
45
- parrot/chatbots/odoo.py
46
- parrot/chatbots/__pycache__/__init__.cpython-311.pyc
47
- parrot/chatbots/__pycache__/abstract.cpython-311.pyc
48
- parrot/chatbots/__pycache__/askbrett.cpython-311.pyc
49
- parrot/chatbots/__pycache__/asktroc.cpython-311.pyc
50
- parrot/chatbots/__pycache__/base.cpython-311.pyc
51
- parrot/chatbots/__pycache__/basic.cpython-311.pyc
52
- parrot/chatbots/__pycache__/bose.cpython-311.pyc
53
- parrot/chatbots/__pycache__/cody.cpython-311.pyc
54
- parrot/chatbots/__pycache__/copilot.cpython-311.pyc
55
- parrot/chatbots/__pycache__/dataframe.cpython-311.pyc
56
- parrot/chatbots/__pycache__/hragents.cpython-311.pyc
57
- parrot/chatbots/__pycache__/oddie.cpython-311.pyc
58
- parrot/chatbots/__pycache__/odoo.cpython-311.pyc
59
- parrot/chatbots/retrievals/__init__.py
60
- parrot/chatbots/retrievals/constitutional.py
61
- parrot/chatbots/retrievals/__pycache__/__init__.cpython-311.pyc
35
+ parrot/bots/__init__.py
36
+ parrot/bots/abstract.py
37
+ parrot/bots/base.py
38
+ parrot/bots/basic.py
39
+ parrot/bots/bose.py
40
+ parrot/bots/chatbot.py
41
+ parrot/bots/cody.py
42
+ parrot/bots/copilot.py
43
+ parrot/bots/dataframe.py
44
+ parrot/bots/hrbot.py
45
+ parrot/bots/odoo.py
46
+ parrot/bots/troc.py
47
+ parrot/bots/__pycache__/__init__.cpython-311.pyc
48
+ parrot/bots/__pycache__/a.cpython-311.pyc
49
+ parrot/bots/__pycache__/abstract.cpython-311.pyc
50
+ parrot/bots/__pycache__/askbrett.cpython-311.pyc
51
+ parrot/bots/__pycache__/asktroc.cpython-311.pyc
52
+ parrot/bots/__pycache__/base.cpython-311.pyc
53
+ parrot/bots/__pycache__/basic.cpython-311.pyc
54
+ parrot/bots/__pycache__/bose.cpython-311.pyc
55
+ parrot/bots/__pycache__/chatbot.cpython-311.pyc
56
+ parrot/bots/__pycache__/cody.cpython-311.pyc
57
+ parrot/bots/__pycache__/copilot.cpython-311.pyc
58
+ parrot/bots/__pycache__/dataframe.cpython-311.pyc
59
+ parrot/bots/__pycache__/hragents.cpython-311.pyc
60
+ parrot/bots/__pycache__/hrbot.cpython-311.pyc
61
+ parrot/bots/__pycache__/oddie.cpython-311.pyc
62
+ parrot/bots/__pycache__/odoo.cpython-311.pyc
63
+ parrot/bots/__pycache__/troc.cpython-311.pyc
64
+ parrot/bots/retrievals/__init__.py
65
+ parrot/bots/retrievals/constitutional.py
66
+ parrot/bots/retrievals/__pycache__/__init__.cpython-311.pyc
62
67
  parrot/crew/__init__.py
63
68
  parrot/crew/__pycache__/__init__.cpython-311.pyc
64
69
  parrot/crew/tools/__init__.py
@@ -110,71 +115,6 @@ parrot/llms/__pycache__/hf.cpython-311.pyc
110
115
  parrot/llms/__pycache__/openai.cpython-311.pyc
111
116
  parrot/llms/__pycache__/pipes.cpython-311.pyc
112
117
  parrot/llms/__pycache__/vertex.cpython-311.pyc
113
- parrot/loaders/__init__.py
114
- parrot/loaders/abstract.py
115
- parrot/loaders/audio.py
116
- parrot/loaders/basepdf.py
117
- parrot/loaders/basevideo.py
118
- parrot/loaders/csv.py
119
- parrot/loaders/dir.py
120
- parrot/loaders/excel.py
121
- parrot/loaders/github.py
122
- parrot/loaders/image.py
123
- parrot/loaders/json.py
124
- parrot/loaders/pdf.py
125
- parrot/loaders/pdfchapters.py
126
- parrot/loaders/pdffn.py
127
- parrot/loaders/pdfimages.py
128
- parrot/loaders/pdfmark.py
129
- parrot/loaders/pdftables.py
130
- parrot/loaders/ppt.py
131
- parrot/loaders/qa.py
132
- parrot/loaders/repo.py
133
- parrot/loaders/rtd.py
134
- parrot/loaders/txt.py
135
- parrot/loaders/video.py
136
- parrot/loaders/videolocal.py
137
- parrot/loaders/vimeo.py
138
- parrot/loaders/web.py
139
- parrot/loaders/web_base.py
140
- parrot/loaders/word.py
141
- parrot/loaders/youtube.py
142
- parrot/loaders/__pycache__/__init__.cpython-311.pyc
143
- parrot/loaders/__pycache__/abstract.cpython-311.pyc
144
- parrot/loaders/__pycache__/basepdf.cpython-311.pyc
145
- parrot/loaders/__pycache__/basevideo.cpython-311.pyc
146
- parrot/loaders/__pycache__/dir.cpython-311.pyc
147
- parrot/loaders/__pycache__/excel.cpython-311.pyc
148
- parrot/loaders/__pycache__/github.cpython-311.pyc
149
- parrot/loaders/__pycache__/image.cpython-311.pyc
150
- parrot/loaders/__pycache__/json.cpython-311.pyc
151
- parrot/loaders/__pycache__/pdf.cpython-311.pyc
152
- parrot/loaders/__pycache__/pdfchapters.cpython-311.pyc
153
- parrot/loaders/__pycache__/pdffn.cpython-311.pyc
154
- parrot/loaders/__pycache__/pdfimages.cpython-311.pyc
155
- parrot/loaders/__pycache__/pdfmark.cpython-311.pyc
156
- parrot/loaders/__pycache__/pdftables.cpython-311.pyc
157
- parrot/loaders/__pycache__/ppt.cpython-311.pyc
158
- parrot/loaders/__pycache__/qa.cpython-311.pyc
159
- parrot/loaders/__pycache__/repo.cpython-311.pyc
160
- parrot/loaders/__pycache__/rtd.cpython-311.pyc
161
- parrot/loaders/__pycache__/tables.cpython-311.pyc
162
- parrot/loaders/__pycache__/txt.cpython-311.pyc
163
- parrot/loaders/__pycache__/video.cpython-311.pyc
164
- parrot/loaders/__pycache__/videolocal.cpython-311.pyc
165
- parrot/loaders/__pycache__/vimeo.cpython-311.pyc
166
- parrot/loaders/__pycache__/web.cpython-311.pyc
167
- parrot/loaders/__pycache__/web_base.cpython-311.pyc
168
- parrot/loaders/__pycache__/word.cpython-311.pyc
169
- parrot/loaders/__pycache__/youtube.cpython-311.pyc
170
- parrot/loaders/handlers/__init__.py
171
- parrot/loaders/handlers/data.py
172
- parrot/loaders/handlers/__pycache__/__init__.cpython-311.pyc
173
- parrot/loaders/handlers/__pycache__/data.cpython-311.pyc
174
- parrot/loaders/utils/__init__.py
175
- parrot/loaders/utils/models.py
176
- parrot/loaders/utils/__pycache__/__init__.cpython-311.pyc
177
- parrot/loaders/utils/__pycache__/models.cpython-311.pyc
178
118
  parrot/stores/__init__.py
179
119
  parrot/stores/abstract.py
180
120
  parrot/stores/milvus.py
@@ -219,8 +159,4 @@ parrot/utils/parsers/toml.c
219
159
  parrot/utils/parsers/toml.cpython-311-x86_64-linux-gnu.so
220
160
  parrot/utils/parsers/toml.pyx
221
161
  parrot/utils/parsers/__pycache__/__init__.cpython-311.pyc
222
- requirements/requirements-dev.txt
223
- settings/__init__.py
224
- settings/settings.py
225
- templates/.compiled
226
- templates/README.md
162
+ requirements/requirements-dev.txt
@@ -3,7 +3,6 @@ from navigator.handlers.types import AppHandler
3
3
  from navigator.background import BackgroundQueue
4
4
  from navigator_auth import AuthHandler
5
5
  from parrot.manager import ChatbotManager
6
- # from parrot.loaders.handlers import DataManagement
7
6
  from parrot.conf import STATIC_DIR
8
7
  from parrot.handlers.bots import (
9
8
  FeedbackTypeHandler,
@@ -52,8 +51,6 @@ class Main(AppHandler):
52
51
  '/api/v1/chatbots/questions/{sid}',
53
52
  ChatbotSharingQuestion
54
53
  )
55
- # Management APIs:
56
- # DataManagement.configure(self.app)
57
54
 
58
55
 
59
56
  async def on_prepare(self, request, response):
@@ -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
+ )