OuroborosM commited on
Commit
3f81762
·
1 Parent(s): c06dab4

update llm fake

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -86,8 +86,10 @@ class GPTRemote(LLM):
86
  **kwargs: Any
87
  ) -> str:
88
  print("prompt:", prompt)
89
- output = "test custom llm"
90
- return output
 
 
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]: