Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/goose-mcp/src/developer/editor_models/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pub use openai_compatible_editor::OpenAICompatibleEditor;
pub use relace_editor::RelaceEditor;

/// Enum for different editor models that can perform intelligent code editing
#[derive(Debug)]
#[derive(Debug, Clone)]
pub enum EditorModel {
MorphLLM(MorphLLMEditor),
OpenAICompatible(OpenAICompatibleEditor),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use reqwest::Client;
use serde_json::{json, Value};

/// MorphLLM editor that uses the standard chat completions format
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct MorphLLMEditor {
api_key: String,
host: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use reqwest::Client;
use serde_json::{json, Value};

/// OpenAI-compatible editor that uses the standard chat completions format
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct OpenAICompatibleEditor {
api_key: String,
host: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use reqwest::Client;
use serde_json::{json, Value};

/// Relace-specific editor that uses the predicted outputs convention
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct RelaceEditor {
api_key: String,
host: String,
Expand Down
Loading
Loading