You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -398,6 +398,17 @@ Toolkit for Markdown uses AWS Bedrock for AI processing. Ensure the following is
398
398
- AWS credentials configured
399
399
- Access to Bedrock models in the appropriate AWS account
400
400
401
+
**Supported Models:**
402
+
403
+
The tool requires Anthropic Claude models via Amazon Bedrock. The following model families are supported:
404
+
405
+
- Claude Opus 4 (including 4.1, 4.5, 4.6)
406
+
- Claude Sonnet 4 (including 4.5, 4.6)
407
+
- Claude Haiku 4.5
408
+
- Claude 3.7 Sonnet
409
+
410
+
Model IDs are matched using a prefix, so both standard and cross-region inference profiles (e.g. `us.anthropic.claude-sonnet-4-5-20250929-v1:0`) are accepted. Other model providers and older Claude versions (such as Claude 3.5 Haiku) are not supported.
consttemplate=`Your task is to review the content provided for file "{{file}}" and update it to improve it in terms of style, grammar and syntax.
32
28
@@ -56,9 +52,17 @@ For any finding which cannot be reliably remediated, such as missing images or b
56
52
[Some screenshot](/pods1.png)
57
53
</example_comment>
58
54
59
-
Write the output as markdown in a similar style to the example content. Respond with the resulting file enclosed in <file></file> including the path to the file as an attribute.
55
+
Write the translated content in a similar style to the example content. Use the write_file tool to output the result to "{{currentNode.filePath}}" in chunks:
56
+
- Each chunk is a separate call to write_file
57
+
- You MUST NOT write more than ~3000 tokens per chunk (roughly 2000-2500 words)
58
+
- Break at natural boundaries: section headers, major paragraphs
59
+
- First call: mode="create"
60
+
- Subsequent calls: mode="append"
61
+
- Continue until complete
60
62
61
-
ONLY respond with the content between the "<file></file>" tags.`;
63
+
Write substantial chunks to minimize tool calls while staying well under the output limit.
64
+
65
+
You're final response to the user MUST simply be "Success".`;
62
66
63
67
exportasyncfunctionbuildReviewPrompt(
64
68
tree: ContentTree,
@@ -95,16 +99,6 @@ export async function buildReviewPrompt(
0 commit comments