Back to Models
Marin 8B Instruct
marin-community/marin-8b-instruct
Marin Community
Chat
Description
Marin 8B Instruct by Marin Community. This model supports chat capabilities. Variant: Instruct.
Specifications
- Context Length:
- 4096
- Variant:
- Instruct
- Parameters:
- 8B
Pricing
- Input Cost:
- $0.0360/100K tokens
- Output Cost:
- $0.0360/100K tokens
Usage Example
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.yourproxy.com/v1",
apiKey: process.env.PROXY_KEY,
});
const completion = await client.chat.completions.create({
model: "marin-community/marin-8b-instruct",
messages: [{ role: "user", content: "Hello!" }],
});