



const { OpenAI } = require('openai');
const api = new OpenAI({
baseURL: 'https://api.ai.cc/v1',
apiKey: '',
});
const main = async () => {
const result = await api.chat.completions.create({
model: 'google/gemini-2.0-flash-thinking-exp-01-21',
messages: [
{
role: 'system',
content: 'You are an AI assistant who knows everything.',
},
{
role: 'user',
content: 'Tell me, why is the sky blue?'
}
],
});
const message = result.choices[0].message.content;
console.log(`Assistant: ${message}`);
};
main();
import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.ai.cc/v1",
api_key="",
)
response = client.chat.completions.create(
model="google/gemini-2.0-flash-thinking-exp-01-21",
messages=[
{
"role": "system",
"content": "You are an AI assistant who knows everything.",
},
{
"role": "user",
"content": "Tell me, why is the sky blue?"
},
],
)
message = response.choices[0].message.content
print(f"Assistant: {message}")
-
AI Playground

Test all API models in the sandbox environment before you integrate.
We provide more than 300 models to integrate into your app.


Product Detail
💡 Introducing Gemini 2.0 Flash Thinking: Transparent AI Reasoning
Gemini 2.0 Flash Thinking is a cutting-edge AI model meticulously designed to illuminate its problem-solving journey. By "thinking out loud," it offers users an unprecedented, transparent window into its complex reasoning processes. This unique approach not only profoundly enhances the model's analytical capabilities but also empowers users to effortlessly trace and comprehend the precise logical steps leading to every solution. Experience AI with unparalleled clarity and understanding.
🚀 Advanced Capabilities & Highlights
- Transparent, Step-by-Step Reasoning: Gain deep insights with clear, sequential explanations of the model's thought process.
- Robust Multimodal Input: Seamlessly process and integrate both text and image inputs for comprehensive understanding.
- Expansive 1 Million Token Context Window: Engage in extended, rich interactions, allowing the model to handle vast amounts of contextual information.
- Integrated Google Tools: Enhance reasoning tasks with direct access to Google Search, Google Maps, and powerful code execution functionalities.
✅ Practical Applications & Benefits
- Complex Problem Solving: An indispensable tool for navigating advanced challenges in mathematics, physics, and intricate coding environments.
- Enhanced Educational Tools: Acts as an exceptional pedagogical aid, clarifying problem-solving methodologies for students and educators alike.
- In-depth Research & Analysis: Streamlines comprehensive analytical tasks by efficiently processing and synthesizing extensive datasets and research documents.
⚙️ Technical Architecture & Training
Architecture: Built on a cutting-edge Transformer-based model, featuring specialized reasoning layers optimized for seamless multimodal inputs (text and images). It integrates sophisticated explainability mechanisms to meticulously break down every reasoning step.
Training Data: Developed using diverse and high-quality datasets, including demanding math and science benchmarks (e.g., AIME2024), extensive multimodal corpora combining text and images, and carefully curated synthetic reasoning datasets.
Data Source & Size: Incorporates billions of tokens from rigorously curated sources, complemented by millions of structured reasoning examples to ensure robust and accurate intelligence.
💻 Getting Started: Accessing Gemini 2.0 Flash Thinking
Code Samples: The Gemini 2.0 Flash Thinking model is available on the AI/ML API platform under the service identifier "Gemini 2.0 Flash Thinking".
<snippet data-name="open-ai.chat-completion" data-model="google/gemini-2.0-flash-thinking-exp-01-21"></snippet>
API Documentation: For comprehensive technical details and integration guides, please refer to the Detailed API Documentation.
🤝 Responsible AI & Commercial Licensing
Ethical Guidelines: Google DeepMind places paramount importance on ethical AI development. We advocate for full transparency regarding Gemini 2.0 Flash Thinking's capabilities and inherent limitations, vigorously encouraging responsible usage to prevent any potential misuse or harmful applications of its generated content.
Licensing: Gemini 2.0 Flash Thinking is available under a comprehensive commercial license. This license grants extensive rights for both research and commercial usage, all while strictly upholding ethical standards, particularly concerning creator rights and intellectual property.
📝 Frequently Asked Questions (FAQ)
A: Its unique "think out loud" methodology offers transparent, step-by-step reasoning, allowing users to fully grasp the model's logical path, complemented by multimodal input support and an immense context window.
A: Gemini 2.0 Flash Thinking boasts robust multimodal input capabilities, enabling it to seamlessly process and integrate both text and image data for holistic problem-solving.
A: It features an industry-leading 1 million token context window, supporting highly extensive and complex interactions with vast amounts of information.
A: Yes, it is explicitly offered under a commercial license that grants rights for both research and commercial deployment, ensuring adherence to ethical guidelines.
A: Comprehensive technical details and integration guidelines are available in the Detailed API Documentation.
Learn how you can transformyour company with AICC APIs



Log in