38 lines
903 B
Rust
38 lines
903 B
Rust
use serde::{Deserialize, Serialize};
|
|
use yoi_plugin_pdk::wit_bindgen;
|
|
use yoi_plugin_pdk::{ToolContext, ToolError, ToolOutput};
|
|
|
|
wit_bindgen::generate!({
|
|
world: "tool",
|
|
path: "../../../../resources/plugin/wit",
|
|
generate_all,
|
|
runtime_path: "yoi_plugin_pdk::wit_bindgen::rt",
|
|
});
|
|
|
|
#[derive(Debug, Deserialize)]
|
|
struct EchoInput {
|
|
text: String,
|
|
}
|
|
|
|
#[derive(Debug, Serialize)]
|
|
struct EchoOutput<'a> {
|
|
tool: &'a str,
|
|
text: String,
|
|
}
|
|
|
|
fn handle_echo(ctx: ToolContext, input: EchoInput) -> Result<ToolOutput, ToolError> {
|
|
if input.text.trim().is_empty() {
|
|
return Err(ToolError::invalid_input("`text` must not be empty"));
|
|
}
|
|
|
|
ToolOutput::json(
|
|
format!("{} echoed text", ctx.tool_name()),
|
|
EchoOutput {
|
|
tool: ctx.tool_name(),
|
|
text: input.text,
|
|
},
|
|
)
|
|
}
|
|
|
|
yoi_plugin_pdk::export_component_tool!(Plugin, handle_echo);
|