We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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/
The text was updated successfully, but these errors were encountered:
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"])
Sorry, something went wrong.
No branches or pull requests
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/
The text was updated successfully, but these errors were encountered: