This commit is contained in:
end-4
2024-04-03 19:16:26 +07:00
parent a349941d9b
commit 1a4aa441e1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -174,7 +174,7 @@ class GeminiService extends Service {
this._key = keyValue;
Utils.writeFile(this._key, KEY_FILE_LOCATION)
.then(this.emit('hasKey', true))
.catch(err => print(err));
.catch(print);
}
get cycleModels() { return this._cycleModels }
+1 -1
View File
@@ -177,7 +177,7 @@ class GPTService extends Service {
this._key = keyValue;
Utils.writeFile(this._key, this._key_file_location)
.then(this.emit('hasKey', true))
.catch(err => print(err));
.catch(print);
}
get temperature() { return this._temperature }