OpenAIAvailable NowLLM

OpenAI

GPT-4o, o1, DALL-E, Whisper, and more

Access OpenAI's suite of language models, image generation, speech-to-text, and embeddings through a single proxied connection.

Features

Chat completions & streaming
Function calling & tool use
Image generation (DALL-E)
Audio transcription (Whisper)
Text embeddings

Integration Example

Use OpenAI through Keystore with zero code changes. Keys are resolved from the vault and injected at request time.

openai-example.ts
1
2
3
4
5
6
7
8
9
10
11
12
import Keystore from "@keystore/sdk";
import OpenAI from "openai";

const ks = new Keystore({ agentToken: process.env.KS_TOKEN! });
ks.interceptAll();

const openai = new OpenAI();
const completion = await openai.chat.completions.create({
  model: "gpt-4o",
  messages: [{ role: "user", content: "Hello!" }],
});
console.log(completion.choices[0].message.content);

Use Cases

AI-powered chat agents
Content generation pipelines
Document analysis & summarization
Code generation assistants

Ready to use OpenAI?

Get started in minutes. Your credentials are encrypted and never exposed to your agent code.

Get Started