Using OpenHermes 2 Mistral 7B on Fireworks AI
Implementation guide · OpenHermes 2 · Teknium
Quick Start
- 1
- 2Use the Fireworks AI SDK or REST API to call
openhermes-2-mistral-7b— see the documentation for request format. - 3
Code Examples
pip install openaiFIREWORKS_API_KEYopenhermes-2-mistral-7bFireworks model IDs use "accounts/fireworks/models/{model-name}" format, e.g. "accounts/fireworks/models/llama4-scout-instruct-basic" or "accounts/fireworks/models/deepseek-r1".
import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ["FIREWORKS_API_KEY"],
base_url="https://api.fireworks.ai/inference/v1"
)
response = client.chat.completions.create(
model="openhermes-2-mistral-7b",
messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)About Fireworks AI
The Fireworks AI Platform is a comprehensive generative AI solution that enables developers and businesses to build, customize, and deploy AI models at scale. It supports a diverse range of cutting-edge open-source models, including Meta's Llama and Stable Diffusion, for tasks such as natural language processing and image generation. The platform's serverless architecture allows for quick deployment without extensive infrastructure management, operating on a pay-as-you-go basis. Users can fine-tune models using parameter-efficient techniques, ensuring tailored AI solutions that maintain high performance for specific business needs. Optimized for high throughput and low latency, the platform can handle trillions of inferences daily while providing a seamless user experience. It offers tools for efficient model maintenance and iteration, allowing businesses to focus on innovation rather than complex AI model management. The platform's design facilitates easy integration and customization, enabling organizations to effectively scale their AI-powered solutions. With its cost-efficient approach and comprehensive features, the Fireworks AI Platform empowers businesses to leverage advanced AI capabilities for enhanced productivity and competitive advantage in their respective markets.
Fireworks AI offers a generative AI platform as a service, focusing on rapid product iteration and cost-efficient AI deployment. Their platform is designed to optimize the development and serving of generative AI applications, enabling businesses to quickly build and scale AI-powered solutions. Fireworks.ai emphasizes minimizing the cost to serve while maximizing the potential of generative AI technologies, making advanced AI capabilities more accessible and practical for a wide range of applications.
Pricing on Fireworks AI
| Type | Price (per 1M) |
|---|---|
| Input tokens | $0.20 |
| Output tokens | $0.20 |
Capabilities
No model capability flags are currently sourced.
About OpenHermes 2 Mistral 7B
OpenHermes 2 Mistral 7B is a cutting-edge large language model developed by Teknium. It builds on the Mistral architecture, known for its performance and efficiency, and is fine-tuned to offer significant improvements over prior models. Trained on a diverse dataset of over 900,000 entries, primarily produced by GPT-4, it showcases advanced capabilities in natural language understanding and generation. The model excels in generating high-quality text, engaging in multi-turn conversations, and producing structured outputs. It supports various prompt formats through ChatML, facilitating nuanced interactions. Furthermore, OpenHermes 2 Mistral 7B is available in several quantized formats for optimized performance on different hardware, ensuring compatibility with a wide range of tools and frameworks.