Computer use support for Amazon Bedrock provider #4151
MrHertal
started this conversation in
Ideas & Feedback
Replies: 1 comment
-
I'm also interested into support for Anthropic tools ( Sample code that I've tried const result = await generateText({
model: bedrock('anthropic.claude-3-5-sonnet-20241022-v2:0', {
additionalModelRequestFields: {
tools: [{
type: 'computer_20241022',
name: 'computer',
display_height_px: 768,
display_width_px: 1024,
display_number: 0,
}],
anthropic_beta: ['computer-use-2024-10-22']
}
}),
maxSteps: 5,
prompt: 'Testing tools',
onStepFinish: step => {
console.log(JSON.stringify(step, null, 2));
},
}); Error
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I wanted to know if you are planning to add computer use capability to the Amazon Bedrock provider.
It seems doable now: https://docs.aws.amazon.com/bedrock/latest/userguide/computer-use.html
Thanks 🙂
Beta Was this translation helpful? Give feedback.
All reactions