@setoelkahfi / sigit / commits / 8c68759

Point siGit Code Cloud tier at sigit.si

The cloud tier now routes through the siGit platform API (sigit.si /api/v1) rather than calling the inference endpoint directly, so the client only ever holds the user's session token. DEFAULT_CLOUD_URL is https://sigit.si/api/v1; override with SIGIT_CLOUD_URL. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

Seto Elkahfi committed Jun 23, 2026 at 01:52 UTC 8c68759d974d64da1c656cb67ad876e533eda8cf
1 file changed +5 -3
src/provider.rs
+5 -3
index 042f02b..a8e658d 100644 --- a/src/provider.rs +++ b/src/provider.rs @@ -19,9 +19,11 @@ use std::path::PathBuf; use serde::Deserialize; -/// Default siGit Code Cloud inference endpoint. Override with `SIGIT_CLOUD_URL` -/// (dev: `http://localhost:8090/v1`). -const DEFAULT_CLOUD_URL: &str = "https://cloud.ondeinference.com/v1"; +/// Default siGit Code Cloud inference endpoint. This is the siGit platform API +/// (sigit.si), which authenticates the user and forwards to the inference +/// backend; the client never talks to the backend directly. Override with +/// `SIGIT_CLOUD_URL` (dev: `http://localhost:8088/api/v1`). +const DEFAULT_CLOUD_URL: &str = "https://sigit.si/api/v1"; /// The cloud quality tiers, in display order. Always offered in `/models`; /// selecting one requires a signed-in account.