Integrate Jamba Mini 1.6 into Your Applications with AI4Chat API
Powerful API Access
Welcome to AI4Chat where you can integrate cutting-edge AI models like Jamba Mini 1.6 into your applications
without any upfront cost. Our RESTful API provides a simple and consistent way to access Jamba Mini 1.6's
capabilities for a wide range of applications.
Seamless Reliability
With Jamba Mini 1.6 API, you can incorporate sophisticated language processing that understands context, provides accurate
responses, and adjusts tone based on your requirements. AI4Chat ensures 100% uptime for our API,
so your applications run without interruption.
No Hidden Costs
Access Jamba Mini 1.6 API with no credit card required to start, making advanced AI accessible to everyone,
from independent developers to enterprise teams looking for powerful AI solutions.
What is Jamba Mini 1.6?
```html
Jamba Mini 1.6 is an advanced AI chat model developed by AI21 Labs, designed to provide reliable, practical, and scalable AI-driven conversational experiences. Built on a state-of-the-art hybrid SSM-Transformer architecture, this model excels in instruction-following tasks and supports versatile chat-based interactions. It is especially suited for enterprises seeking a high-quality, secure, and efficient AI chat solution, available through AI4Chat and integrated with robust tool use capabilities.
- Hybrid SSM-Transformer Architecture: Utilizes cutting-edge hybrid modeling technology to deliver superior performance in understanding and generating conversational text.
- Tool Use Integration: Supports dynamic invocation of user-defined tools during conversations, enabling real-time access to external data and enhanced interactivity within chat sessions.
- Fast and Low Latency: Offers rapid response times with an output speed of approximately 180-195 tokens per second and minimal initial token latency around 0.33 seconds, optimizing real-time communication.
- Cost-Effective Pricing: Provides competitive pricing with input token costs at $0.20 and output tokens at $0.40 per million tokens, balancing performance with affordability for enterprises.
- Multi-language and Instruction Following: Supports zero-shot instruction following and works effectively across multiple languages, broadening its usability for diverse applications and global users.
Overall, Jamba Mini 1.6 from AI21 Labs stands out as a powerful, enterprise-ready AI chat model that combines performance, flexibility, and security. Its ability to seamlessly integrate tool usage, maintain rapid responsiveness, and deliver quality conversational outputs makes it a comprehensive solution for organizations looking to enhance their AI-driven chat interactions on the AI4Chat platform.
```
Jamba Mini 1.6 API Documentation
Endpoint Overview
URL: POST /api/v1/chat/completions
Description: Generates chat completions using Jamba Mini 1.6 based on the provided messages and parameters.
Authentication
All requests to the API must include an Authorization header with a valid Bearer token. You can generate your API key by visiting https://app.ai4chat.co/api.
Request Parameters
{
"model": "Jamba Mini 1.6", // Required. The name of the AI model to use.
"messages": [ // Required. An array of message objects.
{
"role": "user" | "assistant" | "system", // Required. The role of the message sender.
"content": "string" // Required. The content of the message.
}
],
"language": "string", // Optional. Defaults to "English".
"tone": "string", // Optional. Defaults to "Default".
"wordcount": "Default" | integer, // Optional. Defaults to "Default".
"googleSearchStatus": false, // Optional. Defaults to false.
"stream": false, // Optional. Defaults to false. If true, responses are streamed.
"temperature": 1.0, // Optional. Defaults to 1.0. Range: 0 to 2.
"top_p": 1.0, // Optional. Defaults to 1.0. Range: 0 to 1.
"top_k": 0 // Optional. Defaults to 0. Must be a non-negative integer.
}
Example Response
{
"id": "chatcmpl-123456789",
"object": "chat.completion",
"created": 1619475600,
"model": "Jamba Mini 1.6",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "Hello! I'm here to help you with any questions or tasks you have. How can I assist you today?"
},
"finish_reason": "stop"
}
]
}