auto-coder 0.1.254__py3-none-any.whl → 0.1.255__py3-none-any.whl
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 auto-coder might be problematic. Click here for more details.
- {auto_coder-0.1.254.dist-info → auto_coder-0.1.255.dist-info}/METADATA +1 -1
- {auto_coder-0.1.254.dist-info → auto_coder-0.1.255.dist-info}/RECORD +15 -13
- autocoder/auto_coder.py +7 -5
- autocoder/chat_auto_coder.py +54 -9
- autocoder/chat_auto_coder_lang.py +2 -2
- autocoder/common/auto_coder_lang.py +9 -0
- autocoder/common/command_completer.py +5 -1
- autocoder/common/model_speed_test.py +392 -0
- autocoder/data/byzerllm.md +1549 -0
- autocoder/models.py +1 -4
- autocoder/version.py +1 -1
- {auto_coder-0.1.254.dist-info → auto_coder-0.1.255.dist-info}/LICENSE +0 -0
- {auto_coder-0.1.254.dist-info → auto_coder-0.1.255.dist-info}/WHEEL +0 -0
- {auto_coder-0.1.254.dist-info → auto_coder-0.1.255.dist-info}/entry_points.txt +0 -0
- {auto_coder-0.1.254.dist-info → auto_coder-0.1.255.dist-info}/top_level.txt +0 -0
autocoder/models.py
CHANGED
|
@@ -180,10 +180,7 @@ def update_model_speed(name: str, speed: float) -> bool:
|
|
|
180
180
|
|
|
181
181
|
Returns:
|
|
182
182
|
bool: 是否更新成功
|
|
183
|
-
"""
|
|
184
|
-
if speed <= 0:
|
|
185
|
-
raise ValueError("Speed must be positive")
|
|
186
|
-
|
|
183
|
+
"""
|
|
187
184
|
models = load_models()
|
|
188
185
|
updated = False
|
|
189
186
|
for model in models:
|
autocoder/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.1.
|
|
1
|
+
__version__ = "0.1.255"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|