Spaces:
Runtime error
Runtime error
DHRUV SHEKHAWAT
commited on
Commit
·
5d25c33
1
Parent(s):
72ee1e9
Update app.py
Browse files
app.py
CHANGED
@@ -80,9 +80,10 @@ def evaluate(model, question, max_tokens=4096, top_p=0.7,temperature=0.1):
|
|
80 |
|
81 |
response = response.json()
|
82 |
|
83 |
-
|
84 |
-
if
|
85 |
-
|
|
|
86 |
else:
|
87 |
sentie = response
|
88 |
sentence = f"API Returned: \n ```{sentie}``` \n \n Is the API not working? check https://stats.uptimerobot.com/KkZE2T84mj \n If you are still encountering errors then please open a ticket from our discord server at https://discord.gg/webraftai . "
|
|
|
80 |
|
81 |
response = response.json()
|
82 |
|
83 |
+
choices = response.get('choices', [])
|
84 |
+
if choices:
|
85 |
+
sentie = response
|
86 |
+
sentence = choices[0].get('message', {}).get('content'," API Returned: \n ```{sentie}``` \n \n Is the API not working? check https://stats.uptimerobot.com/KkZE2T84mj \n If you are still encountering errors then please open a ticket from our discord server at https://discord.gg/webraftai . ")
|
87 |
else:
|
88 |
sentie = response
|
89 |
sentence = f"API Returned: \n ```{sentie}``` \n \n Is the API not working? check https://stats.uptimerobot.com/KkZE2T84mj \n If you are still encountering errors then please open a ticket from our discord server at https://discord.gg/webraftai . "
|