@@ -44,6 +44,8 @@ def list_finetuned_models(
4444 request_options : typing .Optional [RequestOptions ] = None ,
4545 ) -> HttpResponse [ListFinetunedModelsResponse ]:
4646 """
47+ Returns a list of fine-tuned models that the user has access to.
48+
4749 Parameters
4850 ----------
4951 page_size : typing.Optional[int]
@@ -164,6 +166,8 @@ def create_finetuned_model(
164166 self , * , request : FinetunedModel , request_options : typing .Optional [RequestOptions ] = None
165167 ) -> HttpResponse [CreateFinetunedModelResponse ]:
166168 """
169+ 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.
170+
167171 Parameters
168172 ----------
169173 request : FinetunedModel
@@ -271,6 +275,8 @@ def get_finetuned_model(
271275 self , id : str , * , request_options : typing .Optional [RequestOptions ] = None
272276 ) -> HttpResponse [GetFinetunedModelResponse ]:
273277 """
278+ Retrieve a fine-tuned model by its ID.
279+
274280 Parameters
275281 ----------
276282 id : str
@@ -374,6 +380,9 @@ def delete_finetuned_model(
374380 self , id : str , * , request_options : typing .Optional [RequestOptions ] = None
375381 ) -> HttpResponse [DeleteFinetunedModelResponse ]:
376382 """
383+ Deletes a fine-tuned model. The model will be removed from the system and will no longer be available for use.
384+ This operation is irreversible.
385+
377386 Parameters
378387 ----------
379388 id : str
@@ -483,6 +492,8 @@ def update_finetuned_model(
483492 request_options : typing .Optional [RequestOptions ] = None ,
484493 ) -> HttpResponse [UpdateFinetunedModelResponse ]:
485494 """
495+ 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.
496+
486497 Parameters
487498 ----------
488499 id : str
@@ -612,6 +623,10 @@ def list_events(
612623 request_options : typing .Optional [RequestOptions ] = None ,
613624 ) -> HttpResponse [ListEventsResponse ]:
614625 """
626+ Returns a list of events that occurred during the life-cycle of the fine-tuned model.
627+ The events are ordered by creation time, with the most recent event first.
628+ The list can be paginated using `page_size` and `page_token` parameters.
629+
615630 Parameters
616631 ----------
617632 finetuned_model_id : str
@@ -740,6 +755,10 @@ def list_training_step_metrics(
740755 request_options : typing .Optional [RequestOptions ] = None ,
741756 ) -> HttpResponse [ListTrainingStepMetricsResponse ]:
742757 """
758+ Returns a list of metrics measured during the training of a fine-tuned model.
759+ The metrics are ordered by step number, with the most recent step first.
760+ The list can be paginated using `page_size` and `page_token` parameters.
761+
743762 Parameters
744763 ----------
745764 finetuned_model_id : str
@@ -864,6 +883,8 @@ async def list_finetuned_models(
864883 request_options : typing .Optional [RequestOptions ] = None ,
865884 ) -> AsyncHttpResponse [ListFinetunedModelsResponse ]:
866885 """
886+ Returns a list of fine-tuned models that the user has access to.
887+
867888 Parameters
868889 ----------
869890 page_size : typing.Optional[int]
@@ -984,6 +1005,8 @@ async def create_finetuned_model(
9841005 self , * , request : FinetunedModel , request_options : typing .Optional [RequestOptions ] = None
9851006 ) -> AsyncHttpResponse [CreateFinetunedModelResponse ]:
9861007 """
1008+ 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.
1009+
9871010 Parameters
9881011 ----------
9891012 request : FinetunedModel
@@ -1091,6 +1114,8 @@ async def get_finetuned_model(
10911114 self , id : str , * , request_options : typing .Optional [RequestOptions ] = None
10921115 ) -> AsyncHttpResponse [GetFinetunedModelResponse ]:
10931116 """
1117+ Retrieve a fine-tuned model by its ID.
1118+
10941119 Parameters
10951120 ----------
10961121 id : str
@@ -1194,6 +1219,9 @@ async def delete_finetuned_model(
11941219 self , id : str , * , request_options : typing .Optional [RequestOptions ] = None
11951220 ) -> AsyncHttpResponse [DeleteFinetunedModelResponse ]:
11961221 """
1222+ Deletes a fine-tuned model. The model will be removed from the system and will no longer be available for use.
1223+ This operation is irreversible.
1224+
11971225 Parameters
11981226 ----------
11991227 id : str
@@ -1303,6 +1331,8 @@ async def update_finetuned_model(
13031331 request_options : typing .Optional [RequestOptions ] = None ,
13041332 ) -> AsyncHttpResponse [UpdateFinetunedModelResponse ]:
13051333 """
1334+ 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.
1335+
13061336 Parameters
13071337 ----------
13081338 id : str
@@ -1432,6 +1462,10 @@ async def list_events(
14321462 request_options : typing .Optional [RequestOptions ] = None ,
14331463 ) -> AsyncHttpResponse [ListEventsResponse ]:
14341464 """
1465+ Returns a list of events that occurred during the life-cycle of the fine-tuned model.
1466+ The events are ordered by creation time, with the most recent event first.
1467+ The list can be paginated using `page_size` and `page_token` parameters.
1468+
14351469 Parameters
14361470 ----------
14371471 finetuned_model_id : str
@@ -1560,6 +1594,10 @@ async def list_training_step_metrics(
15601594 request_options : typing .Optional [RequestOptions ] = None ,
15611595 ) -> AsyncHttpResponse [ListTrainingStepMetricsResponse ]:
15621596 """
1597+ Returns a list of metrics measured during the training of a fine-tuned model.
1598+ The metrics are ordered by step number, with the most recent step first.
1599+ The list can be paginated using `page_size` and `page_token` parameters.
1600+
15631601 Parameters
15641602 ----------
15651603 finetuned_model_id : str
0 commit comments