fix(ui): enable selection of zero-config providers in desktop GUI (#3378)
Signed-off-by: Kyle Santiago <kyle@privkey.io>
This commit is contained in:
@@ -109,6 +109,13 @@ pub fn inspect_keys(
|
||||
pub fn check_provider_configured(metadata: &ProviderMetadata) -> bool {
|
||||
let config = Config::global();
|
||||
|
||||
// Special case: Zero-config providers (no config keys)
|
||||
if metadata.config_keys.is_empty() {
|
||||
// Check if the provider has been explicitly configured via the UI
|
||||
let configured_marker = format!("{}_configured", metadata.name);
|
||||
return config.get_param::<bool>(&configured_marker).is_ok();
|
||||
}
|
||||
|
||||
// Get all required keys
|
||||
let required_keys: Vec<&ConfigKey> = metadata
|
||||
.config_keys
|
||||
@@ -128,6 +135,21 @@ pub fn check_provider_configured(metadata: &ProviderMetadata) -> bool {
|
||||
return is_set_in_env || is_set_in_config;
|
||||
}
|
||||
|
||||
// Special case: If a provider has only optional keys with defaults,
|
||||
// check if a configuration marker exists
|
||||
if required_keys.is_empty() && !metadata.config_keys.is_empty() {
|
||||
let all_optional_with_defaults = metadata
|
||||
.config_keys
|
||||
.iter()
|
||||
.all(|key| !key.required && key.default.is_some());
|
||||
|
||||
if all_optional_with_defaults {
|
||||
// Check if the provider has been explicitly configured via the UI
|
||||
let configured_marker = format!("{}_configured", metadata.name);
|
||||
return config.get_param::<bool>(&configured_marker).is_ok();
|
||||
}
|
||||
}
|
||||
|
||||
// For providers with multiple keys or keys without defaults:
|
||||
// Find required keys that don't have default values
|
||||
let required_non_default_keys: Vec<&ConfigKey> = required_keys
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
use anyhow::Result;
|
||||
use async_trait::async_trait;
|
||||
use serde_json::{json, Value};
|
||||
use std::path::PathBuf;
|
||||
use std::process::Stdio;
|
||||
use tokio::io::{AsyncBufReadExt, BufReader};
|
||||
use tokio::process::Command;
|
||||
@@ -8,13 +9,14 @@ use tokio::process::Command;
|
||||
use super::base::{ConfigKey, Provider, ProviderMetadata, ProviderUsage, Usage};
|
||||
use super::errors::ProviderError;
|
||||
use super::utils::emit_debug_trace;
|
||||
use crate::config::Config;
|
||||
use crate::message::{Message, MessageContent};
|
||||
use crate::model::ModelConfig;
|
||||
use mcp_core::tool::Tool;
|
||||
use rmcp::model::Role;
|
||||
use mcp_core::Role;
|
||||
|
||||
pub const CLAUDE_CODE_DEFAULT_MODEL: &str = "default";
|
||||
pub const CLAUDE_CODE_KNOWN_MODELS: &[&str] = &["default"];
|
||||
pub const CLAUDE_CODE_DEFAULT_MODEL: &str = "claude-3-5-sonnet-latest";
|
||||
pub const CLAUDE_CODE_KNOWN_MODELS: &[&str] = &["sonnet", "opus", "claude-3-5-sonnet-latest"];
|
||||
|
||||
pub const CLAUDE_CODE_DOC_URL: &str = "https://claude.ai/cli";
|
||||
|
||||
@@ -38,7 +40,71 @@ impl ClaudeCodeProvider {
|
||||
.get_param("CLAUDE_CODE_COMMAND")
|
||||
.unwrap_or_else(|_| "claude".to_string());
|
||||
|
||||
Ok(Self { command, model })
|
||||
let resolved_command = if !command.contains('/') {
|
||||
Self::find_claude_executable(&command).unwrap_or(command)
|
||||
} else {
|
||||
command
|
||||
};
|
||||
|
||||
Ok(Self {
|
||||
command: resolved_command,
|
||||
model,
|
||||
})
|
||||
}
|
||||
|
||||
/// Search for claude executable in common installation locations
|
||||
fn find_claude_executable(command_name: &str) -> Option<String> {
|
||||
let home = std::env::var("HOME").ok()?;
|
||||
|
||||
let search_paths = vec![
|
||||
format!("{}/.claude/local/{}", home, command_name),
|
||||
format!("{}/.local/bin/{}", home, command_name),
|
||||
format!("{}/bin/{}", home, command_name),
|
||||
format!("/usr/local/bin/{}", command_name),
|
||||
format!("/usr/bin/{}", command_name),
|
||||
format!("/opt/claude/{}", command_name),
|
||||
];
|
||||
|
||||
for path in search_paths {
|
||||
let path_buf = PathBuf::from(&path);
|
||||
if path_buf.exists() && path_buf.is_file() {
|
||||
#[cfg(unix)]
|
||||
{
|
||||
use std::os::unix::fs::PermissionsExt;
|
||||
if let Ok(metadata) = std::fs::metadata(&path_buf) {
|
||||
let permissions = metadata.permissions();
|
||||
if permissions.mode() & 0o111 != 0 {
|
||||
tracing::info!("Found claude executable at: {}", path);
|
||||
return Some(path);
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(unix))]
|
||||
{
|
||||
tracing::info!("Found claude executable at: {}", path);
|
||||
return Some(path);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if let Ok(path_var) = std::env::var("PATH") {
|
||||
#[cfg(unix)]
|
||||
let path_separator = ':';
|
||||
#[cfg(windows)]
|
||||
let path_separator = ';';
|
||||
|
||||
for dir in path_var.split(path_separator) {
|
||||
let path_buf = PathBuf::from(dir).join(command_name);
|
||||
if path_buf.exists() && path_buf.is_file() {
|
||||
let full_path = path_buf.to_string_lossy().to_string();
|
||||
tracing::info!("Found claude executable in PATH at: {}", full_path);
|
||||
return Some(full_path);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tracing::warn!("Could not find claude executable in common locations");
|
||||
None
|
||||
}
|
||||
|
||||
/// Filter out the Extensions section from the system prompt
|
||||
@@ -97,8 +163,13 @@ impl ClaudeCodeProvider {
|
||||
// Convert tool result contents to text
|
||||
let content_text = tool_contents
|
||||
.iter()
|
||||
.filter_map(|content| content.as_text().map(|t| t.text.clone()))
|
||||
.collect::<Vec<_>>()
|
||||
.filter_map(|content| match &content.raw {
|
||||
rmcp::model::RawContent::Text(text_content) => {
|
||||
Some(text_content.text.as_str())
|
||||
}
|
||||
_ => None,
|
||||
})
|
||||
.collect::<Vec<&str>>()
|
||||
.join("\n");
|
||||
|
||||
content_parts.push(json!({
|
||||
@@ -215,11 +286,12 @@ impl ClaudeCodeProvider {
|
||||
|
||||
let message_content = vec![MessageContent::text(combined_text)];
|
||||
|
||||
let response_message = Message::new(
|
||||
Role::Assistant,
|
||||
chrono::Utc::now().timestamp(),
|
||||
message_content,
|
||||
);
|
||||
let response_message = Message {
|
||||
id: None,
|
||||
role: Role::Assistant,
|
||||
created: chrono::Utc::now().timestamp(),
|
||||
content: message_content,
|
||||
};
|
||||
|
||||
Ok((response_message, usage))
|
||||
}
|
||||
@@ -261,10 +333,20 @@ impl ClaudeCodeProvider {
|
||||
.arg(messages_json.to_string())
|
||||
.arg("--system-prompt")
|
||||
.arg(&filtered_system)
|
||||
.arg("--model")
|
||||
.arg(&self.model.model_name)
|
||||
.arg("--verbose")
|
||||
.arg("--output-format")
|
||||
.arg("json");
|
||||
|
||||
// Add permission mode based on GOOSE_MODE setting
|
||||
let config = Config::global();
|
||||
if let Ok(goose_mode) = config.get_param::<String>("GOOSE_MODE") {
|
||||
if goose_mode.as_str() == "auto" {
|
||||
cmd.arg("--permission-mode").arg("acceptEdits");
|
||||
}
|
||||
}
|
||||
|
||||
cmd.stdout(Stdio::piped()).stderr(Stdio::piped());
|
||||
|
||||
let mut child = cmd
|
||||
@@ -326,7 +408,7 @@ impl ClaudeCodeProvider {
|
||||
// Extract the first user message text
|
||||
let description = messages
|
||||
.iter()
|
||||
.find(|m| m.role == rmcp::model::Role::User)
|
||||
.find(|m| m.role == mcp_core::Role::User)
|
||||
.and_then(|m| {
|
||||
m.content.iter().find_map(|c| match c {
|
||||
MessageContent::Text(text_content) => Some(&text_content.text),
|
||||
@@ -349,11 +431,12 @@ impl ClaudeCodeProvider {
|
||||
println!("================================");
|
||||
}
|
||||
|
||||
let message = Message::new(
|
||||
rmcp::model::Role::Assistant,
|
||||
chrono::Utc::now().timestamp(),
|
||||
vec![MessageContent::text(description.clone())],
|
||||
);
|
||||
let message = Message {
|
||||
id: None,
|
||||
role: mcp_core::Role::Assistant,
|
||||
created: chrono::Utc::now().timestamp(),
|
||||
content: vec![MessageContent::text(description.clone())],
|
||||
};
|
||||
|
||||
let usage = Usage::default();
|
||||
|
||||
@@ -384,8 +467,8 @@ impl Provider for ClaudeCodeProvider {
|
||||
}
|
||||
|
||||
fn get_model_config(&self) -> ModelConfig {
|
||||
// Return a custom config with 200K token limit for Claude Code
|
||||
ModelConfig::new("claude-3-5-sonnet-latest".to_string()).with_context_limit(Some(200_000))
|
||||
// Return the model config with appropriate context limit for Claude models
|
||||
self.model.clone()
|
||||
}
|
||||
|
||||
#[tracing::instrument(
|
||||
@@ -439,6 +522,19 @@ mod tests {
|
||||
let config = provider.get_model_config();
|
||||
|
||||
assert_eq!(config.model_name, "claude-3-5-sonnet-latest");
|
||||
assert_eq!(config.context_limit(), 200_000);
|
||||
// Context limit should be set by the ModelConfig
|
||||
assert!(config.context_limit() > 0);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_permission_mode_flag_construction() {
|
||||
// Test that in auto mode, the --permission-mode acceptEdits flag is added
|
||||
std::env::set_var("GOOSE_MODE", "auto");
|
||||
|
||||
let config = Config::global();
|
||||
let goose_mode: String = config.get_param("GOOSE_MODE").unwrap();
|
||||
assert_eq!(goose_mode, "auto");
|
||||
|
||||
std::env::remove_var("GOOSE_MODE");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
use anyhow::Result;
|
||||
use async_trait::async_trait;
|
||||
use serde_json::json;
|
||||
use std::path::PathBuf;
|
||||
use std::process::Stdio;
|
||||
use tokio::io::{AsyncBufReadExt, BufReader};
|
||||
use tokio::process::Command;
|
||||
@@ -13,8 +14,8 @@ use crate::model::ModelConfig;
|
||||
use mcp_core::tool::Tool;
|
||||
use rmcp::model::Role;
|
||||
|
||||
pub const GEMINI_CLI_DEFAULT_MODEL: &str = "default";
|
||||
pub const GEMINI_CLI_KNOWN_MODELS: &[&str] = &["default"];
|
||||
pub const GEMINI_CLI_DEFAULT_MODEL: &str = "gemini-2.5-pro";
|
||||
pub const GEMINI_CLI_KNOWN_MODELS: &[&str] = &["gemini-2.5-pro"];
|
||||
|
||||
pub const GEMINI_CLI_DOC_URL: &str = "https://ai.google.dev/gemini-api/docs";
|
||||
|
||||
@@ -33,9 +34,76 @@ impl Default for GeminiCliProvider {
|
||||
|
||||
impl GeminiCliProvider {
|
||||
pub fn from_env(model: ModelConfig) -> Result<Self> {
|
||||
let command = "gemini".to_string(); // Fixed command, no configuration needed
|
||||
let config = crate::config::Config::global();
|
||||
let command: String = config
|
||||
.get_param("GEMINI_CLI_COMMAND")
|
||||
.unwrap_or_else(|_| "gemini".to_string());
|
||||
|
||||
Ok(Self { command, model })
|
||||
let resolved_command = if !command.contains('/') {
|
||||
Self::find_gemini_executable(&command).unwrap_or(command)
|
||||
} else {
|
||||
command
|
||||
};
|
||||
|
||||
Ok(Self {
|
||||
command: resolved_command,
|
||||
model,
|
||||
})
|
||||
}
|
||||
|
||||
/// Search for gemini executable in common installation locations
|
||||
fn find_gemini_executable(command_name: &str) -> Option<String> {
|
||||
let home = std::env::var("HOME").ok()?;
|
||||
|
||||
// Common locations where gemini might be installed
|
||||
let search_paths = vec![
|
||||
format!("{}/.gemini/local/{}", home, command_name),
|
||||
format!("{}/.local/bin/{}", home, command_name),
|
||||
format!("{}/bin/{}", home, command_name),
|
||||
format!("/usr/local/bin/{}", command_name),
|
||||
format!("/usr/bin/{}", command_name),
|
||||
format!("/opt/gemini/{}", command_name),
|
||||
format!("/opt/google/{}", command_name),
|
||||
];
|
||||
|
||||
for path in search_paths {
|
||||
let path_buf = PathBuf::from(&path);
|
||||
if path_buf.exists() && path_buf.is_file() {
|
||||
// Check if it's executable
|
||||
#[cfg(unix)]
|
||||
{
|
||||
use std::os::unix::fs::PermissionsExt;
|
||||
if let Ok(metadata) = std::fs::metadata(&path_buf) {
|
||||
let permissions = metadata.permissions();
|
||||
if permissions.mode() & 0o111 != 0 {
|
||||
tracing::info!("Found gemini executable at: {}", path);
|
||||
return Some(path);
|
||||
}
|
||||
}
|
||||
}
|
||||
#[cfg(not(unix))]
|
||||
{
|
||||
// On non-Unix systems, just check if file exists
|
||||
tracing::info!("Found gemini executable at: {}", path);
|
||||
return Some(path);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// If not found in common locations, check if it's in PATH
|
||||
if let Ok(path_var) = std::env::var("PATH") {
|
||||
for dir in path_var.split(':') {
|
||||
let full_path = format!("{}/{}", dir, command_name);
|
||||
let path_buf = PathBuf::from(&full_path);
|
||||
if path_buf.exists() && path_buf.is_file() {
|
||||
tracing::info!("Found gemini executable in PATH at: {}", full_path);
|
||||
return Some(full_path);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tracing::warn!("Could not find gemini executable in common locations");
|
||||
None
|
||||
}
|
||||
|
||||
/// Filter out the Extensions section from the system prompt
|
||||
@@ -102,7 +170,11 @@ impl GeminiCliProvider {
|
||||
}
|
||||
|
||||
let mut cmd = Command::new(&self.command);
|
||||
cmd.arg("-p").arg(&full_prompt).arg("--yolo");
|
||||
cmd.arg("-m")
|
||||
.arg(&self.model.model_name)
|
||||
.arg("-p")
|
||||
.arg(&full_prompt)
|
||||
.arg("--yolo");
|
||||
|
||||
cmd.stdout(Stdio::piped()).stderr(Stdio::piped());
|
||||
|
||||
@@ -125,7 +197,7 @@ impl GeminiCliProvider {
|
||||
Ok(0) => break, // EOF
|
||||
Ok(_) => {
|
||||
let trimmed = line.trim();
|
||||
if !trimmed.is_empty() {
|
||||
if !trimmed.is_empty() && !trimmed.starts_with("Loaded cached credentials") {
|
||||
lines.push(trimmed.to_string());
|
||||
}
|
||||
}
|
||||
@@ -240,8 +312,8 @@ impl Provider for GeminiCliProvider {
|
||||
}
|
||||
|
||||
fn get_model_config(&self) -> ModelConfig {
|
||||
// Return a custom config with 1M token limit for Gemini CLI
|
||||
ModelConfig::new("gemini-1.5-pro".to_string()).with_context_limit(Some(1_000_000))
|
||||
// Return the model config with appropriate context limit for Gemini models
|
||||
self.model.clone()
|
||||
}
|
||||
|
||||
#[tracing::instrument(
|
||||
@@ -294,7 +366,8 @@ mod tests {
|
||||
let provider = GeminiCliProvider::default();
|
||||
let config = provider.get_model_config();
|
||||
|
||||
assert_eq!(config.model_name, "gemini-1.5-pro");
|
||||
assert_eq!(config.context_limit(), 1_000_000);
|
||||
assert_eq!(config.model_name, "gemini-2.5-pro");
|
||||
// Context limit should be set by the ModelConfig
|
||||
assert!(config.context_limit() > 0);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user