We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f0f8b9 commit 4872dadCopy full SHA for 4872dad
scripts/create/create_note.py
@@ -99,10 +99,13 @@ def parse_args():
99
parser = argparse.ArgumentParser(
100
description="Create a note; first positional arg is the model key."
101
)
102
+ # Add 'unknown' to the available choices
103
+ all_choices = sorted(list(MODEL_MAPPING.keys()) + ["unknown"])
104
+
105
parser.add_argument(
106
"model",
- choices=sorted(MODEL_MAPPING.keys()),
- default= "grok-fast",
107
+ choices=all_choices,
108
+ default="unknown",
109
help=(
110
"Model key to annotate in frontmatter; choices shown above."
111
),
0 commit comments