5 Minutes to Access Ciyuano: From Zero to Your First AI Conversation
Introduction
Are you tired of dealing with various API key applications, model switching, and billing management? Ciyuano Token Circle provides an OpenAI-compatible API relay solution—just change two parameters, and let the platform handle the rest.
This article will guide you from registration to making your first AI conversation request in under 5 minutes.
Step 1: Register an Account
Visit Ciyuano Token Circle → Click "Get Started" in the top right corner → Enter your email and password.
After successful registration, you automatically receive free credits. No credit card or identity verification required.
Step 2: Get an API Key
After logging in, go to "User Console" → "API Keys" → Click "Create Key".
⚠️ The key is only displayed once upon creation; please keep it safe.
Step 3: Write Code
Ciyuano is fully compatible with the OpenAI SDK:
python
from openai import OpenAI client = OpenAI( base_url="https://www.ciyuano.com/v1", api_key="sk-relay-your-key-here" ) response = client.chat.completions.create( model="deepseek-v4", messages=[{"role": "user", "content": "Explain what a Transformer is in one sentence"}], stream=True ) for chunk in response: if chunk.choices[0].delta.content: print(chunk.choices[0].delta.content, end="")
Run it and you'll immediately see the AI's streaming output! Which models are supported?
| Model ID | Model Name | Use Case | |---------|----------|----------|
| deepseek-v4 | DeepSeek V4 | Reasoning, code, general conversation |
| glm-5 | GLM-5 | Chinese understanding, long text |
| qwen-plus | Qwen Plus | Cost-effective choice |
To switch models, just change the model parameter in one line.
Advanced: Auto-Routing
Set the model to auto, and the platform will automatically select the best available model.
Conclusion
Ciyuano saves you the hassle of applying for keys on multiple platforms, managing balances, and handling failover. One API key gives you access to all major domestic large models.
Related Articles
Voice Assistant + Smart Home Beginner Guide: Control Your Whole Home with One Command in 10 Minutes
No complex apps, no full smart home setup. One smart speaker + one smart bulb is enough to start controlling your home with voice in 10 minutes. Step-by-step guide to set up a voice assistant and build scene modes.
TutorialsAI 日常实用场景全攻略:4 个让你立刻上手的效率提升方法
别只知道用 AI 聊天了。4 个真实日常场景,手把手教你用 AI 写邮件、翻译文档、总结长文、辅助创作。每个场景附可复制的提问模板,小白也能马上上手。
TutorialsAI-Powered PPT Presentations: Complete Guide from Outline to Layout
Creating PPTs with AI tools is as easy as having a conversation. This tutorial teaches you step-by-step how to generate professional presentations in three steps, with tool comparisons and prompt templates for beginners.
Comments are not yet available, stay tuned