modelparams 0.0.26__tar.gz → 0.0.28__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.
Potentially problematic release.
This version of modelparams might be problematic. Click here for more details.
- {modelparams-0.0.26 → modelparams-0.0.28}/PKG-INFO +1 -1
- {modelparams-0.0.26 → modelparams-0.0.28}/pyproject.toml +1 -1
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/_generated/catalog.json +150 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/_generated/model_ids.py +4 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/_generated/registry.py +2 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/alibaba.py +30 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/.gitignore +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/LICENSE +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/README.md +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/__init__.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/_generated/__init__.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/catalog.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/models.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/py.typed +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/__init__.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/anthropic.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/cerebras.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/cohere.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/deepseek.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/google.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/groq.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/meta.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/minimax.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/mistral.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/moonshot.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/nvidia.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/openai.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/perplexity.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/thinking_machines.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/xai.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/xiaomi.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/types/z_ai.py +0 -0
- {modelparams-0.0.26 → modelparams-0.0.28}/src/modelparams/validation.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: modelparams
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.28
|
|
4
4
|
Summary: Typed model parameters for Python, generated from the modelparams.dev catalog.
|
|
5
5
|
Project-URL: Homepage, https://modelparams.dev
|
|
6
6
|
Project-URL: Repository, https://github.com/mnfst/modelparameters.dev
|
|
@@ -1,4 +1,154 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"provider": "alibaba",
|
|
4
|
+
"authType": "api_key",
|
|
5
|
+
"model": "deepseek-v3.2",
|
|
6
|
+
"params": [
|
|
7
|
+
{
|
|
8
|
+
"path": "max_completion_tokens",
|
|
9
|
+
"label": "Max tokens",
|
|
10
|
+
"description": "Maximum number of tokens to generate, including both reasoning and the final answer.",
|
|
11
|
+
"group": "generation_length",
|
|
12
|
+
"type": "integer",
|
|
13
|
+
"range": {
|
|
14
|
+
"min": 1
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"path": "temperature",
|
|
19
|
+
"label": "Temperature",
|
|
20
|
+
"description": "Controls randomness. Lower values make outputs more focused; higher values make them more varied.",
|
|
21
|
+
"group": "sampling",
|
|
22
|
+
"type": "number",
|
|
23
|
+
"range": {
|
|
24
|
+
"min": 0,
|
|
25
|
+
"max": 1.9,
|
|
26
|
+
"step": 0.1
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"path": "top_p",
|
|
31
|
+
"label": "Top P",
|
|
32
|
+
"description": "Controls nucleus sampling by limiting generation to tokens within the selected cumulative probability.",
|
|
33
|
+
"group": "sampling",
|
|
34
|
+
"type": "number",
|
|
35
|
+
"range": {
|
|
36
|
+
"min": 0,
|
|
37
|
+
"max": 1,
|
|
38
|
+
"step": 0.01
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"path": "extra_body.top_k",
|
|
43
|
+
"label": "Top K",
|
|
44
|
+
"description": "Limits generation to the selected number of highest-probability tokens. Values above 100 disable top-k sampling.",
|
|
45
|
+
"group": "sampling",
|
|
46
|
+
"type": "integer",
|
|
47
|
+
"default": 20,
|
|
48
|
+
"range": {
|
|
49
|
+
"min": 0
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"path": "extra_body.enable_thinking",
|
|
54
|
+
"label": "Enable thinking",
|
|
55
|
+
"description": "Toggles the model's hybrid thinking mode, sent as a provider-specific extra body field on OpenAI-compatible clients.",
|
|
56
|
+
"group": "reasoning",
|
|
57
|
+
"type": "boolean",
|
|
58
|
+
"default": true
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"path": "extra_body.thinking_budget",
|
|
62
|
+
"label": "Thinking budget",
|
|
63
|
+
"description": "Maximum number of tokens the model may spend on reasoning before it starts the final answer; defaults to the model's maximum reasoning length.",
|
|
64
|
+
"group": "reasoning",
|
|
65
|
+
"applicability": {
|
|
66
|
+
"only": {
|
|
67
|
+
"extra_body.enable_thinking": true
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"type": "integer",
|
|
71
|
+
"range": {
|
|
72
|
+
"min": 1
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"provider": "alibaba",
|
|
79
|
+
"authType": "api_key",
|
|
80
|
+
"model": "deepseek-v4-flash-0731",
|
|
81
|
+
"params": [
|
|
82
|
+
{
|
|
83
|
+
"path": "max_completion_tokens",
|
|
84
|
+
"label": "Max tokens",
|
|
85
|
+
"description": "Maximum number of tokens to generate, including both reasoning and the final answer.",
|
|
86
|
+
"group": "generation_length",
|
|
87
|
+
"type": "integer",
|
|
88
|
+
"range": {
|
|
89
|
+
"min": 1
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"path": "temperature",
|
|
94
|
+
"label": "Temperature",
|
|
95
|
+
"description": "Controls randomness. Lower values make outputs more focused; higher values make them more varied.",
|
|
96
|
+
"group": "sampling",
|
|
97
|
+
"type": "number",
|
|
98
|
+
"range": {
|
|
99
|
+
"min": 0,
|
|
100
|
+
"max": 1.9,
|
|
101
|
+
"step": 0.1
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"path": "top_p",
|
|
106
|
+
"label": "Top P",
|
|
107
|
+
"description": "Controls nucleus sampling by limiting generation to tokens within the selected cumulative probability.",
|
|
108
|
+
"group": "sampling",
|
|
109
|
+
"type": "number",
|
|
110
|
+
"range": {
|
|
111
|
+
"min": 0,
|
|
112
|
+
"max": 1,
|
|
113
|
+
"step": 0.01
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"path": "extra_body.top_k",
|
|
118
|
+
"label": "Top K",
|
|
119
|
+
"description": "Limits generation to the selected number of highest-probability tokens. Values above 100 disable top-k sampling.",
|
|
120
|
+
"group": "sampling",
|
|
121
|
+
"type": "integer",
|
|
122
|
+
"default": 20,
|
|
123
|
+
"range": {
|
|
124
|
+
"min": 0
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"path": "extra_body.enable_thinking",
|
|
129
|
+
"label": "Enable thinking",
|
|
130
|
+
"description": "Toggles the model's hybrid thinking mode, sent as a provider-specific extra body field on OpenAI-compatible clients.",
|
|
131
|
+
"group": "reasoning",
|
|
132
|
+
"type": "boolean",
|
|
133
|
+
"default": true
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"path": "extra_body.thinking_budget",
|
|
137
|
+
"label": "Thinking budget",
|
|
138
|
+
"description": "Maximum number of tokens the model may spend on reasoning before it starts the final answer; defaults to the model's maximum reasoning length.",
|
|
139
|
+
"group": "reasoning",
|
|
140
|
+
"applicability": {
|
|
141
|
+
"only": {
|
|
142
|
+
"extra_body.enable_thinking": true
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"type": "integer",
|
|
146
|
+
"range": {
|
|
147
|
+
"min": 1
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
]
|
|
151
|
+
},
|
|
2
152
|
{
|
|
3
153
|
"provider": "alibaba",
|
|
4
154
|
"authType": "api_key",
|
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
from typing import Literal
|
|
5
5
|
|
|
6
6
|
ModelId = Literal[
|
|
7
|
+
"alibaba/deepseek-v3.2",
|
|
8
|
+
"alibaba/deepseek-v4-flash-0731",
|
|
7
9
|
"alibaba/deepseek-v4-pro-0813",
|
|
8
10
|
"alibaba/qwen-flash",
|
|
9
11
|
"alibaba/qwen-max",
|
|
@@ -289,6 +291,8 @@ ModelId = Literal[
|
|
|
289
291
|
]
|
|
290
292
|
|
|
291
293
|
MODEL_IDS: tuple[ModelId, ...] = (
|
|
294
|
+
"alibaba/deepseek-v3.2",
|
|
295
|
+
"alibaba/deepseek-v4-flash-0731",
|
|
292
296
|
"alibaba/deepseek-v4-pro-0813",
|
|
293
297
|
"alibaba/qwen-flash",
|
|
294
298
|
"alibaba/qwen-max",
|
|
@@ -25,6 +25,8 @@ from modelparams.types import z_ai
|
|
|
25
25
|
from .model_ids import ModelId
|
|
26
26
|
|
|
27
27
|
PARAM_TYPES: dict[ModelId, Any] = {
|
|
28
|
+
"alibaba/deepseek-v3.2": alibaba.Deepseek_V3_2Params,
|
|
29
|
+
"alibaba/deepseek-v4-flash-0731": alibaba.Deepseek_V4_Flash_0731Params,
|
|
28
30
|
"alibaba/deepseek-v4-pro-0813": alibaba.Deepseek_V4_Pro_0813Params,
|
|
29
31
|
"alibaba/qwen-flash": alibaba.Qwen_FlashParams,
|
|
30
32
|
"alibaba/qwen-max": alibaba.Qwen_MaxParams,
|
|
@@ -10,6 +10,34 @@ from typing_extensions import TypedDict
|
|
|
10
10
|
|
|
11
11
|
_PARAMS_CONFIG = ConfigDict(strict=True, extra="forbid")
|
|
12
12
|
|
|
13
|
+
Deepseek_V3_2Params = TypedDict(
|
|
14
|
+
"Deepseek_V3_2Params",
|
|
15
|
+
{
|
|
16
|
+
"max_completion_tokens": Annotated[int, Field(ge=1)],
|
|
17
|
+
"temperature": Annotated[float, Field(ge=0, le=1.9)],
|
|
18
|
+
"top_p": Annotated[float, Field(ge=0, le=1)],
|
|
19
|
+
"extra_body.top_k": Annotated[int, Field(ge=0)],
|
|
20
|
+
"extra_body.enable_thinking": bool,
|
|
21
|
+
"extra_body.thinking_budget": Annotated[int, Field(ge=1)],
|
|
22
|
+
},
|
|
23
|
+
total=False,
|
|
24
|
+
)
|
|
25
|
+
setattr(Deepseek_V3_2Params, "__pydantic_config__", _PARAMS_CONFIG)
|
|
26
|
+
|
|
27
|
+
Deepseek_V4_Flash_0731Params = TypedDict(
|
|
28
|
+
"Deepseek_V4_Flash_0731Params",
|
|
29
|
+
{
|
|
30
|
+
"max_completion_tokens": Annotated[int, Field(ge=1)],
|
|
31
|
+
"temperature": Annotated[float, Field(ge=0, le=1.9)],
|
|
32
|
+
"top_p": Annotated[float, Field(ge=0, le=1)],
|
|
33
|
+
"extra_body.top_k": Annotated[int, Field(ge=0)],
|
|
34
|
+
"extra_body.enable_thinking": bool,
|
|
35
|
+
"extra_body.thinking_budget": Annotated[int, Field(ge=1)],
|
|
36
|
+
},
|
|
37
|
+
total=False,
|
|
38
|
+
)
|
|
39
|
+
setattr(Deepseek_V4_Flash_0731Params, "__pydantic_config__", _PARAMS_CONFIG)
|
|
40
|
+
|
|
13
41
|
Deepseek_V4_Pro_0813Params = TypedDict(
|
|
14
42
|
"Deepseek_V4_Pro_0813Params",
|
|
15
43
|
{
|
|
@@ -433,6 +461,8 @@ Qwq_PlusParams = TypedDict(
|
|
|
433
461
|
setattr(Qwq_PlusParams, "__pydantic_config__", _PARAMS_CONFIG)
|
|
434
462
|
|
|
435
463
|
__all__ = [
|
|
464
|
+
"Deepseek_V3_2Params",
|
|
465
|
+
"Deepseek_V4_Flash_0731Params",
|
|
436
466
|
"Deepseek_V4_Pro_0813Params",
|
|
437
467
|
"Qwen_FlashParams",
|
|
438
468
|
"Qwen_MaxParams",
|
|
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
|
|
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
|