ballerinax/azure.openai.finetunes Ballerina library

1.0.1

Overview

This is a generated connector from Azure OpenAI Files API, Azure OpenAI Fine Tunes API, and Azure OpenAI Models API OpenAPI specification.

The Azure OpenAI Files API gives access to data files related operations such as delete, get, get content, import, list, and upload. The Azure OpenAI Fine Tunes API gives access to fine-tuning of base models and related operations such as create, cancel, delete, get, get event, and list. The Azure OpenAI Models API gives access to details about the existing models.

Prerequisites

Quickstart

To use the Azure OpenAI Fine Tunes connector in your Ballerina application, update the .bal file as follows:

Step 1: Import the connector

Import the ballerinax/azure.openai.finetunes module into the Ballerina project.

Copy
import ballerinax/azure.openai.finetunes;

Step 2: Create a new connector instance

Create and initialize a finetunes:Client with the obtained apiKey and a serviceUrl from the Azure OpenAI resource

Copy
final finetunes:Client finetunesClient = check new (
    apiKeyConfig = {auth: {apiKey: apiKey}},
    serviceUrl = serviceUrl
);

Step 3: Invoke connector operation

  1. Now you can use the operations available within the connector.

Note: that they are in the form of remote operations.

Following is an example of uploading a file and finetuning curie base model:

Uploading the data file from the local machine.

Copy
finetunes:Files_body filePayload = {
    purpose: "fine-tune",
    file: {fileContent: check io:fileReadBytes("sample.jsonl"), fileName: "sample.jsonl"}
};

finetunes:File fileResult = check finetunesClient->/files.post("2022-12-01", filePayload);

Once the file is uploaded, get the file ID from the response and use it to finetune the base model.

Copy
finetunes:FineTuneCreation finetunePayload = {
    training_file: "file-5272129a77284a188239a68656fc7890", 
    model: "curie"
};

finetunes:FineTune fineTune = check finetunesClient->/fine\-tunes.post("2022-12-01", finetunePayload);
  1. Use bal run command to compile and run the Ballerina program.

Import

import ballerinax/azure.openai.finetunes;Copy

Metadata

Released date: 12 months ago

Version: 1.0.1

License: Apache-2.0


Compatibility

Platform: any

Ballerina version: 2201.4.1

GraalVM compatible: Yes


Pull count

Total: 0

Current verison: 0


Weekly downloads


Source repository


Keywords

AI/Fine-tunes

Vendor/Microsoft

Cost/Paid

Fine-tunes

Files

Models

Azure OpenAI


Contributors

Other versions

1.0.1

1.0.0