⏱️2 min read · 358 words

|||| क्लाउड एपीआईएंथ्रोपिक द्वारा 2026 में सबसे सक्षम एआई एपीआई में से एक है। क्लाउड सॉनेट 4 200K संदर्भ, दृष्टि, टूल उपयोग और त्वरित कैशिंग प्रदान करता है। यह ट्यूटोरियल प्रोडक्शन एआई सुविधाओं के माध्यम से पहली एपीआई कॉल को कवर करता है।सेटअप
📋 Table of Contents
- 📋कॉपी
- 📋कॉपी
- 📋कॉपी
- 📋कॉपी
- 📋कॉपी
- 📋कॉपी
- 📋कॉपी
- क्लाउड एपीआई उत्पादन एआई का सबसे तेज़ मार्ग है। संदेशों से शुरुआत करें, यूएक्स के लिए स्ट्रीमिंग जोड़ें, डेटा एक्सेस के लिए टूल का उपयोग करें और लागत में 90% की कटौती करने के लिए त्वरित कैशिंग सक्षम करें। क्लॉड सॉनेट 4 2026 में अपनी कीमत पर किसी भी अन्य मॉडल की तुलना में कोड, विश्लेषण, विज़न और लंबे दस्तावेज़ों को बेहतर तरीके से संभालता है।
📋कॉपी
pip install anthropic
export ANTHROPIC_API_KEY=sk-ant-...your-key...
📋कॉपी
import anthropic
client = anthropic.Anthropic()
message = client.messages.create(
model='claude-sonnet-4-5',
max_tokens=1024,
messages=[
{'role': 'user', 'content': 'Explain async/await in Python in 3 sentences.'}
]
)
print(message.content[0].text)
📋कॉपी
client = anthropic.Anthropic()
system = 'You are a senior Python developer. Be concise. Use code examples.'
history = []
def chat(user_msg: str) -> str:
history.append({'role': 'user', 'content': user_msg})
resp = client.messages.create(
model='claude-sonnet-4-5',
max_tokens=2048,
system=system,
messages=history
)
reply = resp.content[0].text
history.append({'role': 'assistant', 'content': reply})
return reply
print(chat('How do I read a CSV file?'))
print(chat('Now filter rows where age > 25'))
📋कॉपी
with client.messages.stream(
model='claude-sonnet-4-5',
max_tokens=1024,
messages=[{'role': 'user', 'content': 'Write a Python quicksort'}]
) as stream:
for text in stream.text_stream:
print(text, end='', flush=True)
📋कॉपी
tools = [{
"name": "get_weather",
"description": "Get current weather for a city",
"input_schema": {
"type": "object",
"properties": {"city": {"type": "string"}},
"required": ["city"]
}
}]
response = client.messages.create(
model='claude-sonnet-4-5',
max_tokens=1024,
tools=tools,
messages=[{'role': 'user', 'content': 'What is the weather in Tokyo?'}]
)
if response.stop_reason == 'tool_use':
for block in response.content:
if block.type == 'tool_use':
print(f'Tool: {block.name}, Input: {block.input}')
📋कॉपी
response = client.messages.create(
model='claude-sonnet-4-5',
max_tokens=1024,
system=[{
"type": "text",
"text": very_long_system_prompt,
"cache_control": {"type": "ephemeral"}
}],
messages=[{'role': 'user', 'content': user_question}]
)
print(f'Cache read: {response.usage.cache_read_input_tokens}')
📋कॉपी
import base64
with open('screenshot.png', 'rb') as f:
img = base64.standard_b64encode(f.read()).decode()
response = client.messages.create(
model='claude-sonnet-4-5',
max_tokens=1024,
messages=[{'role': 'user', 'content': [
{'type': 'image', 'source': {'type': 'base64', 'media_type': 'image/png', 'data': img}},
{'type': 'text', 'text': 'Describe this UI and list any bugs.'}
]}]
)
क्लाउड एपीआई उत्पादन एआई का सबसे तेज़ मार्ग है। संदेशों से शुरुआत करें, यूएक्स के लिए स्ट्रीमिंग जोड़ें, डेटा एक्सेस के लिए टूल का उपयोग करें और लागत में 90% की कटौती करने के लिए त्वरित कैशिंग सक्षम करें। क्लॉड सॉनेट 4 2026 में अपनी कीमत पर किसी भी अन्य मॉडल की तुलना में कोड, विश्लेषण, विज़न और लंबे दस्तावेज़ों को बेहतर तरीके से संभालता है।
Claude API is the fastest path to production AI. Start with messages, add streaming for UX, use tool use for data access, and enable prompt caching to cut costs 90%. Claude Sonnet 4 handles code, analysis, vision, and long documents better than any other model at its price in 2026.
🔗 Share this article
✍️ Leave a Comment