SimplerLLM 0.3.5__tar.gz → 0.3.6__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.
Files changed (152) hide show
  1. simplerllm-0.3.6/MANIFEST.in +3 -0
  2. {simplerllm-0.3.5 → simplerllm-0.3.6}/PKG-INFO +5 -2
  3. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM.egg-info/PKG-INFO +5 -2
  4. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM.egg-info/SOURCES.txt +2 -0
  5. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM.egg-info/requires.txt +3 -1
  6. simplerllm-0.3.6/requirements.txt +30 -0
  7. {simplerllm-0.3.5 → simplerllm-0.3.6}/setup.py +6 -1
  8. {simplerllm-0.3.5 → simplerllm-0.3.6}/LICENSE +0 -0
  9. {simplerllm-0.3.5 → simplerllm-0.3.6}/README.md +0 -0
  10. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/__init__.py +0 -0
  11. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/image/__init__.py +0 -0
  12. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/image/generation/__init__.py +0 -0
  13. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/image/generation/base.py +0 -0
  14. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/image/generation/providers/__init__.py +0 -0
  15. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/image/generation/providers/google_image.py +0 -0
  16. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/image/generation/providers/image_response_models.py +0 -0
  17. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/image/generation/providers/openai_image.py +0 -0
  18. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/image/generation/providers/seedream_image.py +0 -0
  19. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/image/generation/providers/stability_image.py +0 -0
  20. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/image/generation/wrappers/__init__.py +0 -0
  21. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/image/generation/wrappers/google_wrapper.py +0 -0
  22. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/image/generation/wrappers/openai_wrapper.py +0 -0
  23. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/image/generation/wrappers/seedream_wrapper.py +0 -0
  24. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/image/generation/wrappers/stability_wrapper.py +0 -0
  25. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/__init__.py +0 -0
  26. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/embeddings/__init__.py +0 -0
  27. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/embeddings/base.py +0 -0
  28. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/embeddings/models.py +0 -0
  29. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/embeddings/providers.py +0 -0
  30. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm/__init__.py +0 -0
  31. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm/base.py +0 -0
  32. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm/reliable.py +0 -0
  33. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm/wrappers/__init__.py +0 -0
  34. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm/wrappers/anthropic_wrapper.py +0 -0
  35. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm/wrappers/cohere_wrapper.py +0 -0
  36. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm/wrappers/deepseek_wrapper.py +0 -0
  37. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm/wrappers/gemini_wrapper.py +0 -0
  38. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm/wrappers/hf_local_wrapper.py +0 -0
  39. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm/wrappers/moonshot_wrapper.py +0 -0
  40. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm/wrappers/ollama_wrapper.py +0 -0
  41. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm/wrappers/openai_wrapper.py +0 -0
  42. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm/wrappers/openrouter_wrapper.py +0 -0
  43. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm/wrappers/perplexity_wrapper.py +0 -0
  44. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_addons/__init__.py +0 -0
  45. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_addons/cost_utils.py +0 -0
  46. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_addons/json_generation.py +0 -0
  47. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_addons/pattern_extraction.py +0 -0
  48. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_brainstorm/__init__.py +0 -0
  49. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_brainstorm/models.py +0 -0
  50. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_brainstorm/recursive_brainstorm.py +0 -0
  51. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_feedback/__init__.py +0 -0
  52. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_feedback/feedback_loop.py +0 -0
  53. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_feedback/models.py +0 -0
  54. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_judge/__init__.py +0 -0
  55. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_judge/judge.py +0 -0
  56. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_judge/models.py +0 -0
  57. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_providers/__init__.py +0 -0
  58. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_providers/anthropic_llm.py +0 -0
  59. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_providers/cohere_llm.py +0 -0
  60. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_providers/deepseek_llm.py +0 -0
  61. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_providers/gemini_llm.py +0 -0
  62. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_providers/hf_local_llm.py +0 -0
  63. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_providers/llm_response_models.py +0 -0
  64. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_providers/moonshot_llm.py +0 -0
  65. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_providers/ollama_llm.py +0 -0
  66. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_providers/openai_llm.py +0 -0
  67. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_providers/openrouter_llm.py +0 -0
  68. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_providers/perplexity_llm.py +0 -0
  69. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_providers/voyage_llm.py +0 -0
  70. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_router/__init__.py +0 -0
  71. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_router/models.py +0 -0
  72. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/language/llm_router/router.py +0 -0
  73. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/prompts/__init__.py +0 -0
  74. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/prompts/hub/__init__.py +0 -0
  75. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/prompts/hub/agentic_prompts.py +0 -0
  76. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/prompts/hub/prompt_manager.py +0 -0
  77. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/prompts/messages_template.py +0 -0
  78. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/prompts/prompt_builder.py +0 -0
  79. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/tools/__init__.py +0 -0
  80. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/tools/apify_api.py +0 -0
  81. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/tools/email_functions.py +0 -0
  82. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/tools/file_functions.py +0 -0
  83. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/tools/file_loader.py +0 -0
  84. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/tools/generic_loader.py +0 -0
  85. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/tools/image_helpers.py +0 -0
  86. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/tools/json_helpers.py +0 -0
  87. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/tools/pandas_func.py +0 -0
  88. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/tools/pattern_helpers.py +0 -0
  89. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/tools/python_func.py +0 -0
  90. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/tools/rapid_api.py +0 -0
  91. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/tools/serp.py +0 -0
  92. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/tools/text_chunker.py +0 -0
  93. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/tools/youtube.py +0 -0
  94. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/utils/__init__.py +0 -0
  95. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/utils/custom_verbose.py +0 -0
  96. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/vectors/__init__.py +0 -0
  97. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/vectors/base.py +0 -0
  98. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/vectors/exceptions.py +0 -0
  99. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/vectors/models.py +0 -0
  100. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/vectors/providers/__init__.py +0 -0
  101. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/vectors/providers/local_provider.py +0 -0
  102. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/vectors/providers/qdrant_provider.py +0 -0
  103. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/vectors/wrappers/__init__.py +0 -0
  104. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/vectors/wrappers/local_wrapper.py +0 -0
  105. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/vectors/wrappers/qdrant_wrapper.py +0 -0
  106. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/voice/__init__.py +0 -0
  107. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/voice/stt/__init__.py +0 -0
  108. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/voice/stt/base.py +0 -0
  109. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/voice/stt/providers/__init__.py +0 -0
  110. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/voice/stt/providers/openai_stt.py +0 -0
  111. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/voice/stt/providers/stt_response_models.py +0 -0
  112. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/voice/stt/wrappers/__init__.py +0 -0
  113. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/voice/stt/wrappers/openai_wrapper.py +0 -0
  114. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/voice/tts/__init__.py +0 -0
  115. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/voice/tts/base.py +0 -0
  116. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/voice/tts/factory.py +0 -0
  117. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/voice/tts/models.py +0 -0
  118. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/voice/tts/providers/__init__.py +0 -0
  119. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/voice/tts/providers/elevenlabs_tts.py +0 -0
  120. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/voice/tts/providers/lahajati_tts.py +0 -0
  121. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM/voice/tts/providers/openai_tts.py +0 -0
  122. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM.egg-info/dependency_links.txt +0 -0
  123. {simplerllm-0.3.5 → simplerllm-0.3.6}/SimplerLLM.egg-info/top_level.txt +0 -0
  124. {simplerllm-0.3.5 → simplerllm-0.3.6}/setup.cfg +0 -0
  125. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/__init__.py +0 -0
  126. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_anthropic.py +0 -0
  127. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_aspect_ratio_debug.py +0 -0
  128. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_brainstorm.py +0 -0
  129. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_cohere.py +0 -0
  130. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_deepseek.py +0 -0
  131. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_embeddings.py +0 -0
  132. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_gemini.py +0 -0
  133. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_google_image.py +0 -0
  134. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_hf_local.py +0 -0
  135. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_hf_mini.py +0 -0
  136. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_judge.py +0 -0
  137. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_lahajati_tts.py +0 -0
  138. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_llm_addons.py +0 -0
  139. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_moonshot.py +0 -0
  140. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_ollama.py +0 -0
  141. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_openai.py +0 -0
  142. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_openai_image.py +0 -0
  143. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_openrouter.py +0 -0
  144. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_perplexity.py +0 -0
  145. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_pydantic_advanced.py +0 -0
  146. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_pydantic_json.py +0 -0
  147. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_reliable.py +0 -0
  148. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_reliable_pydantic.py +0 -0
  149. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_seedream_image.py +0 -0
  150. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_stability_image.py +0 -0
  151. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_tts.py +0 -0
  152. {simplerllm-0.3.5 → simplerllm-0.3.6}/tests/test_vectors.py +0 -0
