F3: Kimi inference pipeline + full grok cloud-surface excision
Sampler / inference (PRD F3):
- kimi_compat.rs: single adaptation point for the Kimi chat/completions
dialect (thinking-field mapping, model_id stripping, empty-content
tool-call message fix, stream_options.include_usage), with kimi-cli
source citations
- Rate-limit handling reworked for Kimi/Moonshot semantics; UA kigi/{version}
- /models replaces the xAI models-v2 endpoint everywhere; idle model
refresh carries X-Msh-* device headers only (X-XAI-Token-Auth and
x-grok-client-mode/CLIENT_MODE_HEADER machinery deleted)
Cloud-surface excision (PRD §5, zero-egress):
- remote/ conversations lane, cli-chat-proxy-types crate, prod/ dir,
share command, credit bar: deleted (single local session lane;
paginate() replaces merge_and_paginate)
- Subscription/tier gate stack deleted end-to-end: AppView
gate/tier/team/ZDR fields, app/subscription.rs watch loop,
dispatch/billing.rs paywall + SuperGrok upsell, free-usage-exhausted
chain, tier-restricted commands, GateInfo, RemoteSettings gate fields,
SettingsUpdateNotification gate fields
- /privacy + coding-data-sharing setting deleted (backed by a dead xAI
RPC; Kigi is zero-egress — nothing to share or retain remotely)
Auth UX correctness (user-reported):
- Device-flow fixtures now mirror the live Kimi payload shape
(https://www.kimi.com/code/authorize_device?user_code=..., verified
against auth.kimi.com); the fabricated auth.kimi.com/device?code=...
URLs are gone
- open_browser_detached is a no-op under cfg(test): unit tests drove
wiremock fixture URLs into the real browser (root cause of the
"garbage mock link" ABCD-1234 tabs)
- Welcome/pager-minimal rebrand: Grok Build -> Kigi, grok.com ->
kimi.com, "Sign in to Grok" -> "Sign in to Kimi"
This commit is contained in:
@@ -621,10 +621,8 @@ pub async fn run_leader(
|
||||
let fetch_auth_for_prefetch = ModelFetchAuth::resolve(&endpoints_for_prefetch);
|
||||
let platform_keys_for_prefetch =
|
||||
crate::agent::models::PlatformApiKeys::resolve(&agent_config.platforms);
|
||||
// The shared pair helper owns the remote_fetch gate for both halves, so a
|
||||
// disabled knob cannot block leader readiness on settings retries.
|
||||
let (prefetched_models, remote_settings) = tokio::task::spawn_blocking(move || {
|
||||
crate::agent::models::prefetch_models_and_settings_blocking(
|
||||
let prefetched_models = tokio::task::spawn_blocking(move || {
|
||||
crate::agent::models::prefetch_models_blocking(
|
||||
&endpoints_for_prefetch,
|
||||
auth_for_prefetch.as_ref(),
|
||||
fetch_auth_for_prefetch,
|
||||
@@ -632,20 +630,7 @@ pub async fn run_leader(
|
||||
)
|
||||
})
|
||||
.await
|
||||
.unwrap_or((None, None));
|
||||
|
||||
// Process-wide image normalize cache: off by default, toggled here from
|
||||
// `RemoteSettings.image_normalize_cache_enabled` once at startup.
|
||||
let image_normalize_cache_enabled = remote_settings
|
||||
.as_ref()
|
||||
.and_then(|r| r.image_normalize_cache_enabled)
|
||||
.unwrap_or(false);
|
||||
crate::session::normalize_cache::NormalizeCache::global()
|
||||
.set_enabled(image_normalize_cache_enabled);
|
||||
tracing::debug!(
|
||||
enabled = image_normalize_cache_enabled,
|
||||
"image normalize cache toggle resolved from remote settings"
|
||||
);
|
||||
.unwrap_or(None);
|
||||
|
||||
// ── Phase 7: Signal readiness ─────────────────────────────────────────────
|
||||
//
|
||||
@@ -657,9 +642,7 @@ pub async fn run_leader(
|
||||
// ── Phase 8: LocalSet — agent, bridges, config watcher ───────────────────
|
||||
|
||||
let local_set = tokio::task::LocalSet::new();
|
||||
let remote_settings_for_reloader = remote_settings.clone();
|
||||
let mut agent_config_for_spawn = agent_config.clone();
|
||||
agent_config_for_spawn.remote_settings = remote_settings;
|
||||
crate::util::config::sync_campaign_fields(&mut agent_config_for_spawn);
|
||||
let agent_to_ipc_tx_clone = agent_to_ipc_tx.clone();
|
||||
let cancel_clone = cancel.clone();
|
||||
@@ -891,7 +874,7 @@ pub async fn run_leader(
|
||||
initial_auth_key_hash,
|
||||
initial_config,
|
||||
auth_scope,
|
||||
remote_settings_for_reloader,
|
||||
None,
|
||||
config_update_tx,
|
||||
agent_config.cli_experimental_memory,
|
||||
agent_config.cli_no_memory,
|
||||
|
||||
Reference in New Issue
Block a user