ErrorAI 1.11.0__tar.gz → 1.12.0__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.
- {errorai-1.11.0 → errorai-1.12.0}/ErrorAI.egg-info/PKG-INFO +1 -1
- {errorai-1.11.0 → errorai-1.12.0}/PKG-INFO +1 -1
- {errorai-1.11.0 → errorai-1.12.0}/errorai/config.py +7 -2
- {errorai-1.11.0 → errorai-1.12.0}/pyproject.toml +1 -1
- {errorai-1.11.0 → errorai-1.12.0}/ErrorAI.egg-info/SOURCES.txt +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/ErrorAI.egg-info/dependency_links.txt +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/ErrorAI.egg-info/entry_points.txt +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/ErrorAI.egg-info/requires.txt +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/ErrorAI.egg-info/top_level.txt +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/README.md +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/errorai/__init__.py +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/errorai/__main__.py +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/errorai/bootstrap.py +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/errorai/cli.py +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/errorai/compat.py +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/errorai/environment.py +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/errorai/pipeline.py +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/errorai/providers.py +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/errorai/runtime.py +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/errorai/universal.py +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/setup.cfg +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/tests/test_bootstrap.py +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/tests/test_config.py +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/tests/test_runtime.py +0 -0
- {errorai-1.11.0 → errorai-1.12.0}/tests/test_safety.py +0 -0
|
@@ -78,8 +78,13 @@ class ModelConfig:
|
|
|
78
78
|
# Only used when provider = "http_api". Sends the errroring line + message
|
|
79
79
|
# to this endpoint instead of running a local model. Opt-in only: unlike
|
|
80
80
|
# the local onnx/llama_cpp providers, this means code leaves the machine.
|
|
81
|
+
# Model id must match OVHcloud's catalog exactly (case-sensitive) --
|
|
82
|
+
# "qwen2.5-coder-32b-instruct" was retired from their catalog and now
|
|
83
|
+
# 404s; Qwen3-Coder-30B-A3B-Instruct is their current coder-specific
|
|
84
|
+
# model. Check https://www.ovhcloud.com/en/public-cloud/ai-endpoints/catalog/
|
|
85
|
+
# if this ever 404s again, since OVH's lineup changes over time.
|
|
81
86
|
http_api_base_url: str = "https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions"
|
|
82
|
-
http_api_model: str = "
|
|
87
|
+
http_api_model: str = "Qwen3-Coder-30B-A3B-Instruct"
|
|
83
88
|
http_api_timeout: float = 8.0
|
|
84
89
|
|
|
85
90
|
|
|
@@ -166,7 +171,7 @@ ignore_patterns = [".git", "__pycache__", ".env", ".venv", "venv", "node_modules
|
|
|
166
171
|
# this if you're OK with that one line leaving your machine.
|
|
167
172
|
provider = "http_api"
|
|
168
173
|
http_api_base_url = "https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions"
|
|
169
|
-
http_api_model = "
|
|
174
|
+
http_api_model = "Qwen3-Coder-30B-A3B-Instruct"
|
|
170
175
|
http_api_timeout = 8.0
|
|
171
176
|
|
|
172
177
|
# To run a fully local, offline model instead (nothing leaves your
|
|
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
|