@@ -0,0 +1,3 @@
1
+ include requirements.txt
2
+ include README.md
3
+ include LICENSE
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: SimplerLLM
3
- Version: 0.3.5
3
+ Version: 0.3.6
4
4
  Summary: An easy-to-use Library for interacting with language models.
5
5
  Home-page: https://github.com/hassancs91/SimplerLLM
6
6
  Author: Hasan Aboul Hasan
@@ -18,6 +18,8 @@ Classifier: Programming Language :: Python :: 3.9
18
18
  Classifier: Programming Language :: Python :: 3.10
19
19
  Classifier: Programming Language :: Python :: 3.11
20
20
  Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Programming Language :: Python :: 3.14
21
23
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
24
  Requires-Python: >=3.6
23
25
  Description-Content-Type: text/markdown
@@ -43,7 +45,6 @@ Requires-Dist: colorama>=0.4
43
45
  Requires-Dist: scipy>=1.15
44
46
  Requires-Dist: tiktoken>=0.9
45
47
  Requires-Dist: qdrant-client==1.14.3
46
- Requires-Dist: voyageai==0.3.3
47
48
  Requires-Dist: pydub>=0.25.1
48
49
  Requires-Dist: elevenlabs>=2.22.0
49
50
  Requires-Dist: moviepy>=1.0.3
