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

推荐订阅源

I
Intezer
V
Vulnerabilities – Threatpost
Google Online Security Blog
Google Online Security Blog
T
The Exploit Database - CXSecurity.com
C
CXSECURITY Database RSS Feed - CXSecurity.com
AWS News Blog
AWS News Blog
G
GRAHAM CLULEY
P
Privacy & Cybersecurity Law Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
C
Cybersecurity and Infrastructure Security Agency CISA
N
News | PayPal Newsroom
T
Tenable Blog
Spread Privacy
Spread Privacy
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
S
Secure Thoughts
P
Privacy International News Feed
IT之家
IT之家
Project Zero
Project Zero
T
The Blog of Author Tim Ferriss
Engineering at Meta
Engineering at Meta
大猫的无限游戏
大猫的无限游戏
博客园_首页
GbyAI
GbyAI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
Hacker News: Ask HN
Hacker News: Ask HN
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
N
Netflix TechBlog - Medium
Martin Fowler
Martin Fowler
NISL@THU
NISL@THU
I
InfoQ
D
DataBreaches.Net
有赞技术团队
有赞技术团队
K
Kaspersky official blog
Security Latest
Security Latest
The Register - Security
The Register - Security
Hugging Face - Blog
Hugging Face - Blog
S
Security @ Cisco Blogs
P
Proofpoint News Feed
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
AI
AI
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
P
Proofpoint News Feed
Security Archives - TechRepublic
Security Archives - TechRepublic
N
News and Events Feed by Topic

倦意博客

域名故事:低成本拿下域名 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