We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3622f8 commit ebead66Copy full SHA for ebead66
crates/chat-cli/src/cli/agent/mod.rs
@@ -129,6 +129,12 @@ pub enum AgentConfigError {
129
#[serde(rename_all = "camelCase", deny_unknown_fields)]
130
#[schemars(description = "An Agent is a declarative way of configuring a given instance of q chat.")]
131
pub struct Agent {
132
+ #[serde(
133
+ rename = "$schema",
134
+ default = "default_schema",
135
+ skip_serializing_if = "String::is_empty"
136
+ )]
137
+ pub schema: String,
138
/// Name of the agent
139
pub name: String,
140
/// This field is not model facing and is mostly here for users to discern between agents
0 commit comments