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 ec6bd05 commit b1da5e8Copy full SHA for b1da5e8
crates/rmcp/src/model/prompt.rs
@@ -153,22 +153,6 @@ impl PromptMessage {
153
}
154
155
156
-/// A template for a prompt
157
-#[derive(Debug, Serialize, Deserialize)]
158
-pub struct PromptTemplate {
159
- pub id: String,
160
- pub template: String,
161
- pub arguments: Vec<PromptArgumentTemplate>,
162
-}
163
-
164
-/// A template for a prompt argument, this should be identical to PromptArgument
165
166
-pub struct PromptArgumentTemplate {
167
- pub name: String,
168
- pub description: Option<String>,
169
- pub required: Option<bool>,
170
171
172
#[cfg(test)]
173
mod tests {
174
use serde_json;
0 commit comments