Files
ws-agent/crates/shared/proto/api.proto
2026-01-26 18:04:07 +02:00

15 lines
220 B
Protocol Buffer

syntax = "proto3";
package ai_daemon;
service AiDaemon {
rpc Prompt (PromptRequest) returns (PromptResponse);
}
message PromptRequest {
string prompt = 1;
}
message PromptResponse {
string response = 1;
}