Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Amazon Bedrock Nova plugin #703

Open
kevinsimper opened this issue Jan 13, 2025 · 1 comment
Open

Amazon Bedrock Nova plugin #703

kevinsimper opened this issue Jan 13, 2025 · 1 comment

Comments

@kevinsimper
Copy link

kevinsimper commented Jan 13, 2025

Hi :)

Really like the tool, became aware of Amazon Nova which I think is really interesting considering the performance and price.
https://aws.amazon.com/blogs/aws/introducing-amazon-nova-frontier-intelligence-and-industry-leading-price-performance/

I just wanted to create this issue to gather if people are working on it :)

Not my blogpost, but very interesting comparison

https://blog.getbind.co/2024/12/10/amazon-nova-foundation-models-comparison-with-openai-and-claude-model-family/

@kevinsimper
Copy link
Author

AWS python library

https://boto3.amazonaws.com/v1/documentation/api/latest/guide/quickstart.html

import boto3
import json

client = boto3.client(service_name="bedrock-runtime")

messages = [
    {"role": "user", "content": [{"text": "Write a short poem"}]},
]

model_response = client.converse(
    modelId="us.amazon.nova-lite-v1:0", 
    messages=messages
)

print("\n[Full Response]")
print(json.dumps(model_response, indent=2))

print("\n[Response Content Text]")
print(model_response["output"]["message"]["content"][0]["text"])

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant