Back to Models

Tiny Aya Global

![Cohere](https://artificialanalysis.ai/img/logos/cohere_small.svg)Cohere
5/ 57

Intelligence Score

Intelligence

5

#203 of 203 (top 100%)

Speed

N/A

Not measured

Price

Free

per M tokens

Context Window

8.2K

tokens

Latency: N/A

Score Breakdown

Quality Score8%
Speed Score0%
Cost Score100%

Use This Model

Claude Code

claude --model tiny-aya-global

API (cURL)

curl https://openrouter.ai/api/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OPENROUTER_API_KEY" \
  -d '{
    "model": "tiny-aya-global",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

Vercel AI SDK

import { generateText } from "ai";
import { openrouter } from "@openrouter/ai-sdk-provider";

const { text } = await generateText({
  model: openrouter("tiny-aya-global"),
  prompt: "Hello",
});
Back to Models