python-fastllm 0.0.20__tar.gz → 0.0.21__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.
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/PKG-INFO +1 -1
- python_fastllm-0.0.21/fastllm/__init__.py +1 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/fastllm/types.py +9 -2
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/python_fastllm.egg-info/PKG-INFO +1 -1
- python_fastllm-0.0.20/fastllm/__init__.py +0 -1
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/README.md +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/fastllm/_modidx.py +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/fastllm/acomplete.py +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/fastllm/anthropic.py +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/fastllm/chat.py +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/fastllm/codex.py +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/fastllm/gemini.py +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/fastllm/openai_chat.py +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/fastllm/openai_responses.py +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/fastllm/specs/anthropic.json +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/fastllm/specs/anthropic.yml +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/fastllm/specs/gemini.json +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/fastllm/specs/openai.with-code-samples.json +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/fastllm/specs/openai.with-code-samples.yml +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/fastllm/specs/spec_manifest.json +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/fastllm/streaming.py +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/pyproject.toml +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/python_fastllm.egg-info/SOURCES.txt +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/python_fastllm.egg-info/dependency_links.txt +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/python_fastllm.egg-info/entry_points.txt +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/python_fastllm.egg-info/requires.txt +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/python_fastllm.egg-info/top_level.txt +0 -0
- {python_fastllm-0.0.20 → python_fastllm-0.0.21}/setup.cfg +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.21"
|
|
@@ -321,11 +321,18 @@ modern_llm = dict(supports_function_calling=True, supports_tool_choice=True, sup
|
|
|
321
321
|
supports_reasoning=True, supports_response_schema=True, supports_system_messages=True)
|
|
322
322
|
|
|
323
323
|
# %% ../nbs/00_types.ipynb #8261dcd0
|
|
324
|
-
register_model_info('accounts/fireworks/models/
|
|
325
|
-
|
|
324
|
+
register_model_info('accounts/fireworks/models/qwen3p7-plus', vendor_name='fireworks_ai', **modern_llm, supports_vision=True,
|
|
325
|
+
max_tokens=1000000, max_input_tokens=1000000, max_output_tokens=65536,
|
|
326
|
+
input_cost_per_token=0.4e-6, cache_read_input_token_cost=0.08e-6, output_cost_per_token=1.6e-6)
|
|
327
|
+
|
|
328
|
+
register_model_info('accounts/fireworks/models/qwen3p6-plus', vendor_name='fireworks_ai', **modern_llm, supports_vision=True,
|
|
326
329
|
max_tokens=1000000, max_input_tokens=1000000, max_output_tokens=65536,
|
|
327
330
|
input_cost_per_token=0.5e-6, cache_read_input_token_cost=0.1e-6, output_cost_per_token=3.0e-6)
|
|
328
331
|
|
|
332
|
+
register_model_info('accounts/fireworks/models/glm-5p2', vendor_name='fireworks_ai', **modern_llm, supports_vision=False,
|
|
333
|
+
max_tokens=1000000, max_input_tokens=1000000, max_output_tokens=65536,
|
|
334
|
+
input_cost_per_token=1.4e-6, cache_read_input_token_cost=0.26e-6, output_cost_per_token=4.4e-6)
|
|
335
|
+
|
|
329
336
|
register_model_info('gemini-3.5-flash', vendor_name='gemini', base='gemini-3-flash-preview',
|
|
330
337
|
input_cost_per_token=1.5e-6, output_cost_per_token=9e-6,
|
|
331
338
|
output_cost_per_reasoning_token=9e-6, cache_read_input_token_cost=1.5e-7)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.0.20"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_fastllm-0.0.20 → python_fastllm-0.0.21}/python_fastllm.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|