@@ -52,6 +53,8 @@ Provides-Extra: transformers
52
53
  Requires-Dist: transformers>=4.36.0; extra == "transformers"
53
54
  Requires-Dist: torch>=2.0.0; extra == "transformers"
54
55
  Requires-Dist: accelerate>=0.25.0; extra == "transformers"
56
+ Provides-Extra: voyage
57
+ Requires-Dist: voyageai>=0.3.3; extra == "voyage"
55
58
  Dynamic: author
56
59
  Dynamic: author-email
57
60
  Dynamic: classifier
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: SimplerLLM
3
- Version: 0.3.5
3
+ Version: 0.3.6
4
4
  Summary: An easy-to-use Library for interacting with language models.
5
5
  Home-page: https://github.com/hassancs91/SimplerLLM
6
6
  Author: Hasan Aboul Hasan
@@ -18,6 +18,8 @@ Classifier: Programming Language :: Python :: 3.9
18
18
  Classifier: Programming Language :: Python :: 3.10
19
19
  Classifier: Programming Language :: Python :: 3.11
20
20
  Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Programming Language :: Python :: 3.14
21
23
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
24
  Requires-Python: >=3.6
23
25
  Description-Content-Type: text/markdown
@@ -43,7 +45,6 @@ Requires-Dist: colorama>=0.4
43
45
  Requires-Dist: scipy>=1.15
44
46
  Requires-Dist: tiktoken>=0.9
45
47
  Requires-Dist: qdrant-client==1.14.3
46
- Requires-Dist: voyageai==0.3.3
47
48
  Requires-Dist: pydub>=0.25.1
48
49
  Requires-Dist: elevenlabs>=2.22.0
49
50
  Requires-Dist: moviepy>=1.0.3
@@ -52,6 +53,8 @@ Provides-Extra: transformers
52
53
  Requires-Dist: transformers>=4.36.0; extra == "transformers"
53
54
  Requires-Dist: torch>=2.0.0; extra == "transformers"
