mirror of
https://github.com/zhengkai/orca.git
synced 2026-02-10 01:02:27 +08:00
18 lines
276 B
Protocol Buffer
18 lines
276 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "/pb";
|
|
package pb;
|
|
|
|
message VaChatReq {
|
|
string system = 1;
|
|
repeated string user = 2;
|
|
bool noCache = 3;
|
|
VaParam param = 4;
|
|
}
|
|
|
|
message VaParam {
|
|
float temperature = 1;
|
|
uint32 maxOutputTokens = 2;
|
|
float topP = 3;
|
|
uint32 topK = 4;
|
|
}
|