mirror of
https://github.com/zhengkai/orca.git
synced 2026-02-04 16:32:26 +08:00
18 lines
279 B
Protocol Buffer
18 lines
279 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;
|
|
uint32 completion_tokens = 3;
|
|
}
|