mirror of
https://github.com/zhengkai/orca.git
synced 2026-02-04 16:42:26 +08:00
13 lines
183 B
Protocol Buffer
13 lines
183 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "/pb";
|
|
package pb;
|
|
|
|
message OpenAIError {
|
|
OpenAIErrorDetail error = 1;
|
|
}
|
|
|
|
message OpenAIErrorDetail {
|
|
string message = 1;
|
|
string type = 2;
|
|
}
|