Multimodal

Feature list

Main features in the app.

Deployment list

View deployment IDs, model IDs, and creation time.

You can check status in one place.

Includes refresh and detail pages.

Profile settings

Update display name and sign out from the profile page.

Account details stay current.

OpenAI-compatible requests

Use `/v1/responses` with account API keys.

Integrations are straightforward.

Request body includes model and input.

Contact form

Public users can send messages from the contact page.

Questions can be submitted without login.

Rate limiting is enabled per IP.

Architecture

How the app is structured.

Public pages

Home, features, pricing, and contact are public.

Authenticated app

`/app` routes require sign-in.

API backend

Public contact endpoint plus protected app endpoints.

Use cases

Typical uses.

Internal tools

Call model endpoints from internal systems.

Product features

Add model calls to customer-facing features.

Team standardization

Use one endpoint pattern across projects.

Integration

Request examples.

Create deployment

POST /deployments
Authorization: Bearer <id-token>
{ "modelId": "team-agent-v2" }

Call model endpoint

POST /proxy/v1/responses
Authorization: Bearer <account-api-key>
{ "model": "team-agent-v2", "input": "Summarize build logs" }

Next step

Open the app to create a deployment.