OuroborosM commited on
Commit
bb0c9ca
·
1 Parent(s): 3abfd94

update llm func

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -93,7 +93,7 @@ class GPTRemote(LLM):
93
 
94
  @property
95
  def _identifying_params(self) -> Mapping[str, Any]:
96
- return {["n", self.n]}
97
 
98
  GPTfake = GPTRemote(n=0)
99
 
 
93
 
94
  @property
95
  def _identifying_params(self) -> Mapping[str, Any]:
96
+ return [("n", self.n)]
97
 
98
  GPTfake = GPTRemote(n=0)
99