Overview
reminix-openai provides a simple wrapper for the OpenAI API. This is a model-only adapter for basic chat completions without tool calling.
Installation
reminix-runtime as a dependency.
Quick Start
Wrap an OpenAI client and serve it:Configuration
Multiple Agents
For multi-agent projects, usewrap_agent + serve instead of serve_agent:
Usage
With Prompt
Single request/response with a prompt:With Messages
For conversations with message history:Streaming
For real-time streaming responses:When to Use This Adapter
Usereminix-openai when:
- You need simple chat completions
- No tool calling required
- Direct model access is sufficient
- You need tool calling / function calling
- You need agents with memory
- You need complex workflows