python-fastllm 0.0.15__tar.gz → 0.0.16__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 (29) hide show
  1. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/PKG-INFO +2 -2
  2. python_fastllm-0.0.16/fastllm/__init__.py +1 -0
  3. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/pyproject.toml +2 -2
  4. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/python_fastllm.egg-info/PKG-INFO +2 -2
  5. python_fastllm-0.0.16/python_fastllm.egg-info/requires.txt +3 -0
  6. python_fastllm-0.0.15/fastllm/__init__.py +0 -1
  7. python_fastllm-0.0.15/python_fastllm.egg-info/requires.txt +0 -3
  8. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/README.md +0 -0
  9. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/fastllm/_modidx.py +0 -0
  10. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/fastllm/acomplete.py +0 -0
  11. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/fastllm/anthropic.py +0 -0
  12. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/fastllm/chat.py +0 -0
  13. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/fastllm/codex.py +0 -0
  14. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/fastllm/gemini.py +0 -0
  15. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/fastllm/openai_chat.py +0 -0
  16. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/fastllm/openai_responses.py +0 -0
  17. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/fastllm/specs/anthropic.json +0 -0
  18. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/fastllm/specs/anthropic.yml +0 -0
  19. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/fastllm/specs/gemini.json +0 -0
  20. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/fastllm/specs/openai.with-code-samples.json +0 -0
  21. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/fastllm/specs/openai.with-code-samples.yml +0 -0
  22. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/fastllm/specs/spec_manifest.json +0 -0
  23. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/fastllm/streaming.py +0 -0
  24. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/fastllm/types.py +0 -0
  25. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/python_fastllm.egg-info/SOURCES.txt +0 -0
  26. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/python_fastllm.egg-info/dependency_links.txt +0 -0
  27. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/python_fastllm.egg-info/entry_points.txt +0 -0
  28. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/python_fastllm.egg-info/top_level.txt +0 -0
  29. {python_fastllm-0.0.15 → python_fastllm-0.0.16}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-fastllm
3
- Version: 0.0.15
3
+ Version: 0.0.16
4
4
  Author-email: Kerem Turgutlu <keremturgutlu@gmail.com>
5
5
  License: Apache-2.0
6
6
  Project-URL: Repository, https://github.com/AnswerDotAI/fastllm
@@ -9,7 +9,7 @@ Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Programming Language :: Python :: 3 :: Only
10
10
  Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown
12
- Requires-Dist: fastspec
12
+ Requires-Dist: fastspec>=0.0.9
13
13
  Requires-Dist: toolslm
14
14
  Requires-Dist: pillow
15
15
 
@@ -0,0 +1 @@
1
+ __version__ = "0.0.16"
@@ -15,7 +15,7 @@ classifiers = [
15
15
  "Programming Language :: Python :: 3",
16
16
  "Programming Language :: Python :: 3 :: Only",
17
17
  ]
18
- dependencies = ['fastspec', 'toolslm', 'pillow']
18
+ dependencies = ['fastspec>=0.0.9', 'toolslm', 'pillow']
19
19
 
20
20
  [project.urls]
21
21
  Repository = "https://github.com/AnswerDotAI/fastllm"
@@ -36,4 +36,4 @@ fastllm = ["specs/*.yml", "specs/*.json"]
36
36
  allowed_metadata_keys = ['solveit']
37
37
  allowed_cell_metadata_keys = ['solveit_ai']
38
38
  custom_sidebar = false
39
- lib_path = "fastllm"
39
+ lib_path = "fastllm"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-fastllm
3
- Version: 0.0.15
3
+ Version: 0.0.16
4
4
  Author-email: Kerem Turgutlu <keremturgutlu@gmail.com>
5
5
  License: Apache-2.0
6
6
  Project-URL: Repository, https://github.com/AnswerDotAI/fastllm
@@ -9,7 +9,7 @@ Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Programming Language :: Python :: 3 :: Only
10
10
  Requires-Python: >=3.10
11
11
  Description-Content-Type: text/markdown
12
- Requires-Dist: fastspec
12
+ Requires-Dist: fastspec>=0.0.9
13
13
  Requires-Dist: toolslm
14
14
  Requires-Dist: pillow
15
15
 
@@ -0,0 +1,3 @@
1
+ fastspec>=0.0.9
2
+ toolslm
3
+ pillow
@@ -1 +0,0 @@
1
- __version__ = "0.0.15"
@@ -1,3 +0,0 @@
1
- fastspec
2
- toolslm
3
- pillow