Skip to content

Commit 2886390

Browse files
committed
aujdio
1 parent 3f4a2a2 commit 2886390

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: backend/backend.proto

+1
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ message Reply {
157157
bytes message = 1;
158158
int32 tokens = 2;
159159
int32 prompt_tokens = 3;
160+
string audio_output = 4;
160161
}
161162

162163
message ModelOptions {

Diff for: core/backend/llm.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ import (
2323
)
2424

2525
type LLMResponse struct {
26-
Response string // should this be []byte?
27-
Usage TokenUsage
26+
Response string // should this be []byte?
27+
Usage TokenUsage
28+
AudioOutput string
2829
}
2930

3031
type TokenUsage struct {

0 commit comments

Comments
 (0)