Skip to content

Commit 4ec9d00

Browse files
committed
feat: Update to use Claude 3 Sonnet model for documentation enhancement
1 parent 36c86ed commit 4ec9d00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/enhance_docs_bedrock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def parse_args():
2525
parser.add_argument('--input-dir', required=True, help='Directory containing basic extracted docs')
2626
parser.add_argument('--code-dir', required=True, help='Root directory of the codebase')
2727
parser.add_argument('--output-dir', required=True, help='Directory to write enhanced docs')
28-
parser.add_argument('--model', default='anthropic.claude-v2', help='Bedrock model to use')
28+
parser.add_argument('--model', default='anthropic.claude-3-sonnet-20240229-v1:0', help='Bedrock model to use')
2929
parser.add_argument('--max-tokens', type=int, default=4000, help='Maximum tokens for model response')
3030
parser.add_argument('--temperature', type=float, default=0.5, help='Model temperature (0.0-1.0)')
3131
parser.add_argument('--force', action='store_true', help='Force regeneration of all docs')

0 commit comments

Comments
 (0)