mirror of
https://github.com/zhengkai/orca.git
synced 2026-02-04 16:32:26 +08:00
feat: vertexai init
This commit is contained in:
17
proto/vertexai.proto
Normal file
17
proto/vertexai.proto
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user