mirror of
https://github.com/zhengkai/orca.git
synced 2026-02-10 14:32:26 +08:00
17 lines
248 B
Protocol Buffer
17 lines
248 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "/pb";
|
|
package pb;
|
|
|
|
message Rsp {
|
|
uint32 id = 1;
|
|
string object = 2;
|
|
fixed32 created = 3;
|
|
string model = 4;
|
|
RspUsage usage = 5;
|
|
}
|
|
|
|
message RspUsage {
|
|
uint32 prompt_tokens = 1;
|
|
uint32 total_tokens = 2;
|
|
}
|