Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public partial interface IReplicateApi
/// -H "Authorization: Bearer $REPLICATE_API_TOKEN" \<br/>
/// https://api.replicate.com/v1/models<br/>
/// ```<br/>
/// The response will be a paginated JSON array of model objects.<br/>
/// The response will be a pagination object containing a list of model objects.<br/>
/// See the [`models.get`](#models.get) docs for more details about the model object.
/// </summary>
/// <param name="cancellationToken">The token to cancel the operation with</param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ partial void ProcessModelsListResponse(
/// -H "Authorization: Bearer $REPLICATE_API_TOKEN" \<br/>
/// https://api.replicate.com/v1/models<br/>
/// ```<br/>
/// The response will be a paginated JSON array of model objects.<br/>
/// The response will be a pagination object containing a list of model objects.<br/>
/// See the [`models.get`](#models.get) docs for more details about the model object.
/// </summary>
/// <param name="cancellationToken">The token to cancel the operation with</param>
Expand Down
2 changes: 1 addition & 1 deletion src/libs/Replicate/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ paths:
/models:
get:
summary: List public models
description: "Get a paginated list of public models.\n\nExample cURL request:\n\n```console\ncurl -s \\\n -H \"Authorization: Bearer $REPLICATE_API_TOKEN\" \\\n https://api.replicate.com/v1/models\n```\n\nThe response will be a paginated JSON array of model objects.\n\nSee the [`models.get`](#models.get) docs for more details about the model object.\n"
description: "Get a paginated list of public models.\n\nExample cURL request:\n\n```console\ncurl -s \\\n -H \"Authorization: Bearer $REPLICATE_API_TOKEN\" \\\n https://api.replicate.com/v1/models\n```\n\nThe response will be a pagination object containing a list of model objects.\n\nSee the [`models.get`](#models.get) docs for more details about the model object.\n"
operationId: models.list
responses:
'200':
Expand Down