We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5af330e commit deff060Copy full SHA for deff060
backend/backend.proto
@@ -157,6 +157,7 @@ message Reply {
157
bytes message = 1;
158
int32 tokens = 2;
159
int32 prompt_tokens = 3;
160
+ string audio_output = 4;
161
}
162
163
message ModelOptions {
core/backend/llm.go
@@ -23,8 +23,9 @@ import (
23
)
24
25
type LLMResponse struct {
26
- Response string // should this be []byte?
27
- Usage TokenUsage
+ Response string // should this be []byte?
+ Usage TokenUsage
28
+ AudioOutput string
29
30
31
type TokenUsage struct {
0 commit comments