区块链财经交易观察
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note No publishing access yet

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.

      Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

      Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

      Explore these features while you wait
      Complete general settings
      Bookmark and like published notes
      Write a few more notes
      Complete general settings
      Write a few more notes
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note No publishing access yet

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.

    Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Explore these features while you wait
    Complete general settings
    Bookmark and like published notes
    Write a few more notes
    Complete general settings
    Write a few more notes
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    2025年,AI应用爆发,但开发者们私下讨论最多的不再是“哪个模型更强”,而是“哪个中转更稳”。如果你还在为调用 GPT-5-Codex 模型而四处寻找翻墙工具、配置复杂的环境变量,那么这篇文章就是为你准备的——**零基础也能秒变高手**,只需一个平台、一页代码,搞定所有调用难题。 --- ## 为什么你需要一个“AI中转站”? 过去一年里,我测试过十几个 AI 模型聚合平台,踩过无数坑:接口不稳定、流量限制、需要国外信用卡、每次换模型就要重写调用代码……直到我遇见了 **[云雾AI聚合平台](https://www.yunwuai.cc/)**,才真正体会到什么是“一站式解放生产力”。 它的核心价值在于:**把复杂留给平台,把简单还给开发者**。你不需要关心底层部署、不需要维护代理、不需要为每个模型单独申请 API Key——只需一次接入,就能调用包括 GPT-5-Codex 模型在内的 100+ 顶尖模型。 --- ## 一键搞定 GPT-5-Codex 模型调用 很多朋友以为调用 GPT-5-Codex 模型需要特殊环境、高昂成本、或者繁琐的认证流程。但在云雾AI聚合平台上,整个过程压缩成三步: 1. **注册账号**(30 秒) 2. **获取 API Key**(1 分钟) 3. **复制下面代码,直接运行** 下面就是一个完整的 Python 调用示例,**零配置、零翻墙**,你甚至不用安装任何额外的包(只需 `requests`,Python 自带)。 ```python import requests # 从云雾AI平台获取你的 API Key API_KEY = "your-yunwu-api-key" API_ENDPOINT = "https://api.yunwuai.cc/v1/chat/completions" headers = { "Authorization": f"Bearer {API_KEY}", "Content-Type": "application/json" } payload = { "model": "gpt-5-codex", # 直接使用模型标识 "messages": [ {"role": "user", "content": "用Python写一个快速排序函数"} ], "temperature": 0.7, "max_tokens": 1024 } response = requests.post(API_ENDPOINT, json=payload, headers=headers) print(response.json()["choices"][0]["message"]["content"]) ``` 把 `your-yunwu-api-key` 替换成你在 <span style="color:#d32f2f; font-weight:bold; background-color:#ffeb3b;">[www.yunwuai.cc](https://www.yunwuai.cc/)</span> 上生成的 Key,**直接运行就能返回 GPT-5-Codex 模型的输出**。全程不需要科学上网、不需要配置虚拟环境、不需要折腾老旧的 OpenAI 库。 --- ## 核心卖点:为什么选云雾AI? | 维度 | 云雾AI聚合平台 | 官方直连或其他中转 | |------|----------------|-------------------| | ⚡ 速度 | 全球加速节点,毫秒级延迟,99.9%可用性 | 经常超时或被墙 | | 🧩 模型覆盖 | GPT-4o、Claude3、Gemini、文心、通义、LLaMA3、Midjourney等 100+ | 通常只能调用1-2个 | | 💰 价格 | 比官方低 30%-50% | 官方定价高,其他中转无保障 | | 🌍 使用门槛 | 自动区域解析,全球用户免翻墙 | 需要代理或特殊网络 | 尤其值得注意的是,**GPT-5-Codex 模型调用** 在云雾AI平台上响应速度极快,即使在中国大陆直连也能稳定工作。这一点我实测了整整一周,没有一次因为网络问题失败。 --- ## 不止是 GPT-5-Codex 模型调用 云雾AI的覆盖面远不止一个模型。你可以在同一个 API 端口中,通过切换 `model` 参数来调用: - **GPT-4o**(最新多模态) - **Claude 3 Opus**(长文写作首选) - **Gemini Pro**(谷歌王牌) - **文心一言 4.0**、**通义千问**(国产顶流) - **Midjourney 6**(图像生成) - 以及 **LLaMA3、Qwen2、DeepSeek** 等开源大模型 全部使用统一的接口格式,换模型只需改一行 `model` 名称。**无需重新注册、无需再次付费**。 --- ## 如何开始?3分钟上手 1. 打开 <a href="https://www.yunwuai.cc/" style="color:#d32f2f; font-weight:bold; background-color:#ffeb3b;">云雾AI聚合平台</a> 2. 注册账号(支持邮箱/手机/微信一键登录) 3. 进入控制台 → 生成 API Key → 充值(最低10元起,按量计费) 4. 将 Key 填入上面的 Python 代码,享受极速 AI 调用 > 小提示:新用户注册即送 **5元体验金**,足够免费调用数百次 GPT-5-Codex 模型。 --- ## 写在最后 AI 浪潮已经到来,但不要让环境配置和网络问题成为你的拦路虎。**零基础秒变高手** 的秘诀只有一个:选对工具,然后直接开始用。 现在就去 <span style="color:#d32f2f; font-weight:bold; background-color:#ffeb3b;">[www.yunwuai.cc](https://www.yunwuai.cc/)</span> 注册,免费体验 GPT-5-Codex 模型调用。你离 AI 自由,只差一次点击。 **立即访问云雾AI聚合平台注册 → 复制代码 → 运行 → 出结果** 别再犹豫,你的第一个 GPT-5-Codex 模型调用就在今天。

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password
    or
    Sign in via Google Sign in via Facebook Sign in via X(Twitter) Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    By signing in, you agree to our terms of service.

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully