Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -60,9 +60,9 @@ def inference(audio, prompt, model, temperature, latest):
|
|
60 |
text = prompt + transcript + "\nPrediction: "
|
61 |
|
62 |
response = openai.Completion.create(
|
63 |
-
model=
|
64 |
-
prompt=
|
65 |
-
temperature=
|
66 |
max_tokens=18,
|
67 |
n=5)
|
68 |
|
|
|
60 |
text = prompt + transcript + "\nPrediction: "
|
61 |
|
62 |
response = openai.Completion.create(
|
63 |
+
model="text-davinci-003",
|
64 |
+
prompt=EXAMPLE_PROMPT,
|
65 |
+
temperature=0.8,
|
66 |
max_tokens=18,
|
67 |
n=5)
|
68 |
|