LinconwavesLinconwavesUnified docs
AI Workers

AI Workers

How to use Linconwaves AI Workers

AI Workers is Linconwaves’ platform for launching AI products fast: be it voice agents, chat, content and image generation, using open-source model APIs.

What the platform offers

  • Playground — Explore dozens of OSS and see how they respond (chat, TTS, ASR, image gen, vision) with saved conversations and file uploads.
  • API access — Create API keys, call models from your own apps, and read structured responses (text, audio, image, detection results).
  • Docs & SDK-style flows — Copy/paste request payloads, see expected responses, and map models to their Workers AI IDs.

Prerequisites to build

  • An AIWorkers account and an active API key from the API Keys tab.
  • Base URL: https://aiworker.linconwaves.com (call models like https://aiworker.linconwaves.com/gpt-oss-120b).
  • Credits: Use daily credits or purchase more from Billing tab

How the service works

  1. Sign in and get an API key from Dashboard → API Keys.
  2. Pick a model from the Playground or the Models Catalog and note its slug/Workers ID.
  3. Send a request to the backend API (see per-model docs below) with your Authorization: Bearer <key>.
  4. Review responses in the Playground (text, audio, images) and in your client code.
  5. Monitor usage and credits in Dashboard → Usage/Billing;
  6. Iterate safely with guardrails baked into the backend: auth, rate limits, and logging.

What you can achieve

  • Build chat assistants, voice bots (TTS/ASR), translators, image generators, and vision labeling flows.

Saving conversations (optional)

  • API / third-party testing: persistence is opt-in. Add either:
    • Header: x-allow-store: true
    • Or query: ?store=true

If you omit these, your /auto or model calls won’t create conversation records.

Example with persistence enabled:

curl -X POST https://aiworker.linconwaves.com/auto?store=true \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "messages": [{ "role": "user", "content": "Hello" }] }'

Next up in this section

  • Example curl/JavaScript snippets for each model.
  • Error codes and retry guidance for the Worker endpoints.
AI Workers | Linconwaves Docs