惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
Schneier on Security
有赞技术团队
有赞技术团队
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
D
DataBreaches.Net
F
Full Disclosure
腾讯CDC
博客园 - 【当耐特】
MyScale Blog
MyScale Blog
Stack Overflow Blog
Stack Overflow Blog
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
爱范儿
爱范儿
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
大猫的无限游戏
大猫的无限游戏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
SegmentFault 最新的问题
The Register - Security
The Register - Security
WordPress大学
WordPress大学
博客园 - 聂微东
雷峰网
雷峰网
J
Java Code Geeks
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
P
Privacy International News Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
A
Arctic Wolf
Scott Helme
Scott Helme
C
Cyber Attacks, Cyber Crime and Cyber Security
T
Tor Project blog
博客园 - 三生石上(FineUI控件)
Know Your Adversary
Know Your Adversary
AWS News Blog
AWS News Blog
G
Google Developers Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
C
CERT Recently Published Vulnerability Notes
O
OpenAI News
Project Zero
Project Zero
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Application and Cybersecurity Blog
Application and Cybersecurity Blog
云风的 BLOG
云风的 BLOG
N
News and Events Feed by Topic
MongoDB | Blog
MongoDB | Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Microsoft Security Blog
Microsoft Security Blog
Cisco Talos Blog
Cisco Talos Blog
P
Palo Alto Networks Blog
Schneier on Security
Schneier on Security

倦意博客

域名故事:低成本拿下域名 jyblog.com 从售价16万到350块 – 倦意博客 无需服务器低成本搭建域名邮箱 – 倦意博客 EdgeOne 实时日志接收器 – 倦意博客 EdgeOne 日志分析软件 v2.0 – 倦意博客 关于我自己写了一套论坛系统 — 倦意论坛内测上线 – 倦意博客 VSCode OAI使用Deepseek v4时报错reasoning_content 的解决办法 – 倦意博客 在线去水印助手 — 自动填充地址到在线去水印中的浏览器扩展 – 倦意博客 最近生活不太如意 – 倦意博客 当白嫖党的渠道都被封以后,天才程序员已陨落。 – 倦意博客 Windsurf切号器分享 – 倦意博客 那杯五毛钱的粥,和我没种下去的理想 – 倦意博客 用苹果 iOS 小火箭保护隐私IP(防泄露) – 倦意博客
白嫖免费的大模型 AgnesAI 教程 – 倦意博客
倦意 · 2026-06-02 · via 倦意博客

最近发现一个免费的大模型可以白嫖,支持免费的对话,文生图,图生图,速度还不错,可以无限用。且模型没有内容审核,理论上可以生成任何类型的图片和视频(你懂得)󠄐󠄹󠅀󠄪󠄡󠄠󠄡󠄞󠄣󠄢󠄞󠄡󠄡󠄦󠄞󠄡󠄦󠄬󠅒󠅢󠄟󠄮󠄐󠅅󠄹󠄴󠄪󠄾󠅟󠅤󠄐󠄼󠅟󠅗󠅙󠅞󠄬󠅒󠅢󠄟󠄮󠅄󠅙󠅝󠅕󠄪󠄡󠄧󠄨󠄡󠄤󠄢󠄥󠄠󠄠󠄣󠄬󠅒󠅢󠄟󠄮

首先注册账号:

https://platform.agnes-ai.com

注册账号以后,进入后台,点击 创建新的密钥,生成密钥后记得保存。

调用方法:

如果是AI对话,用常用的AI对话软件,比如Cherry Studio或者ChatboxAI,输入API调用地址:https://apihub.agnes-ai.com/v1

再把Key输入进去就行了,这个很简单和OpenAI一样,不用细说。󠄐󠄹󠅀󠄪󠄡󠄠󠄡󠄞󠄣󠄢󠄞󠄡󠄡󠄦󠄞󠄡󠄦󠄬󠅒󠅢󠄟󠄮󠄐󠅅󠄹󠄴󠄪󠄾󠅟󠅤󠄐󠄼󠅟󠅗󠅙󠅞󠄬󠅒󠅢󠄟󠄮󠅄󠅙󠅝󠅕󠄪󠄡󠄧󠄨󠄡󠄤󠄢󠄥󠄠󠄠󠄣󠄬󠅒󠅢󠄟󠄮

示例如下:

curl https://apihub.agnes-ai.com/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "agnes-2.0-flash",
    "messages": [
      {
        "role": "system",
        "content": "You are a helpful AI assistant."
      },
      {
        "role": "user",
        "content": "Explain how autonomous agents use tools to complete tasks."
      }
    ],
    "temperature": 0.7,
    "max_tokens": 1024
  }'

重点讲一下生图,目前好像主流对话软件调用他们生图模型会出现404,具体原因我也不太清楚。推荐用Curl方法。

文生图:

调用地址是:https://apihub.agnes-ai.com/v1/images/generations

示例如下:

curl https://apihub.agnes-ai.com/v1/images/generations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "agnes-image-2.1-flash",
    "prompt": "A luminous floating city above a misty canyon at sunrise, cinematic realism",
    "size": "1024x768"
  }'

图生图:

调用地址是:https://apihub.agnes-ai.com/v1/images/generations

curl https://apihub.agnes-ai.com/v1/images/generations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "agnes-image-2.1-flash",
    "prompt": "Transform the scene into a rain-soaked cyberpunk night with neon reflections while preserving the composition",
    "size": "1024x768",
    "extra_body": {
      "image": [
        "https://example.com/input-image.png"
      ],
      "response_format": "url"
    }
  }'

生成视频:

调用地址:https://apihub.agnes-ai.com/v1/videos

curl -X POST https://apihub.agnes-ai.com/v1/videos \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "agnes-video-v2.0",
    "prompt": "A cinematic shot of a cat walking on the beach at sunset, soft ocean waves, warm golden lighting, realistic motion",
    "height": 768,
    "width": 1152,
    "num_frames": 121,
    "frame_rate": 24
  }'

返回的内容是:

{
  "id": "task_123456",
  "object": "video",
  "model": "agnes-video-v2.0",
  "status": "queued",
  "progress": 0,
  "created_at": 1774344160
}

再将响应内容里面的id请求这个地址获取视频

https://apihub.agnes-ai.com/v1/videos/{id}

即可获得视频

更多可以参考官方手册:

https://agnes-ai.com/doc/overview