Initial commit

This commit is contained in:
2026-01-26 18:04:07 +02:00
commit 0786cf0165
45 changed files with 12608 additions and 0 deletions

View 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;
}