Spaces:
Runtime error
Runtime error
Helw150
commited on
Commit
·
73d467b
1
Parent(s):
016ec2e
Test 4
Browse files
app.py
CHANGED
@@ -97,6 +97,7 @@ def response(state: AppState, audio: tuple):
|
|
97 |
outs.past_key_values = tuple(
|
98 |
tuple(vec.cpu().numpy() for vec in tup) for tup in outs.past_key_values
|
99 |
)
|
|
|
100 |
return (
|
101 |
AppState(conversation=state.conversation, model_outs=outs),
|
102 |
state.conversation,
|
|
|
97 |
outs.past_key_values = tuple(
|
98 |
tuple(vec.cpu().numpy() for vec in tup) for tup in outs.past_key_values
|
99 |
)
|
100 |
+
print(outs)
|
101 |
return (
|
102 |
AppState(conversation=state.conversation, model_outs=outs),
|
103 |
state.conversation,
|