diff --git a/src/libs/Replicate/Generated/Replicate.IReplicateApi.ModelsList.g.cs b/src/libs/Replicate/Generated/Replicate.IReplicateApi.ModelsList.g.cs index 5b59bbe..caf659d 100644 --- a/src/libs/Replicate/Generated/Replicate.IReplicateApi.ModelsList.g.cs +++ b/src/libs/Replicate/Generated/Replicate.IReplicateApi.ModelsList.g.cs @@ -13,7 +13,7 @@ public partial interface IReplicateApi /// -H "Authorization: Bearer $REPLICATE_API_TOKEN" \
/// https://api.replicate.com/v1/models
/// ```
- /// The response will be a paginated JSON array of model objects.
+ /// The response will be a pagination object containing a list of model objects.
/// See the [`models.get`](#models.get) docs for more details about the model object. /// /// The token to cancel the operation with diff --git a/src/libs/Replicate/Generated/Replicate.ReplicateApi.ModelsList.g.cs b/src/libs/Replicate/Generated/Replicate.ReplicateApi.ModelsList.g.cs index 1c91385..1925dcb 100644 --- a/src/libs/Replicate/Generated/Replicate.ReplicateApi.ModelsList.g.cs +++ b/src/libs/Replicate/Generated/Replicate.ReplicateApi.ModelsList.g.cs @@ -23,7 +23,7 @@ partial void ProcessModelsListResponse( /// -H "Authorization: Bearer $REPLICATE_API_TOKEN" \
/// https://api.replicate.com/v1/models
/// ```
- /// The response will be a paginated JSON array of model objects.
+ /// The response will be a pagination object containing a list of model objects.
/// See the [`models.get`](#models.get) docs for more details about the model object. /// /// The token to cancel the operation with diff --git a/src/libs/Replicate/openapi.yaml b/src/libs/Replicate/openapi.yaml index 2742909..5e1a6e9 100644 --- a/src/libs/Replicate/openapi.yaml +++ b/src/libs/Replicate/openapi.yaml @@ -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':