Spaces:
Runtime error
Runtime error
Commit
·
3abfd94
1
Parent(s):
da720f2
update id_param
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 {"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 |
|