Spaces:
Runtime error
Runtime error
Commit
·
bb0c9ca
1
Parent(s):
3abfd94
update llm func
Browse files
app.py
CHANGED
@@ -93,7 +93,7 @@ class GPTRemote(LLM):
|
|
93 |
|
94 |
@property
|
95 |
def _identifying_params(self) -> Mapping[str, Any]:
|
96 |
-
return
|
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 |
|