Hermes 3 405B Instruct

Nous Research chattool_use

API ID: nousresearch/hermes-3-llama-3.1-405b

Input Price
$1.00
/1M tokens
Output Price
$1.00
/1M tokens

About Hermes 3 405B Instruct

Hermes 3 Llama 3.1 405B is Nous Research's flagship fine-tune, combining Meta's largest open model with specialized instruction tuning. The model excels at following complex instructions, roleplay, and creative tasks while maintaining Llama 3.1 405B's strong reasoning capability. Hermes 3 demonstrates particularly good performance on nuanced conversations and tasks requiring careful instruction following. It features a 128K context window and supports function calling for building AI agents. The model is popular for applications requiring both capability and personality. For developers seeking the most capable open-source model with enhanced instruction following, Hermes 3 405B offers frontier-level performance with community-driven improvements. It's particularly valuable for advanced chatbots, creative applications, and sophisticated AI assistants.

๐Ÿ’ฐ
Price Ranking
#796 lowest price among 950 Chat models

Model Specifications

Context Length
131k
Max Output
16k
Release Date
2024-08-16
Capabilities
chat tool_use
Input Modalities
text
Output Modalities
text

Best For

  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.75
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$24.00
/month
1000 tickets/day, ~800 tokens each

Nous Research Model Lineup

Compare all models from Nous Research to find the best fit

Model Input Output Context Capabilities
Hermes 3 405B Instruct Current Free Free 131k chat tool_use
Hermes 2 Theta 8B Free Free 16k chat
Hermes 2 Theta 8B Free Free 16k chat
Hermes 2 Mistral 7B DPO Free Free 8k chat
Hermes 2 Mistral 7B DPO Free Free 8k chat
Hermes 2 Mixtral 8x7B SFT Free Free 33k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Other Morph V3 Fast
Input: $0.80
Output: $1.20
Context: 82k
Other Llemma 7b
Input: $0.80
Output: $1.20
Context: 4k
Other CodeLLaMa 7B Instruct Solidity
Input: $0.80
Output: $1.20
Context: 4k
OpenAI GPT-3.5 Turbo
Input: $0.50
Output: $1.50
Context: 16k

๐Ÿš€ Quick Start

Get started with Hermes 3 405B Instruct API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="nousresearch/hermes-3-llama-3.1-405b",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)