Spaces:
Runtime error
Runtime error
Commit
·
89d8a08
1
Parent(s):
5b63277
update llm = none
Browse files
app.py
CHANGED
@@ -93,6 +93,8 @@ class GPTRemote(LLM):
|
|
93 |
output = asyncio.run(start_playwright(prompt))
|
94 |
# output = "test custom llm"
|
95 |
# print(type(output))
|
|
|
|
|
96 |
print("-" * 20)
|
97 |
print('Raw: \n', output)
|
98 |
keywords = ['Action:', 'Action Input:', 'Observation:', 'Thought:', 'Final Answer:']
|
|
|
93 |
output = asyncio.run(start_playwright(prompt))
|
94 |
# output = "test custom llm"
|
95 |
# print(type(output))
|
96 |
+
if output is None:
|
97 |
+
output = "No Feedback"
|
98 |
print("-" * 20)
|
99 |
print('Raw: \n', output)
|
100 |
keywords = ['Action:', 'Action Input:', 'Observation:', 'Thought:', 'Final Answer:']
|