Skip to content

Commit 905a2fd

Browse files
HavenDVgithub-actions[bot]
andauthored
feat: Updated OpenAPI spec (#231)
Co-authored-by: github-actions[bot] <bot@openai.com>
1 parent bee2d5f commit 905a2fd

17 files changed

+67
-18
lines changed

src/libs/Cohere/Generated/Cohere.FinetuningClient.CreateFinetunedModel.g.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ partial void ProcessCreateFinetunedModelResponseContent(
2424
ref string content);
2525

2626
/// <summary>
27-
/// Trains and deploys a fine-tuned model.
27+
/// Trains and deploys a fine-tuned model.<br/>
28+
/// Creates a new fine-tuned model. The model will be trained on the dataset specified in the request body. The training process may take some time, and the model will be available once the training is complete.
2829
/// </summary>
2930
/// <param name="xClientName"></param>
3031
/// <param name="request"></param>
@@ -400,7 +401,8 @@ partial void ProcessCreateFinetunedModelResponseContent(
400401
}
401402

402403
/// <summary>
403-
/// Trains and deploys a fine-tuned model.
404+
/// Trains and deploys a fine-tuned model.<br/>
405+
/// Creates a new fine-tuned model. The model will be trained on the dataset specified in the request body. The training process may take some time, and the model will be available once the training is complete.
404406
/// </summary>
405407
/// <param name="xClientName"></param>
406408
/// <param name="name">

src/libs/Cohere/Generated/Cohere.FinetuningClient.DeleteFinetunedModel.g.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ partial void ProcessDeleteFinetunedModelResponseContent(
2424
ref string content);
2525

2626
/// <summary>
27-
/// Deletes a fine-tuned model.
27+
/// Deletes a fine-tuned model.<br/>
28+
/// Deletes a fine-tuned model. The model will be removed from the system and will no longer be available for use.<br/>
29+
/// This operation is irreversible.
2830
/// </summary>
2931
/// <param name="id"></param>
3032
/// <param name="xClientName"></param>

src/libs/Cohere/Generated/Cohere.FinetuningClient.GetFinetunedModel.g.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ partial void ProcessGetFinetunedModelResponseContent(
2424
ref string content);
2525

2626
/// <summary>
27-
/// Returns a fine-tuned model by ID.
27+
/// Returns a fine-tuned model by ID.<br/>
28+
/// Retrieve a fine-tuned model by its ID.
2829
/// </summary>
2930
/// <param name="id"></param>
3031
/// <param name="xClientName"></param>

src/libs/Cohere/Generated/Cohere.FinetuningClient.ListEvents.g.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ partial void ProcessListEventsResponseContent(
3030
ref string content);
3131

3232
/// <summary>
33-
/// Retrieves the chronology of statuses the fine-tuned model has been through.
33+
/// Retrieves the chronology of statuses the fine-tuned model has been through.<br/>
34+
/// Returns a list of events that occurred during the life-cycle of the fine-tuned model.<br/>
35+
/// The events are ordered by creation time, with the most recent event first.<br/>
36+
/// The list can be paginated using `page_size` and `page_token` parameters.
3437
/// </summary>
3538
/// <param name="finetunedModelId"></param>
3639
/// <param name="pageSize"></param>

src/libs/Cohere/Generated/Cohere.FinetuningClient.ListFinetunedModels.g.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ partial void ProcessListFinetunedModelsResponseContent(
2828
ref string content);
2929

3030
/// <summary>
31-
/// Lists fine-tuned models.
31+
/// Lists fine-tuned models.<br/>
32+
/// Returns a list of fine-tuned models that the user has access to.
3233
/// </summary>
3334
/// <param name="pageSize"></param>
3435
/// <param name="pageToken"></param>

src/libs/Cohere/Generated/Cohere.FinetuningClient.ListTrainingStepMetrics.g.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ partial void ProcessListTrainingStepMetricsResponseContent(
2828
ref string content);
2929

3030
/// <summary>
31-
/// Retrieves metrics measured during the training of a fine-tuned model.
31+
/// Retrieves metrics measured during the training of a fine-tuned model.<br/>
32+
/// Returns a list of metrics measured during the training of a fine-tuned model.<br/>
33+
/// The metrics are ordered by step number, with the most recent step first.<br/>
34+
/// The list can be paginated using `page_size` and `page_token` parameters.
3235
/// </summary>
3336
/// <param name="finetunedModelId"></param>
3437
/// <param name="pageSize"></param>

src/libs/Cohere/Generated/Cohere.FinetuningClient.UpdateFinetunedModel.g.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ partial void ProcessUpdateFinetunedModelResponseContent(
2626
ref string content);
2727

2828
/// <summary>
29-
/// Updates a fine-tuned model.
29+
/// Updates a fine-tuned model.<br/>
30+
/// Updates the fine-tuned model with the given ID. The model will be updated with the new settings and name provided in the request body.
3031
/// </summary>
3132
/// <param name="id"></param>
3233
/// <param name="xClientName"></param>
@@ -406,7 +407,8 @@ partial void ProcessUpdateFinetunedModelResponseContent(
406407
}
407408

408409
/// <summary>
409-
/// Updates a fine-tuned model.
410+
/// Updates a fine-tuned model.<br/>
411+
/// Updates the fine-tuned model with the given ID. The model will be updated with the new settings and name provided in the request body.
410412
/// </summary>
411413
/// <param name="id"></param>
412414
/// <param name="xClientName"></param>

src/libs/Cohere/Generated/Cohere.IFinetuningClient.CreateFinetunedModel.g.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ namespace Cohere
55
public partial interface IFinetuningClient
66
{
77
/// <summary>
8-
/// Trains and deploys a fine-tuned model.
8+
/// Trains and deploys a fine-tuned model.<br/>
9+
/// Creates a new fine-tuned model. The model will be trained on the dataset specified in the request body. The training process may take some time, and the model will be available once the training is complete.
910
/// </summary>
1011
/// <param name="xClientName"></param>
1112
/// <param name="request"></param>
@@ -17,7 +18,8 @@ public partial interface IFinetuningClient
1718
global::System.Threading.CancellationToken cancellationToken = default);
1819

1920
/// <summary>
20-
/// Trains and deploys a fine-tuned model.
21+
/// Trains and deploys a fine-tuned model.<br/>
22+
/// Creates a new fine-tuned model. The model will be trained on the dataset specified in the request body. The training process may take some time, and the model will be available once the training is complete.
2123
/// </summary>
2224
/// <param name="xClientName"></param>
2325
/// <param name="name">

src/libs/Cohere/Generated/Cohere.IFinetuningClient.DeleteFinetunedModel.g.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ namespace Cohere
55
public partial interface IFinetuningClient
66
{
77
/// <summary>
8-
/// Deletes a fine-tuned model.
8+
/// Deletes a fine-tuned model.<br/>
9+
/// Deletes a fine-tuned model. The model will be removed from the system and will no longer be available for use.<br/>
10+
/// This operation is irreversible.
911
/// </summary>
1012
/// <param name="id"></param>
1113
/// <param name="xClientName"></param>

src/libs/Cohere/Generated/Cohere.IFinetuningClient.GetFinetunedModel.g.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ namespace Cohere
55
public partial interface IFinetuningClient
66
{
77
/// <summary>
8-
/// Returns a fine-tuned model by ID.
8+
/// Returns a fine-tuned model by ID.<br/>
9+
/// Retrieve a fine-tuned model by its ID.
910
/// </summary>
1011
/// <param name="id"></param>
1112
/// <param name="xClientName"></param>

0 commit comments

Comments
 (0)