python-fastllm 0.0.17__tar.gz → 0.0.18__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.17 → python_fastllm-0.0.18}/PKG-INFO +1 -1
  2. python_fastllm-0.0.18/fastllm/__init__.py +1 -0
  3. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/fastllm/types.py +2 -0
  4. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/python_fastllm.egg-info/PKG-INFO +1 -1
  5. python_fastllm-0.0.17/fastllm/__init__.py +0 -1
  6. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/README.md +0 -0
  7. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/fastllm/_modidx.py +0 -0
  8. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/fastllm/acomplete.py +0 -0
  9. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/fastllm/anthropic.py +0 -0
  10. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/fastllm/chat.py +0 -0
  11. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/fastllm/codex.py +0 -0
  12. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/fastllm/gemini.py +0 -0
  13. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/fastllm/openai_chat.py +0 -0
  14. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/fastllm/openai_responses.py +0 -0
  15. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/fastllm/specs/anthropic.json +0 -0
  16. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/fastllm/specs/anthropic.yml +0 -0
  17. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/fastllm/specs/gemini.json +0 -0
  18. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/fastllm/specs/openai.with-code-samples.json +0 -0
  19. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/fastllm/specs/openai.with-code-samples.yml +0 -0
  20. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/fastllm/specs/spec_manifest.json +0 -0
  21. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/fastllm/streaming.py +0 -0
  22. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/pyproject.toml +0 -0
  23. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/python_fastllm.egg-info/SOURCES.txt +0 -0
  24. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/python_fastllm.egg-info/dependency_links.txt +0 -0
  25. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/python_fastllm.egg-info/entry_points.txt +0 -0
  26. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/python_fastllm.egg-info/requires.txt +0 -0
  27. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/python_fastllm.egg-info/top_level.txt +0 -0
  28. {python_fastllm-0.0.17 → python_fastllm-0.0.18}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-fastllm
3
- Version: 0.0.17
3
+ Version: 0.0.18
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.18"
@@ -365,6 +365,8 @@ register_model_info('mimo-v2.5-pro', vendor_name='mimo', **mimo_v25_common, base
365
365
  register_model_info('mimo-v2.5', vendor_name='mimo', **mimo_v25_common, base='deepseek-v4-pro', base_vendor_name='deepseek',
366
366
  input_cost_per_token=0.14e-6, output_cost_per_token=0.28e-6, cache_read_input_token_cost=0.0028e-6, search_context_cost_per_query=0.005,
367
367
  supports_vision=True, supports_image_input=True)
368
+ register_model_info('mimo-v2.5-pro-ultraspeed', vendor_name='mimo', **mimo_v25_common, base='deepseek-v4-pro', base_vendor_name='deepseek',
369
+ input_cost_per_token=1.305e-6, output_cost_per_token=2.61e-6, cache_read_input_token_cost=0.0108e-6, search_context_cost_per_query=0.005)
368
370
 
369
371
  # %% ../nbs/00_types.ipynb #defb1c5c
370
372
  register_model_info('MiniMax-M3', vendor_name='minimax', **modern_llm, max_input_tokens=512_000, max_output_tokens=512_000, max_tokens=512_000, input_cost_per_token=0.3e-6, output_cost_per_token=1.2e-6, cache_read_input_token_cost=0.06e-6, supports_vision=True, supports_video_input=True)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-fastllm
3
- Version: 0.0.17
3
+ Version: 0.0.18
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.17"