openai_dart 0.4.4 openai_dart: ^0.4.4 copied to clipboard
Dart client for the OpenAI API. Supports chat (GPT-4o, o1, etc.), completions, embeddings, images (DALL·E 3), assistants (threads, vector stores, etc.), batch, fine-tuning, etc.
OpenAI Dart Client #
Unofficial Dart client for OpenAI API.
Note: If you are looking for a client for the Realtime API, please check the openai_realtime_dart package.
Features #
- Generated from the official OpenAI OpenAPI specification
- Fully type-safe, documented and tested
- All platforms supported
- Authentication with organization support
- Custom base URL, headers and query params support (e.g. HTTP proxies)
- Custom HTTP client support (e.g. SOCKS5 proxies or advanced use cases)
- Partial Azure OpenAI API support
- It can be used to consume OpenAI-compatible APIs like OpenRouter, xAI, Groq,GitHub Models, TogetherAI, Anyscale, One API, Llamafile, GPT4All, FastChat, etc.
Supported endpoints:
- Chat (with text, image, audio, structured outputs, tools and streaming support)
- Completions (legacy)
- Embeddings
- Fine-tuning
- Batch
- Images
- Models
- Moderations
- Assistants v2 (with structured outputs, tools and streaming support)
beta
- Threads
- Messages
- Runs
- Run Steps
- Vector Stores
- Vector Store Files
- Vector Store File Batches
Table of contents #
Usage #
Authentication #
The OpenAI API uses API keys for authentication. Visit your API Keys page to retrieve the API key you'll use in your requests.
Remember that your API key is a secret!
Do not share it with others or expose it in any client-side code (browsers, apps). Production requests must be routed through your own backend server where your API key can be securely loaded from an environment variable or key management service.
final openaiApiKey = Platform.environment['OPENAI_API_KEY'];
final client = OpenAIClient(apiKey: openaiApiKey);
Organization (optional)
For users who belong to multiple organizations, you can specify which organization is used for an API request. Usage from these API requests will count against the specified organization's subscription quota.
final client = OpenAIClient(
apiKey: openaiApiKey,
organization: 'org-dtDDtkEGoFccn5xaP5W1p3Rr',
);
Chat #
Given a list of messages comprising a conversation, the model will return a response.
Related guide: Chat Completions
Create chat completion:
final res = await client.createChatCompletion(
request: CreateChatCompletionRequest(
model: ChatCompletionModel.modelId('gpt-4o'),
messages: [
ChatCompletionMessage.system(
content: 'You are a helpful assistant.',
),
ChatCompletionMessage.user(
content: ChatCompletionUserMessageContent.string('Hello!'),
),
],
temperature: 0,
),
);
print(res.choices.first.message.content);
// Hello! How can I assist you today?
ChatCompletionModel
is a sealed class that offers two ways to specify the model:
ChatCompletionModel.modelId('model-id')
: the model ID as string (e.g.'gpt-4o'
or your fine-tuned model ID).ChatCompletionModel.model(ChatCompletionModels.gpt4o)
: a value fromChatCompletionModels
enum which lists all of the available models.
ChatCompletionMessage
is a sealed class that supports the following message types:
ChatCompletionMessage.system()
: a system message.ChatCompletionMessage.user()
: a user message.ChatCompletionMessage.assistant()
: an assistant message.ChatCompletionMessage.tool()
: a tool message.ChatCompletionMessage.function()
: a function message (deprecated in favor of tools).
ChatCompletionMessage.user()
takes a ChatCompletionUserMessageContent
object that supports the following content types:
ChatCompletionUserMessageContent.string('content')
: string content.ChatCompletionUserMessageContent.parts([...])
: multi-modal content (check the 'Multi-modal prompt' section below).ChatCompletionMessageContentPart.text('content')
: text content.ChatCompletionMessageContentPart.image(...)
: image content (URL or base64-encoded image).
Stream chat completion:
final stream = client.createChatCompletionStream(
request: CreateChatCompletionRequest(
model: ChatCompletionModel.modelId('gpt-4o'),
messages: [
ChatCompletionMessage.system(
content:
'You are a helpful assistant that replies only with numbers '
'in order without any spaces or commas',
),
ChatCompletionMessage.user(
content: ChatCompletionUserMessageContent.string(
'List the numbers from 1 to 9',
),
),
],
),
);
await for (final res in stream) {
print(res.choices.first.delta.content);
}
// 123
// 456
// 789
Multi-modal prompt (text/image/audio):
You can either provide the image URL:
final res = await client.createChatCompletion(
request: CreateChatCompletionRequest(
model: ChatCompletionModel.model(
ChatCompletionModels.gpt4VisionPreview,
),
messages: [
ChatCompletionMessage.system(
content: 'You are a helpful assistant.',
),
ChatCompletionMessage.user(
content: ChatCompletionUserMessageContent.parts(
[
ChatCompletionMessageContentPart.text(
text: 'What fruit is this?',
),
ChatCompletionMessageContentPart.image(
imageUrl: ChatCompletionMessageImageUrl(
url: 'https://upload.wikimedia.org/wikipedia/commons/9/92/95apple.jpeg',
),
),
],
),
),
],
),
);
print(res.choices.first.message.content);
// The fruit in the image is an apple.
Or provide the base64-encoded image:
//...
ChatCompletionMessage.user(
content: ChatCompletionUserMessageContent.parts(
[
ChatCompletionMessageContentPart.text(
text: 'What fruit is this?',
),
ChatCompletionMessageContentPart.image(
imageUrl: ChatCompletionMessageImageUrl(
url: '/9j/4AAQSkZJRgABAQAAAQABAAD/2wB...P3s/XHQ8cE/nmiupbL0+fz/r/MjnSbsr69/Rdu1j//2Q==',
detail: ChatCompletionMessageImageDetail.high,
),
),
],
),
),
//...
Check the Vision guide for more information.
In addition to generating text and images, some models enable you to generate a spoken audio response to a prompt:
final res = await client.createChatCompletion(
request: CreateChatCompletionRequest(
model: ChatCompletionModel.model(
ChatCompletionModels.gpt4oAudioPreview,
),
modalities: [
ChatCompletionModality.text,
ChatCompletionModality.audio,
],
audio: ChatCompletionAudioOptions(
voice: ChatCompletionAudioVoice.alloy,
format: ChatCompletionAudioFormat.wav,
),
messages: [
ChatCompletionMessage.user(
content: ChatCompletionUserMessageContent.string(
'Is a golden retriever a good family dog?',
),
),
],
),
);
final choice = res.choices.first;
final audio = choice.message.audio;
print(audio?.id);
print(audio?.expiresAt);
print(audio?.transcript);
print(audio?.data);
And to use audio inputs to prompt the model:
final res = await client.createChatCompletion(
request: CreateChatCompletionRequest(
model: ChatCompletionModel.model(
ChatCompletionModels.gpt4oAudioPreview,
),
modalities: [
ChatCompletionModality.text,
ChatCompletionModality.audio,
],
audio: ChatCompletionAudioOptions(
voice: ChatCompletionAudioVoice.alloy,
format: ChatCompletionAudioFormat.wav,
),
messages: [
ChatCompletionMessage.user(
content: ChatCompletionUserMessageContent.parts([
ChatCompletionMessageContentPart.text(
text: 'Do what the recording says',
),
ChatCompletionMessageContentPart.audio(
inputAudio: ChatCompletionMessageInputAudio(
data: 'UklGRoYZAQBXQVZFZm10I...//X//v8FAOj/GAD+/7z/',
format: ChatCompletionMessageInputAudioFormat.wav,
),
),
]),
),
],
);
);
final choice = res.choices.first;
final audio = choice.message.audio;
print(audio?.id);
print(audio?.expiresAt);
print(audio?.transcript);
print(audio?.data);
Check the Audio generation guide for more information.
Structured output: (docs)
Structured Outputs is a feature that ensures the model will always generate responses that adhere to your supplied JSON Schema.
final res = await client.createChatCompletion(
request: CreateChatCompletionRequest(
model: ChatCompletionModel.model(
ChatCompletionModels.gpt4oMini,
),
messages: [
ChatCompletionMessage.system(
content: 'You are a helpful assistant. That extracts names from text.',
),
ChatCompletionMessage.user(
content: ChatCompletionUserMessageContent.string(
'John, Mary, and Peter.',
),
),
],
temperature: 0,
responseFormat: ResponseFormat.jsonSchema(
jsonSchema: JsonSchemaObject(
name: 'Names',
description: 'A list of names',
strict: true,
schema: {
'type': 'object',
'properties': {
'names': {
'type': 'array',
'items': {
'type': 'string',
},
},
},
'additionalProperties': false,
'required': ['names'],
},
),
),
),
);
// {"names":["John","Mary","Peter"]}
JSON mode: (docs)
JSON mode is a more basic version of the Structured Outputs feature. While JSON mode ensures that model output is valid JSON, Structured Outputs reliably matches the model's output to the schema you specify. It us recommended to use Structured Outputs if it is supported for your use case.
final res = await client.createChatCompletion(
request: CreateChatCompletionRequest(
model: ChatCompletionModel.model(
ChatCompletionModels.gpt41106Preview,
),
messages: [
ChatCompletionMessage.system(
content:
'You are a helpful assistant. That extracts names from text '
'and returns them in a JSON array.',
),
ChatCompletionMessage.user(
content: ChatCompletionUserMessageContent.string(
'John, Mary, and Peter.',
),
),
],
temperature: 0,
responseFormat: ChatCompletionResponseFormat(
type: ChatCompletionResponseFormatType.jsonObject,
),
),
);
// { "names": ["John", "Mary", "Peter"] }
Tools: (docs)
Tool calling allows you to connect models to external tools and systems.
const function = FunctionObject(
name: 'get_current_weather',
description: 'Get the current weather in a given location',
parameters: {
'type': 'object',
'properties': {
'location': {
'type': 'string',
'description': 'The city and state, e.g. San Francisco, CA',
},
'unit': {
'type': 'string',
'description': 'The unit of temperature to return',
'enum': ['celsius', 'fahrenheit'],
},
},
'required': ['location'],
},
);
const tool = ChatCompletionTool(
type: ChatCompletionToolType.function,
function: function,
);
final res1 = await client.createChatCompletion(
request: CreateChatCompletionRequest(
model: ChatCompletionModel.model(
ChatCompletionModels.gpt4oMini,
),
messages: [
ChatCompletionMessage.system(
content: 'You are a helpful assistant.',
),
ChatCompletionMessage.user(
content: ChatCompletionUserMessageContent.string(
'What’s the weather like in Boston right now?',
),
),
],
tools: [tool],
toolChoice: ChatCompletionToolChoiceOption.tool(
ChatCompletionNamedToolChoice(
type: ChatCompletionNamedToolChoiceType.function,
function: ChatCompletionFunctionCallOption(name: function.name),
),
),
),
);
final toolCall = res1.choices.first.message.toolCalls!.first;
final functionCall = toolCall.function;
final arguments = json.decode(functionCall.arguments) as Map<String, dynamic>;
final functionResult = getCurrentWeather(arguments['location'], arguments['unit']);
final res2 = await client.createChatCompletion(
request: CreateChatCompletionRequest(
model: ChatCompletionModel.modelId('gpt-4-turbo'),
messages: [
ChatCompletionMessage.system(
content: 'You are a helpful assistant.',
),
ChatCompletionMessage.user(
content: ChatCompletionUserMessageContent.string(
'What’s the weather like in Boston right now?',
),
),
ChatCompletionMessage.tool(
toolCallId: toolCall.id,
content: json.encode(functionResult),
),
],
tools: [tool],
),
);
final answer = res2.choices.first.message.content;
// The weather in Boston right now is sunny with a temperature of 22°C
You can enable Structured Outputs for your tools by setting strict: true
in your FunctionObject
definition. Structured Outputs ensures that the arguments generated by the model for a tool call exactly match the JSON Schema you provided in the tool definition.
Model distillation:
You can store the output of a chat completion request for use in model distillation or evaluation.
final stream = client.createChatCompletionStream(
request: CreateChatCompletionRequest(
model: ChatCompletionModel.modelId('gpt-4o'),
store: true,
messages: [
//...
],
),
);
You can also attach metadata to the request to help you filter and search for stored completions later in the OpenAI Dashboard.
final stream = client.createChatCompletionStream(
request: CreateChatCompletionRequest(
model: ChatCompletionModel.modelId('gpt-4o'),
store: true,
metadata: {
'customer_id': '12345',
'session_id': 'abcde',
},
messages: [
//...
],
),
);
Function calling: (deprecated in favor of tools)
const function = FunctionObject(
name: 'get_current_weather',
description: 'Get the current weather in a given location',
parameters: {
'type': 'object',
'properties': {
'location': {
'type': 'string',
'description': 'The city and state, e.g. San Francisco, CA',
},
'unit': {
'type': 'string',
'description': 'The unit of temperature to return',
'enum': ['celsius', 'fahrenheit'],
},
},
'required': ['location'],
},
);
final res1 = await client.createChatCompletion(
request: CreateChatCompletionRequest(
model: ChatCompletionModel.modelId('gpt-4o-mini'),
messages: [
ChatCompletionMessage.system(
content: 'You are a helpful assistant.',
),
ChatCompletionMessage.user(
content: ChatCompletionUserMessageContent.string(
'What’s the weather like in Boston right now?',
),
),
],
functions: [function],
),
);
final arguments = json.decode(
res1.choices.first.message.functionCall!.arguments,
) as Map<String, dynamic>;
final functionResult = getCurrentWeather(arguments['location'], arguments['unit']);
final res2 = await client.createChatCompletion(
request: CreateChatCompletionRequest(
model: ChatCompletionModel.modelId('gpt-4o-mini'),
messages: [
ChatCompletionMessage.system(
content: 'You are a helpful assistant.',
),
ChatCompletionMessage.user(
content: ChatCompletionUserMessageContent.string(
'What’s the weather like in Boston right now?',
),
),
ChatCompletionMessage.function(
name: function.name,
content: json.encode(functionResult),
),
],
functions: [function],
),
);
final answer = res2.choices.first.message.content;
// The weather in Boston right now is sunny with a temperature of 22°C
Completions (legacy) #
Given a prompt, the model will return one or more predicted completions, and can also return the probabilities of alternative tokens at each position.
Most developer should use our Chat Completions API to leverage our best and newest models. Most models that support the legacy Completions endpoint will be shut off on January 4th, 2024.
Create completion:
final res = await client.createCompletion(
request: CreateCompletionRequest(
model: CompletionModel.modelId('gpt-3.5-turbo-instruct'),
prompt: CompletionPrompt.string('Say this is a test'),
maxTokens: 7,
temperature: 0,
),
);
print(res.choices.first.text);
// This is a test.
CompletionModel
is a sealed class that offers two ways to specify the model:
CompletionModel.modelId('model-id')
: the model ID as string (e.g.'gpt-3.5-turbo-instruct'
or your fine-tuned model ID).CompletionModel.model(CompletionModels.gpt35TurboInstruct)
: a value fromCompletionModels
enum which lists all of the available models.
CompletionPrompt
is a sealed class that offers four ways to specify the prompt:
CompletionPrompt.string('prompt')
: the prompt as string.CompletionPrompt.tokens([...])
: the tokenized prompt.CompletionPrompt.listString(['prompt'])
: batch of string prompts.CompletionPrompt.listTokens([[...]])
: batch of tokenized prompts.
Stream completion:
final stream = client.createCompletionStream(
request: CreateCompletionRequest(
model: 'gpt-3.5-turbo-instruct',
prompt: [
'Say this is a test',
],
maxTokens: 7,
temperature: 0,
),
);
await for (final res in stream) {
print(res.choices.first.text);
}
Embeddings #
Get a vector representation of a given input that can be easily consumed by machine learning models and algorithms.
Related guide: Embeddings
Create embedding:
final res = await client.createEmbedding(
request: CreateEmbeddingRequest(
model: EmbeddingModel.modelId('text-embedding-3-small'),
input: EmbeddingInput.string('The food was delicious and the waiter...'),
),
);
print(res.data.first.embeddingVector);
// [0.002253932, -0.009333183, 0.01574578, -0.007790351, -0.004711035, ...]
EmbeddingModel
is a sealed class that offers two ways to specify the model:
EmbeddingModel.modelId('model-id')
: the model ID as string.EmbeddingModel.model(EmbeddingModels.textEmbedding3Small)
: a value fromEmbeddingModels
enum which lists all of the available models.
EmbeddingInput
is a sealed class that offers four ways to specify the embedding input:
EmbeddingInput.string('input')
: the input as string.EmbeddingInput.tokens([...])
: the tokenized input.EmbeddingInput.listString(['input'])
: batch of string inputs.EmbeddingInput.listTokens([[...]])
: batch of tokenized inputs.
You can also request the embedding vector encoded as a base64 string:
final res = await client.createEmbedding(
request: CreateEmbeddingRequest(
model: EmbeddingModel.modelId('text-embedding-3-small'),
input: EmbeddingInput.string('The food was delicious and the waiter...'),
encodingFormat: EmbeddingEncodingFormat.base64,
),
);
print(res.data.first.embeddingVectorBase64);
// tLYTOzXqGLxL/YA8M0b/uwdfmrsdNXM8iJIfvEOOHL3IJeK7Ok3rv...
Fine-tuning #
Manage fine-tuning jobs to tailor a model to your specific training data.
Related guide: Fine-tune models
Create fine-tuning job:
const request = CreateFineTuningJobRequest(
model: FineTuningModel.modelId('gpt-4o-mini'),
trainingFile: 'file-abc123',
validationFile: 'file-abc123',
hyperparameters: FineTuningJobHyperparameters(
nEpochs: FineTuningNEpochs.mode(FineTuningNEpochsOptions.auto),
),
integrations: [],
seed: 999,
);
final res = await client.createFineTuningJob(request: request);
List fine-tuning jobs:
final res = await client.listPaginatedFineTuningJobs();
Retrieve fine-tuning job:
final res = await client.retrieveFineTuningJob(
fineTuningJobId: 'ft-AF1WoRqd3aJAHsqc9NY7iL8F',
);
List fine-tuning job checkpoints:
final res = await client.listFineTuningJobCheckpoints(
fineTuningJobId: 'ft-AF1WoRqd3a
);
Cancel fine-tuning job:
final res = await client.cancelFineTuningJob(
fineTuningJobId: 'ft-AF1WoRqd3aJAHsqc9NY7iL8F',
);
List fine-tuning events:
final res = await client.listFineTuningEvents(
fineTuningJobId: 'ft-AF1WoRqd3aJAHsqc9NY7iL8F',
);
Batch #
Create large batches of API requests to run asynchronously
Create batch:
const request = CreateBatchRequest(
inputFileId: 'file-abc123',
endpoint: BatchEndpoint.v1ChatCompletions,
completionWindow: BatchCompletionWindow.v24h,
);
final res = await client.createBatch(request: request);
Retrieve batch:
final res = await client.retrieveBatch(
batchId: 'batch_abc123',
);
Cancel batch:
final res = await client.cancelBatch(
batchId: 'batch_abc123',
);
List batches:
final res = await client.listBatches();
Images #
Given a prompt and/or an input image, the model will generate a new image.
Related guide: Image generation
Create image:
final res = await client.createImage(
request: CreateImageRequest(
model: CreateImageRequestModel.model(ImageModels.dallE3),
prompt: 'A cute baby sea otter',
quality: ImageQuality.hd,
size: ImageSize.v1024x1792,
style: ImageStyle.natural,
),
);
print(res.data.first.url);
// https://oaidalleapiprodscus.blob.core.windows.net/private/...
Models #
List and describe the various models available in the API. You can refer to the Models documentation to understand what models are available and the differences between them.
List models:
final res = await client.listModels();
print(res.data.first.id);
// text-search-babbage-doc-001
Retrieve model:
final res = await client.retrieveModel(model: 'gpt-4');
print(res.ownedBy);
// openai
Delete fine-tune model:
final res = await client.deleteModel(
model: 'ft:gpt-3.5-turbo-0613:langchain::7qTVM5AR',
);
print(res.deleted);
// true
Moderations #
The moderations endpoint is a tool you can use to check whether text or images are potentially harmful. Once harmful content is identified, developers can take corrective action like filtering content or intervening with user accounts creating offending content. The moderation endpoint is free to use.
Related guide: Moderations
Create moderation:
final res = await client.createModeration(
request: CreateModerationRequest(
model: ModerationModel.model(ModerationModels.omniModerationLatest),
input: ModerationInput.string('I want to kill them.'),
),
);
print(res.results.first.categories.violence);
// true
print(res.results.first.categoryScores.violence);
// 0.9533573696456176
ModerationModel
is a sealed class that offers two ways to specify the model:
ModerationModel.modelId('model-id')
: the model ID as string.ModerationModel.model(ModerationModels.omniModerationLatest)
: a value fromModerationModels
enum which lists all the available models.
ModerationInput
is a sealed class that offers four ways to specify the embedding input:
ModerationInput.string('input')
: the input as string.ModerationInput.listString(['input'])
: batch of string inputs.ModerationInput.listModerationInputObject([ModerationInputObject.imageUrl(...), ModerationInputObject.text(...)])
: batch of multi-modal inputs.
Create multi-modal moderation:
final res = await client.createModeration(
request: CreateModerationRequest(
model: ModerationModel.model(ModerationModels.omniModerationLatest),
input: ModerationInput.listModerationInputObject(
[
ModerationInputObject.imageUrl(
imageUrl: ModerationInputObjectImageUrlImageUrl(
url: 'https://upload.wikimedia.org/wikipedia/commons/9/92/95apple.jpeg',
),
),
ModerationInputObject.text(
text: 'I want to kill the apple.',
),
],
),
),
);
print(res.results.first.categories.violence);
// true
Assistants (beta) #
Build assistants that can call models and use tools to perform tasks.
Get started with the Assistants API
Create assistant:
final res = await client.createAssistant(
request: CreateAssistantRequest(
model: AssistantModel.modelId('gpt-4'),
name: 'Math Tutor',
description: 'Help students with math homework',
instructions: 'You are a personal math tutor. Write and run code to answer math questions.',
tools: [AssistantTools.codeInterpreter()],
),
);
List assistants:
final res = await client.listAssistants();
Retrieve assistant:
final res = await client.getAssistant(assistantId: assistantId);
Modify assistant:
final res = await client.modifyAssistant(
assistantId: assistantId,
request: ModifyAssistantRequest(name: 'New name'),
);
Delete assistant:
final res = await client.deleteAssistant(assistantId: assistantId);
Threads (beta) #
Create threads that assistants can interact with.
Related guide: Assistants
Create thread:
final res = await client.createThread(
request: CreateThreadRequest(),
);
Retrieve thread:
final res = await client.getThread(threadId: threadId);
Modify thread:
final res = await client.modifyThread(
threadId: threadId,
request: ModifyThreadRequest(metadata: {'new': 'metadata'}),
);
Delete thread:
final res = await client.deleteThread(threadId: threadId);
Messages (beta) #
Create messages within threads.
Related guide: Assistants
Create message:
final res = await client.createThreadMessage(
threadId: threadId,
request: CreateMessageRequest(
role: MessageRole.user,
content: CreateMessageRequestContent.text(
'I need to solve the equation `3x + 11 = 14`. Can you help me?',
),
),
);
If you need to send multi-modal content, you can use the CreateMessageRequestContent.parts([...])
method:
final res = await client.createThreadMessage(
threadId: threadId,
request: CreateMessageRequest(
role: MessageRole.user,
content: CreateMessageRequestContent.parts([
MessageContent.text(
text: MessageContentText(
value: 'Some text...',
),
),
MessageContent.imageFile(
imageFile: MessageContentImageFile(fileId: 'file-abc123'),
),
MessageContent.imageUrl(
imageUrl: MessageContentImageUrl(
url: 'https://example.com/image.jpg', // or base64-encoded image
),
),
]),
),
);
List messages:
final res = await client.listThreadMessages(threadId: threadId);
Retrieve message:
final res = await client.getThreadMessage(threadId: threadId, messageId: messageId);
Modify message:
final res = await client.modifyThreadMessage(
threadId: threadId,
messageId: messageId,
request: ModifyMessageRequest(metadata: {'new': 'metadata'}),
);
Delete message:
final res await deleteThreadMessage(threadId: threadId, messageId: messageId);
Runs (beta) #
Represents an execution run on a thread.
Related guide: Assistants
Create run:
final res = await client.createThreadRun(
threadId: threadId,
request: CreateRunRequest(
assistantId: assistantId,
instructions: 'Please address the user as Jane Doe. The user has a premium account.',
),
);
You can also use Structured Outputs to ensure that the model-generated responses adhere to a specific JSON schema:
final res = await client.createThreadRun(
threadId: threadId,
request: CreateRunRequest(
assistantId: assistantId,
instructions: 'You are a helpful assistant that extracts names from text.',
model: CreateRunRequestModel.modelId('gpt-4o'),
responseFormat: CreateRunRequestResponseFormat.responseFormat(
ResponseFormat.jsonSchema(
jsonSchema: JsonSchemaObject(
name: 'Names',
description: 'A list of names',
strict: true,
schema: {
'type': 'object',
'properties': {
'names': {
'type': 'array',
'items': {
'type': 'string',
},
},
},
'additionalProperties': false,
'required': ['names'],
},
),
)
)
),
);
Create run: (streaming)
final stream = client.createThreadRunStream(
threadId: threadId,
request: CreateRunRequest(
assistantId: assistantId,
instructions: 'Please address the user as Jane Doe. The user has a premium account.',
),
);
Create thread and run:
final res = await client.createThreadAndRun(
request: CreateThreadAndRunRequest(
assistantId: assistantId,
instructions: 'Please address the user as Jane Doe. The user has a premium account.',
),
);
Create thread and run: (streaming)
final res = await client.createThreadAndRunStream(
request: CreateThreadAndRunRequest(
assistantId: assistantId,
instructions: 'Please address the user as Jane Doe. The user has a premium account.',
),
);
List runs:
final res = await client.listThreadRuns(threadId: threadId);
List run steps:
final res = await client.listThreadRunSteps(threadId: threadId, runId: runId);
Retrieve run:
final res = await client.getThreadRun(threadId: threadId, runId: runId);
Retrieve run step:
final res = await client.getThreadRunStep(threadId: threadId, runId: runId, stepId: stepId);
Modify run:
final res = await client.modifyThreadRun(
threadId: threadId,
runId: runId,
request: ModifyRunRequest(metadata: {'new': 'metadata'}),
);
Submit tool outputs to run:
final res = await client.submitThreadToolOutputsToRun(
threadId: threadId,
runId: runId,
request: SubmitToolOutputsRunRequest(
toolOutputs: [
RunSubmitToolOutput(
toolCallId: 'call_abc123',
output: '28C',
),
],
),
);
Submit tool outputs to run (streaming):
final res = await client.submitThreadToolOutputsToRunStream(
threadId: threadId,
runId: runId,
request: SubmitToolOutputsRunRequest(
toolOutputs: [
RunSubmitToolOutput(
toolCallId: 'call_abc123',
output: '28C',
),
],
),
);
Cancel a run:
final res = await client.cancelThreadRun(threadId: threadId, runId: runId);
Vector Stores (beta) #
Vector stores are used to store files for use by the file_search
tool.
Related guide: File Search
Create vector store:
final res = await client.createVectorStore(
request: CreateVectorStoreRequest(
name: 'Support FAQ',
),
);
List vector stores:
final res = await client.listVectorStores();
Retrieve vector store:
final res = await client.getVectorStore(vectorStoreId: vectorStoreId);
Modify vector store:
final res = await client.modifyVectorStore(
vectorStoreId: vectorStoreId,
request: UpdateVectorStoreRequest(
name: 'New name',
),
);
Delete vector store:
final res = await client.deleteVectorStore(vectorStoreId: vectorStoreId);
Vector Store Files (beta) #
Vector store files represent files inside a vector store.
Related guide: File Search
Create vector store file:
final res = await client.createVectorStoreFile(
vectorStoreId: vectorStoreId,
request: CreateVectorStoreFileRequest(
fileId: 'file-abc123',
),
);
List vector store files:
final res = await client.listVectorStoreFiles(vectorStoreId: vectorStoreId);
Retrieve vector store file:
final res = await client.getVectorStoreFile(
vectorStoreId: vectorStoreId,
fileId: fileId,
);
Delete vector store file:
final res = await client.deleteVectorStoreFile(
vectorStoreId: vectorStoreId,
fileId: fileId,
);
Vector Store File Batches (beta) #
Vector store file batches represent operations to add multiple files to a vector store.
Related guide: File Search
Create vector store file batch:
final res = await client.createVectorStoreFileBatch(
vectorStoreId: vectorStoreId,
request: CreateVectorStoreFileBatchRequest(
fileIds: ['file-abc123', 'file-abc456'],
),
);
Retrieve vector store file batch:
final res = await client.getVectorStoreFileBatch(
vectorStoreId: vectorStoreId,
batchId: batchId,
);
Cancel vector store file batch:
final res = await client.cancelVectorStoreFileBatch(
vectorStoreId: vectorStoreId,
batchId: batchId,
);
List vector store files in a batch:
final res = await client.listFilesInVectorStoreBatch(
vectorStoreId: vectorStoreId,
batchId: batchId,
);
Advance Usage #
Azure OpenAI Service #
OpenAI's models are also available as an Azure service.
Although the Azure OpenAI API is similar to the official OpenAI API, there are subtle differences between them. This client is intended to be used with the official OpenAI API, but most of the functionality should work with the Azure OpenAI API as well.
If you want to use this client with the Azure OpenAI API (at your own risk), you can do so by instantiating the client as follows:
final client = OpenAIClient(
baseUrl: 'https://YOUR_RESOURCE_NAME.openai.azure.com/openai/deployments/YOUR_DEPLOYMENT_NAME',
headers: { 'api-key': 'YOUR_API_KEY' },
queryParams: { 'api-version': 'API_VERSION' },
);
YOUR_RESOURCE_NAME
: This value can be found in the Keys & Endpoint section when examining your resource from the Azure portal.YOUR_DEPLOYMENT_NAME
: This value will correspond to the custom name you chose for your deployment when you deployed a model. This value can be found under Resource Management > Deployments in the Azure portal.YOUR_API_KEY
: This value can be found in the Keys & Endpoint section when examining your resource from the Azure portal.API_VERSION
: The Azure OpenAI API version to use (e.g.2023-05-15
). Try to use the latest version available, it will probably be the closest to the official OpenAI API.
OpenAI-compatible APIs #
This client can be used to consume APIs that are compatible with the OpenAI API spec.
final client = OpenAIClient(
baseUrl: 'https://openrouter.ai/api/v1',
headers: { 'api-key': 'YOUR_OPEN_ROUTER_API_KEY' },
);
xAI:
final client = OpenAIClient(
baseUrl: 'https://api.x.ai/v1',
headers: { 'api-key': 'YOUR_XAI_API_KEY' },
);
Groq:
final client = OpenAIClient(
baseUrl: 'https://api.groq.com/openai/v1',
headers: { 'api-key': 'YOUR_GROQ_API_KEY' },
);
final client = OpenAIClient(
baseUrl: 'https://models.inference.ai.azure.com',
headers: { 'api-key': 'YOUR_GITHUB_TOKEN' },
);
final client = OpenAIClient(
baseUrl: 'https://api.together.xyz/v1',
headers: { 'api-key': 'YOUR_TOGETHER_AI_API_KEY' },
);
final client = OpenAIClient(
baseUrl: '<Anyscale_Service_URL>',
headers: { 'api-key': 'YOUR_ANYSCALE_API_KEY' },
);
final client = OpenAIClient(
baseUrl: 'http://localhost:8080/v1',
);
final client = OpenAIClient(
baseUrl: 'http://localhost:4891/v1',
);
final client = OpenAIClient(
baseUrl: 'http://localhost:8000/v1/',
);
Etc.
Default HTTP client #
By default, the client uses the following implementation of http.Client
:
- Non-web:
IOClient
- Web:
FetchClient
(to support streaming on web)
Custom HTTP client #
You can always provide your own implementation of http.Client
for further customization:
final client = OpenAIClient(
apiKey: 'OPENAI_API_KEY',
client: MyHttpClient(),
);
Using a proxy #
HTTP proxy
You can use your own HTTP proxy by overriding the baseUrl
and providing your required headers
:
final client = OpenAIClient(
baseUrl: 'https://my-proxy.com',
headers: {
'x-my-proxy-header': 'value',
},
);
If you need further customization, you can always provide your own http.Client
.
SOCKS5 proxy
To use a SOCKS5 proxy, you can use the socks5_proxy
package:
final baseHttpClient = HttpClient();
SocksTCPClient.assignToHttpClient(baseHttpClient, [
ProxySettings(InternetAddress.loopbackIPv4, 1080),
]);
final httpClient = IOClient(baseClient);
final client = OpenAIClient(
client: httpClient,
);
Acknowledgements #
The generation of this client was made possible by the openapi_spec package.
License #
OpenAI Dart Client is licensed under the MIT License.