From 6e0427140e1ec0882921caea318783ebdef1e27b Mon Sep 17 00:00:00 2001 From: Alexander <123825756+JohannFaust666@users.noreply.github.com> Date: Tue, 15 Apr 2025 14:19:03 +0700 Subject: [PATCH] async_create comment update there's no model in docstring --- replicate/training.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/replicate/training.py b/replicate/training.py index 28e28b4a..c577a07f 100644 --- a/replicate/training.py +++ b/replicate/training.py @@ -314,8 +314,9 @@ async def async_create( ) -> Training: """ Create a new training using the specified model version as a base. - + Args: + model: The model identifier (e.g., "owner/name") or a Model object. version: The ID of the base model version that you're using to train a new model version. input: The input to the training. destination: The desired model to push to in the format `{owner}/{model_name}`. This should be an existing model owned by the user or organization making the API request.