python-fastllm 0.0.26__tar.gz → 0.0.27__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 (28) hide show
  1. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/PKG-INFO +1 -1
  2. python_fastllm-0.0.27/fastllm/__init__.py +1 -0
  3. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/fastllm/types.py +2 -2
  4. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/python_fastllm.egg-info/PKG-INFO +1 -1
  5. python_fastllm-0.0.26/fastllm/__init__.py +0 -1
  6. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/README.md +0 -0
  7. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/fastllm/_modidx.py +0 -0
  8. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/fastllm/acomplete.py +0 -0
  9. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/fastllm/anthropic.py +0 -0
  10. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/fastllm/chat.py +0 -0
  11. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/fastllm/codex.py +0 -0
  12. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/fastllm/gemini.py +0 -0
  13. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/fastllm/openai_chat.py +0 -0
  14. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/fastllm/openai_responses.py +0 -0
  15. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/fastllm/specs/anthropic.json +0 -0
  16. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/fastllm/specs/anthropic.yml +0 -0
  17. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/fastllm/specs/gemini.json +0 -0
  18. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/fastllm/specs/openai.with-code-samples.json +0 -0
  19. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/fastllm/specs/openai.with-code-samples.yml +0 -0
  20. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/fastllm/specs/spec_manifest.json +0 -0
  21. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/fastllm/streaming.py +0 -0
  22. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/pyproject.toml +0 -0
  23. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/python_fastllm.egg-info/SOURCES.txt +0 -0
  24. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/python_fastllm.egg-info/dependency_links.txt +0 -0
  25. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/python_fastllm.egg-info/entry_points.txt +0 -0
  26. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/python_fastllm.egg-info/requires.txt +0 -0
  27. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/python_fastllm.egg-info/top_level.txt +0 -0
  28. {python_fastllm-0.0.26 → python_fastllm-0.0.27}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-fastllm
3
- Version: 0.0.26
3
+ Version: 0.0.27
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
@@ -0,0 +1 @@
1
+ __version__ = "0.0.27"
@@ -344,7 +344,7 @@ register_model_info('gemini-3.5-flash', vendor_name='gemini', base='gemini-3-fla
344
344
  output_cost_per_reasoning_token=9e-6, cache_read_input_token_cost=1.5e-7)
345
345
 
346
346
  for model in ('gpt-5.4', 'gpt-5.4-mini'):
347
- register_model_info(model, vendor_name='openai', base=model, supports_web_search=True, mode=None)
347
+ register_model_info(model, vendor_name='openai', base=model, supports_web_search=True, mode=None, max_input_tokens=250000)
348
348
 
349
349
  for model in ('kimi-k2.5', 'kimi-k2.6'):
350
350
  register_model_info(model, vendor_name='moonshot', base=f'moonshot/{model}', base_vendor_name=None,
@@ -404,7 +404,7 @@ register_model_info(codex53spark, 'codex', **codex_pricing,
404
404
  max_tokens=128000, max_input_tokens=128000, max_output_tokens=128000)
405
405
 
406
406
  # %% ../nbs/00_types.ipynb #5d3e4720
407
- for model in (haik45, sonn45, sonn46, opus46, opus):
407
+ for model in (haik45, sonn45, sonn46, sonn5, opus46, opus):
408
408
  register_model_info(model, 'claude_code', base=model, base_vendor_name='anthropic', **codex_pricing)
409
409
 
410
410
  # %% ../nbs/00_types.ipynb #60630540
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-fastllm
3
- Version: 0.0.26
3
+ Version: 0.0.27
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
@@ -1 +0,0 @@
1
- __version__ = "0.0.26"