Spaces:
Runtime error
Runtime error
Commit
·
3f81762
1
Parent(s):
c06dab4
update llm fake
Browse files
app.py
CHANGED
@@ -86,8 +86,10 @@ class GPTRemote(LLM):
|
|
86 |
**kwargs: Any
|
87 |
) -> str:
|
88 |
print("prompt:", prompt)
|
89 |
-
|
90 |
-
|
|
|
|
|
91 |
|
92 |
@property
|
93 |
def _identifying_params(self) -> Mapping[str, Any]:
|
|
|
86 |
**kwargs: Any
|
87 |
) -> str:
|
88 |
print("prompt:", prompt)
|
89 |
+
if stop :
|
90 |
+
output = asyncio.run(start_playwright(prompt))
|
91 |
+
# output = "test custom llm"
|
92 |
+
return output
|
93 |
|
94 |
@property
|
95 |
def _identifying_params(self) -> Mapping[str, Any]:
|