fix: restore opencode-go provider config corrupted by secret redaction (#2393)
auth_type was "***" instead of "api_key" and api_key_env_vars was
("OPEN...",) instead of ("OPENCODE_GO_API_KEY",). This was introduced
in 35d948b6 when a secret redaction tool masked these values during
the Kilo Code provider commit. OpenCode Go provider was completely
broken as a result.
This commit is contained in:
parent
5454a55269
commit
e0ca46cd73
1 changed files with 2 additions and 2 deletions
|
|
@ -199,9 +199,9 @@ PROVIDER_REGISTRY: Dict[str, ProviderConfig] = {
|
||||||
"opencode-go": ProviderConfig(
|
"opencode-go": ProviderConfig(
|
||||||
id="opencode-go",
|
id="opencode-go",
|
||||||
name="OpenCode Go",
|
name="OpenCode Go",
|
||||||
auth_type="***",
|
auth_type="api_key",
|
||||||
inference_base_url="https://opencode.ai/zen/go/v1",
|
inference_base_url="https://opencode.ai/zen/go/v1",
|
||||||
api_key_env_vars=("OPEN...",),
|
api_key_env_vars=("OPENCODE_GO_API_KEY",),
|
||||||
base_url_env_var="OPENCODE_GO_BASE_URL",
|
base_url_env_var="OPENCODE_GO_BASE_URL",
|
||||||
),
|
),
|
||||||
"kilocode": ProviderConfig(
|
"kilocode": ProviderConfig(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue