-
Notifications
You must be signed in to change notification settings - Fork 15
Add undocumented public fine-tunes endpoints #197
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?
Conversation
✱ Stainless preview buildsThis PR will update the Edit this comment to update it. It will appear in the SDK's changelogs. ✅ togetherai-typescript studio · code · diff
⚡ togetherai-python studio · conflict
✅ togetherai-go studio · code · diff
This comment is auto-generated by GitHub Actions and is automatically kept up to date as you push. |
| description: The parameter that caused the error. | ||
| HyperParameterLimits: | ||
| type: object | ||
| description: Hyperparameter limits for a fine-tuning model. |
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.
make sure to add required entries otherwise every key will be marked as optional
| supported: | ||
| type: boolean | ||
| description: Whether the specified model is supported. | ||
| /fine-tunes/models/limits: |
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.
I'm surprised we don't put the model name in the url so that way we can get CDN caching on get requests to reduce load and increase speed
| refund_job: | ||
| type: boolean | ||
| description: If true, refund the original job (admin only). | ||
| default: false |
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.
we should probably not put this in the spec
| no_cancel_job: | ||
| type: boolean | ||
| description: If true, do not cancel the original job. | ||
| default: false |
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.
Why would a user ever use this?
| content: | ||
| application/json: | ||
| schema: | ||
| $ref: '#/components/schemas/RestartJobResponse' |
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.
is this the same response that is given on a normal create? If so let's not make a new schema component but reference the same one
No description provided.