Eachlabs LLM Router

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

awesome-genmedia Updated

File contents

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.

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:

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

awesome-genmedia/skills/tree/main/models/eachlabs-llm-router commit 57abd40125

Frequently asked questions

npx skillmds@latest add awesome-genmedia/eachlabs-llm-router