Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -77,7 +77,7 @@ def inference(audio, prompt, model, temperature, latest):
|
|
77 |
infers = list(map(lambda x: x.replace("\n", ""), temp))
|
78 |
#infered = list(map(lambda x: x.split(','), infers))
|
79 |
convoState = latest
|
80 |
-
options = infers
|
81 |
|
82 |
|
83 |
return transcript, options, convoState
|
|
|
77 |
infers = list(map(lambda x: x.replace("\n", ""), temp))
|
78 |
#infered = list(map(lambda x: x.split(','), infers))
|
79 |
convoState = latest
|
80 |
+
options = options.join(infers)
|
81 |
|
82 |
|
83 |
return transcript, options, convoState
|