@@ -23,7 +23,7 @@ class CustomFormatter(argparse.ArgumentDefaultsHelpFormatter,
23
23
| User prompt | `-p`, `--prompt` | --prompt "Craft in depth lesson plans on any subject" |
24
24
| Image file path or url | `-i`, `--image` | --image "image_path_or_url" |
25
25
| API key for authentication | `-a`, `--api_key` | --api_key "your_api_key" |
26
- | Model to use | `-m`, `--model` | --model "claude-3-5-sonnet-20240620 " |
26
+ | Model to use | `-m`, `--model` | --model "claude-3-5-sonnet-20241022 " |
27
27
| Enable streaming mode | `-s`, `--stream` | --stream |
28
28
| System prompt (instructions) | `-sp, '--system_prompt` | --system_prompt "You are an advanced AI assistant" |
29
29
| Maximum tokens to generate | `-mt`, `--max_tokens` | --max_tokens 1024 |
@@ -41,7 +41,7 @@ class CustomFormatter(argparse.ArgumentDefaultsHelpFormatter,
41
41
parser .add_argument ('-p' , '--prompt' , type = str , help = 'Text or Vision prompt' , metavar = '' )
42
42
parser .add_argument ('-i' , '--image' , type = str , help = 'Image file path or url' , metavar = '' )
43
43
parser .add_argument ('-a' , '--api_key' , type = str , help = 'Claude API key for authentication' , metavar = '' )
44
- parser .add_argument ('-m' , '--model' , type = str , default = 'claude-3-5-sonnet-20240620 ' , help = 'The model you would like to use' , metavar = '' )
44
+ parser .add_argument ('-m' , '--model' , type = str , default = 'claude-3-5-sonnet-20241022 ' , help = 'The model you would like to use' , metavar = '' )
45
45
parser .add_argument ('-s' , '--stream' , action = 'store_true' , help = 'Enable streaming mode for responses' )
46
46
parser .add_argument ('-sp' , '--system_prompt' , type = str , help = 'Initial system prompt (instructions)' , metavar = '' )
47
47
parser .add_argument ('-mt' , '--max_tokens' , type = int , help = 'Maximum number of tokens to generate' , metavar = '' )
0 commit comments