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
AI 本地部署入门:零基础三步跑起大模型,完全免费
不用注册、不用充钱、完全离线。本文手把手教你用 Ollama 等工具,在自家电脑上部署运行开源大模型,从零开始完成本地 AI 部署的全过程。
TutorialsAI 帮你做购物决策:从比价到避坑的完整实操指南
买手机、买耳机、买电脑,AI 真的能帮你选对吗?本文用五个实操步骤,手把手教你让 AI 完成价格对比、参数解析、口碑筛选和避坑提醒,小白也能 10 分钟搞定购物决策。
TutorialsAI 语音输入与语音转文字:零基础 5 分钟上手,解放双手的写作新方式
打字太慢?说话比打字快 3 倍。这篇文章手把手教你用 AI 语音输入工具,从选择工具、开始录音到转文字、编辑导出,五大步骤、六大场景,让你从此"说话即写作"。
Comments are not yet available, stay tuned