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

added metadata for aws-nova #1791

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 36 additions & 1 deletion metadata/llm_metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,4 +201,39 @@ perplexity:
default: 0.0
minimum: -2.0
maximum: 2.0
description: "The frequency_penalty hyperparameter penalizes the model for generating words that have already been generated in the current response."
description: "The frequency_penalty hyperparameter penalizes the model for generating words that have already been generated in the current response."
aws-nova:
$schema: "https://json-schema.org/draft/2020-12/schema"
type: "object"
description: "AWS Nova AI Models for Prompt"
properties:
temperature:
type: "number"
default: 0.0
minimum: 0.0
maximum: 2.0
description: "The temperature hyperparameter controls the creativity or randomness of the generated responses."
max_tokens:
type: "integer"
default: 300
minimum: 5
maximum: 5120
description: "The max_tokens hyperparameter limits the length of generated responses in chat completion."
model:
type: "string"
default: "bedrock/converse/us.amazon.nova-lite-v1:0"
enum: ["bedrock/converse/us.amazon.nova-micro-v1:0", "bedrock/converse/us.amazon.nova-lite-v1:0", "bedrock/converse/us.amazon.nova-pro-v1:0"]
description: "The model hyperparameter is the ID of the model to use such as gpt-2, gpt-3, or a custom model that you have trained or fine-tuned."
top_p:
type: "number"
default: 0.0
minimum: 0.0
maximum: 1.0
description: "The top_p hyperparameter is a value that controls the diversity of the generated responses."
stop:
type: "array"
maxItems: 4
items:
type: "string"
default: null
description: "The stop hyperparameter is used to specify a list of tokens that should be used to indicate the end of a generated response."
Loading