grpt to inf

This commit is contained in:
mmrbnjd
2025-08-28 14:11:26 +03:30
parent 181dc876d7
commit 6bb19f9d8b
8 changed files with 1256 additions and 9 deletions

19
Common/Protos/aia.proto Normal file
View File

@@ -0,0 +1,19 @@
syntax = "proto3";
option csharp_namespace = "AIAss.Protos";
package aia;
service aiAssistance {
rpc SendQuestion (aiaRequest) returns (aiaReply);
}
message aiaRequest {
string question = 1;
string prompts = 2;
}
message aiaReply {
string message = 1;
}