Skip to content

Redgold Fusion · Flint

Use Fusion in the tools you already use.

Connect Claude Code, Codex, and other compatible coding harnesses to the Redgold Fusion API. Set your API endpoint, key, and model, then carry on in the same interface with your existing tools and workflow. Fusion works behind the scenes.

A familiar workflow, powered by Fusion.

  1. Claude Code

    Use the Anthropic-compatible Messages API through Claude Code’s provider settings. Your terminal, project instructions, and tools stay in Claude Code.

  2. Codex

    Set up the Redgold API as a Responses provider, then use Codex as usual. Keep your repository, commands, and coding workflow.

  3. Other harnesses and SDKs

    Connect clients that support the OpenAI-compatible Chat Completions or Responses API, or the Anthropic-compatible Messages API. Your existing tool integrations stay in place.

Use Fusion in your application, too.

Flint routes requests across expert models inside the serving stack. Use your existing OpenAI client with the Redgold API endpoint and an available model.

A funding monitor, for example, can call Flint to interpret eligibility rules and extract fields from a notice. Your application keeps the source evidence, validates the result, and decides what happens next.

API reference
Python · OpenAI client
import os
from openai import OpenAI

client = OpenAI(
    base_url="https://api.redgold.ai/v1",
    api_key=os.environ["REDGOLD_API_KEY"],
)

# Check which models your account can access.
print([m.id for m in client.models.list().data])

# Illustrative input from a funding record.
notice = "US nonprofits may apply. A local partner is required."
result = client.chat.completions.create(
    model="redgold-flint",
    messages=[{
        "role": "user",
        "content": (
            "Extract the applicant and partnership requirements. "
            "Quote the supporting text. Leave unknowns unresolved.\n"
            + notice
        ),
    }],
)
print(result.choices[0].message.content)