OuroborosM commited on
Commit
150bfee
·
1 Parent(s): 1c365c7

update llm

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -105,8 +105,9 @@ class GPTRemote(LLM):
105
  run_manager: Optional[CallbackManagerForLLMRun] = None,
106
  **kwargs: Any,
107
  ) -> LLMResult:
108
-
109
- return LLMResult(generations=[Generation("test result")])
 
110
  """Run the LLM on the given prompts."""
111
 
112
  GPTfake = GPTRemote(n=0)
 
105
  run_manager: Optional[CallbackManagerForLLMRun] = None,
106
  **kwargs: Any,
107
  ) -> LLMResult:
108
+ result = LLMResult()
109
+ result.generations = [Generation("test result")]
110
+ return result
111
  """Run the LLM on the given prompts."""
112
 
113
  GPTfake = GPTRemote(n=0)