Large Language Models
Groq
economyGroq is an cost-effective large language models provider offering Chat Completion, Streaming Chat, Speech Synthesis and 3 more through Aweb's unified API. It features full streaming support with premium-tier latency.
Specifications
Capabilities (6)
Public discovery
Inspect Groq's current readiness, sources, capabilities, and MCP tool posture through Aweb's public integration catalog. Provider-pinned execute examples are intentionally withheld until the canonical public execute contract is normalized.
cURL
curl "https://aweblabs.ai/api/v2/integrations/catalog" \
| jq '.providers[] | select(.providerId == "groq")'TypeScript
const response = await fetch(
'https://aweblabs.ai/api/v2/integrations/catalog'
);
const catalog = await response.json();
const provider = catalog.providers.find((item) => item.providerId === 'groq');
console.log(provider?.readiness);
console.log(provider?.mcpTools?.length ?? 0);