From 82d8e7d3f36133863f2bfd17740aaad7fd994775 Mon Sep 17 00:00:00 2001 From: Eric Allam Date: Thu, 24 Aug 2023 15:24:30 +0100 Subject: [PATCH] Added the new tasks to the openai docs --- docs/integrations/apis/openai.mdx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/integrations/apis/openai.mdx b/docs/integrations/apis/openai.mdx index f37f35e6b..d55df8363 100644 --- a/docs/integrations/apis/openai.mdx +++ b/docs/integrations/apis/openai.mdx @@ -93,8 +93,11 @@ Tasks that are marked as "long-running" can last longer than your serverless tim | `listFineTunes` | Lists the available fine-tunes. | | `retrieveFineTune` | Retrieves a specific fine-tune by ID. | | `cancelFineTune` | Cancels a specific fine-tune by ID. | -| `listFineTuneEvents` | Lists the events for a specific fine-tune by ID. | -| `deleteFineTune` | Deletes a specific fine-tune by ID. | +| `createFineTuningJob` | Creates a job that fine-tunes a specified model from a given dataset. | +| `retrieveFineTuningJob` | Get info about a fine-tuning job. | +| `cancelFineTuningJob` | Cancel a fine-tuning job | +| `listFineTuningJobEvents` | List events for a fine-tuning job | +| `listFineTuningJobs` | List fine tuning jobs | ## Examples