54
55
  Requires-Dist: accelerate>=0.25.0; extra == "transformers"
56
+ Provides-Extra: voyage
57
+ Requires-Dist: voyageai>=0.3.3; extra == "voyage"
55
58
  Dynamic: author
56
59
  Dynamic: author-email
57
60
  Dynamic: classifier
@@ -1,5 +1,7 @@
1
1
  LICENSE
2
+ MANIFEST.in
2
3
  README.md
4
+ requirements.txt
3
5
  setup.py
4
6
  SimplerLLM/__init__.py
5
7
  SimplerLLM.egg-info/PKG-INFO
@@ -19,7 +19,6 @@ colorama>=0.4
19
19
  scipy>=1.15
20
20
  tiktoken>=0.9
21
21
  qdrant-client==1.14.3
22
- voyageai==0.3.3
23
22
  pydub>=0.25.1
24
23
  elevenlabs>=2.22.0
25
24
  moviepy>=1.0.3
@@ -29,3 +28,6 @@ yt-dlp>=2023.3.4
29
28
  transformers>=4.36.0
30
29
  torch>=2.0.0
31
30
  accelerate>=0.25.0
31
+
32
+ [voyage]
33
+ voyageai>=0.3.3
@@ -0,0 +1,30 @@
1
+ aiohttp>=3.9
2
+ anthropic>=0.40.0
3
+ cohere>=5.0
4
+ duckduckgo_search>=5.3
5
+ elevenlabs>=1.0
6
+ lxml_html_clean>=0.1
7
+ newspaper3k>=0.2
8
+ numpy>=1.26
9
+ openai>=1.59
10
+ google-genai>=1.52.0
11
+ Pillow>=10.0
12
+ pydantic>=2.10
13
+ PyPDF2>=3.0
14
+ python-dotenv>=1.0
15
+ python_docx>=1.1
16
+ requests>=2.31
17
+ youtube_transcript_api>=0.6
18
+ colorama>=0.4
19
+ scipy>=1.15
20
+ tiktoken>=0.9
21
+ qdrant-client==1.14.3
22
+ # voyageai is optional - install via: pip install SimplerLLM[voyage]
23
+ # (Not in default install because upstream voyageai currently requires-python <3.14)
24
+ pydub>=0.25.1
25
+ elevenlabs>=2.22.0
26
+ # sounddevice>=0.4.6 # Optional - for live voice features. Requires PortAudio. Install with: pip install SimplerLLM[voice]
27
+ # pynput>=1.7.6 # Optional - for push-to-talk. Install with: pip install SimplerLLM[voice]
28
+ # pygame>=2.5.0 # Optional - only needed for AudioPlayer file playback. Install with: pip install pygame>=2.5.0
29
+ moviepy>=1.0.3
30
+ yt-dlp>=2023.3.4
@@ -15,6 +15,9 @@ extras_require = {
15
15
  "torch>=2.0.0",
16
16
  "accelerate>=0.25.0",
17
17
  ],
18
+ "voyage": [
19
+ "voyageai>=0.3.3",
20
+ ],
18
21
  }
19
22
 
20
23
  # Read the long description from the README file
@@ -23,7 +26,7 @@ with open("README.md", encoding="utf-8") as f:
23
26
 
24
27
  setup(
25
28
  name="SimplerLLM",
26
- version="0.3.5",
29
+ version="0.3.6",
27
30
  author="Hasan Aboul Hasan",
28
31
  author_email="hasan@learnwithhasan.com",
29
32
  description="An easy-to-use Library for interacting with language models.",
@@ -48,6 +51,8 @@ setup(
48
51
  "Programming Language :: Python :: 3.10",
49
52
  "Programming Language :: Python :: 3.11",
50
53
  "Programming Language :: Python :: 3.12",
54
+ "Programming Language :: Python :: 3.13",
55
+ "Programming Language :: Python :: 3.14",
51
56
  "Topic :: Software Development :: Libraries :: Python Modules",
52
57
  ],
53
58
 
File without changes
File without changes
File without changes
File without changes
File without changes