# Eachlabs LLM Router

> eachlabs-llm-router. Route requests to the optimal LLM model automatically. Triggers: llm, router, language model, chat, text generation

- Skill: `awesome-genmedia/eachlabs-llm-router` (Agent Skill)
- Install (CLI): `npx skillmds@latest add awesome-genmedia/eachlabs-llm-router`
- Raw SKILL.md: https://api.skillmd.com/api/skills/awesome-genmedia/eachlabs-llm-router/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: awesome-genmedia (https://skillmd.com/u/awesome-genmedia)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/awesome-genmedia/eachlabs-llm-router

---


# eachlabs-llm-router

Automatically route requests to the optimal LLM model based on the input. Intelligent model selection for text generation tasks.

## Quick Start

> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).

```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "eachlabs-llm-router",
    "version": "0.0.1",
    "input": {
      "input": {}
    }
  }'
```

## Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| input | object | false | Input object for the LLM router. Required. |

## Examples

**Basic LLM request:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $EACHLABS_API_KEY" \
  -d '{
    "model": "eachlabs-llm-router",
    "version": "0.0.1",
    "input": {
      "input": {}
    }
  }'
```

## Related Models

Refer to the each::labs documentation for the full list of available LLM models.

## Documentation

- [each::labs Docs](https://docs.eachlabs.ai)
- [API Reference](https://docs.eachlabs.ai/api/overview)

