We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6e3d582 + 303bb0a commit 66a9078Copy full SHA for 66a9078
mirageml/commands/config.py
@@ -59,6 +59,10 @@ def set_config():
59
value = input(question)
60
if value == "":
61
break
62
+ if key == "openai_key":
63
+ config[key] = value
64
+ save_config(config)
65
+ break
66
if value not in [x.split()[0] for x in valid[key][0]]:
67
options = f"{[x.split()[0] for x in valid[key][0]]}" if valid[key][0] else ""
68
typer.secho(
mirageml_version/_version_generated.py
@@ -1,2 +1,2 @@
1
# Copyright Mirage ML 2023
2
-build_number = 5
+build_number = 6
0 commit comments