Back to Models
Description
Cogito v2.1 671B by Deepcogito. This model supports chat capabilities. Main use: Chat, Small & Fast. Variant: V2.
Specifications
- Context Length:
- 163840
- Variant:
- V2
- Parameters:
- 671B
- Input Modalities:
- Text
- Output Modalities:
- Text
- Main Use:
- Chat, Small & Fast
Pricing
- Input Cost:
- 2.50 Credits / 1M tokens
- Output Cost:
- 2.50 Credits / 1M tokens
Usage Example
const { Client } = require('ai-proxy-sdk');
const client = new Client({
consumerKey: process.env.BITMESH_CONSUMER_KEY,
consumerSecret: process.env.BITMESH_CONSUMER_SECRET,
baseUrl: process.env.BITMESH_API_BASE_URL || 'https://api.bitmesh.ai'
});
const response = await client.chat.completions.create({
model: 'deepcogito/cogito-v2-1-671b',
messages: [
{ role: 'system', content: 'You are a helpful assistant.' },
{ role: 'user', content: 'What are some fun things to do with AI?' }
],
max_tokens: 1000
});