anthropic
Anthropic: Claude v2models/Claude v2

Claude 2 delivers advancements in key capabilities for enterprises—including an industry leading 200K token context window, significant reductions in rates of model hallucination, system prompts
CurrencyUSD
Input8.00
Output24.00
Context window200K

Generate API Key Generate your API Key to securely access Indox Router's AI models. Integrate with OpenAI-compatible tools, run queries, and build powerful AI applications — all with a single secure key.
python
typescript
CURL

from indoxrouter import Client
client = Client(api_key="[LOGIN TO GET API KEY]")

response = client.chat(
    messages: [{"role": "user", "content": ""}],
    model: "anthropic/claude-2",
    max_tokens:  '' ,
    frequency_penalty:  '' ,
    presence_penalty:  '' ,
    temperature:  '' ,
    top_p:  '' ,
    stream:true

)
print("Response:", response["data"])