Overview
Codex SDK for Elixir wraps the Codex CLI (codex) and provides an idiomatic API for
starting threads, streaming turns, and integrating tools. It runs as a subprocess
and communicates over JSONL (exec) or JSON-RPC (app-server).
Install
Add the dependency in mix.exs:
def deps do
[
{:codex_sdk, "~> 0.7.2"}
]
endPrerequisites
- Install the
codexCLI (npm install -g @openai/codexorbrew install codex). - Authenticate with one of:
CODEX_API_KEYauth.jsonOPENAI_API_KEY- Codex CLI login stored under
CODEX_HOME(default~/.codex).
The SDK resolves the executable in this order:
codex_path_overrideinCodex.OptionsCODEX_PATHSystem.find_executable("codex")
Quick Start
{:ok, thread} = Codex.start_thread()
{:ok, result} = Codex.Thread.run(thread, "Summarize this repository")
IO.puts(result.final_response)Streaming
{:ok, thread} = Codex.start_thread()
{:ok, stream} = Codex.Thread.run_streamed(thread, "Explain GenServers")
for event <- stream do
IO.inspect(event)
endStructured Output
schema = %{
"type" => "object",
"properties" => %{
"summary" => %{"type" => "string"},
"key_points" => %{
"type" => "array",
"items" => %{"type" => "string"}
}
},
"required" => ["summary", "key_points"]
}
{:ok, thread} = Codex.start_thread()
{:ok, result} = Codex.Thread.run(thread, "Summarize this repo", output_schema: schema)
{:ok, data} = Jason.decode(result.final_response)
IO.inspect(data["key_points"])Personality and Web Search
You can set per-thread defaults for personality and web search mode:
{:ok, thread_opts} =
Codex.Thread.Options.new(%{
personality: :friendly,
web_search_mode: :cached
})
{:ok, thread} = Codex.start_thread(%Codex.Options{}, thread_opts)
{:ok, result} = Codex.Thread.run(thread, "Summarize the latest release notes")
IO.puts(result.final_response)Sessions
Threads are persisted by the Codex CLI under ~/.codex/sessions. You can list
and resume them:
{:ok, sessions} = Codex.list_sessions()
{:ok, thread} = Codex.resume_thread(:last)Transports
- Exec JSONL (default):
codex exec --jsonfor a simple subprocess flow. - App-server JSON-RPC (optional):
codex app-serverfor v2 APIs and server-driven approvals.
See guides/05-app-server-transport.md for the app-server guide.
Realtime and Voice
For voice-based interactions, the SDK provides two options:
Realtime API (Bidirectional Streaming)
alias Codex.Realtime
agent = Realtime.agent(name: "Assistant", instructions: "You are helpful.")
{:ok, session} = Realtime.start_session(agent)
Realtime.subscribe(session, self())
Realtime.send_audio(session, audio_data)Voice Pipeline (STT -> Workflow -> TTS)
alias Codex.Voice.{Pipeline, SimpleWorkflow, Config}
workflow = SimpleWorkflow.new(fn text -> ["You said: #{text}"] end)
{:ok, pipeline} = Pipeline.start_link(workflow: workflow, config: %Config{})
{:ok, result} = Pipeline.run(pipeline, audio_input)See guides/06-realtime-and-voice.md for the complete guide.
Next Steps
guides/02-architecture.mdfor system layout and transport flow.guides/03-api-guide.mdfor module-level docs.guides/04-examples.mdfor runnable patterns.guides/06-realtime-and-voice.mdfor voice interactions.