-
Notifications
You must be signed in to change notification settings - Fork 3
feat(together-ai/Salesforce/Llama-Rank-V1): add new models [bot] #1684
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
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| costs: | ||
| - input_cost_per_token: 1e-7 | ||
| output_cost_per_token: 1e-7 | ||
| region: "*" | ||
| limits: | ||
| context_window: 8192 | ||
| mode: unknown | ||
| model: Salesforce/Llama-Rank-V1 | ||
| supportedModes: | ||
| - rerank | ||
|
cursor[bot] marked this conversation as resolved.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Case colliding model pathsMedium Severity This change adds a full config at Reviewed by Cursor Bugbot for commit 9265af2. Configure here. |
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Non-chat output token pricing
Medium Severity
output_cost_per_tokenis set to the same rate as input for this rerank model. Rerank APIs typically bill query/document tokens only; other rerank entries use zero output token cost, and Together embedding configs omit output pricing entirely.Reviewed by Cursor Bugbot for commit 7102ff3. Configure here.