Initial commit
This commit is contained in:
14
crates/shared/proto/api.proto
Normal file
14
crates/shared/proto/api.proto
Normal file
@@ -0,0 +1,14 @@
|
||||
syntax = "proto3";
|
||||
package ai_daemon;
|
||||
|
||||
service AiDaemon {
|
||||
rpc Prompt (PromptRequest) returns (PromptResponse);
|
||||
}
|
||||
|
||||
message PromptRequest {
|
||||
string prompt = 1;
|
||||
}
|
||||
|
||||
message PromptResponse {
|
||||
string response = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user