微信扫码
添加专属顾问
我要投稿
「格式化输出」很重要
在上一篇中,你可以看到有关的起源、原理、用例,以及如何用它来搭建一个 AI 项目,这里就不再赘述:
看完这篇,你也能做 AI 搜索:论「结构化输出」
通过结构化输出,可以让 AI 输出一份思维导图或者表格:
而不是成篇的文本:
史蒂夫·乔布斯,1955年2月24日出生,2011年10月5日去世,美国人。他活跃于科技、创新、企业管理和动画领域。乔布斯创立了Apple、NeXT和Pixar公司,推出了Mac、iPod、iPhone等具有划时代意义的产品,重塑了个人电脑、音乐和手机行业,奠定了苹果在全球科技领域的领军地位。作为Pixar的创办人之一,他也在动画领域留下了深远的影响。乔布斯是20世纪末至21世纪初最具影响力的企业家和创新者之一。
Gemini Flash 的结构化输出
而这次的更新,可以让廉价模型 1.5 Flash 也用上了:
100 万 token 的上下文
每天前 1500 个请求免费
调用价格低至 $0.075 每 100 万 token(长度少于 128k 的上文)
可叠加 GCP 的赞助/优惠
四舍五入不要钱
智谱的 Flash 是完全不要钱
相信做 AI 项目的同学都知道这意味了什么:这便宜大碗,而且 AI 味不重的 Flash,可正儿八经用在决策 workflow 了!
目前,官方的调用方法还没出(会在本周末更新),但我可以给大家提供一份 sample code
我们把上一篇《看完这篇,你也能做 AI 搜索:论「结构化输出」》中,“将四大名著的信息进行结构化输出”的例子拿来做对比,通过 GPT,代码这么写
from pydantic import BaseModelclass theBook(BaseModel):name: strwriter: strclass theFour(BaseModel):books: list[theBook]completion = client.beta.chat.completions.parse(model="gpt-4o-2024-08-06",messages=[{"role": "system", "content": "Extract the event information."},{"role": "user", "content": "告诉我四大名著分别是什么,以及他们的作者是谁"},],response_format = theFour,)response = completion.choices[0].message.parsed
得到的结果是
theFour(books=[theBook(name='《红楼梦》', writer='曹雪芹'), theBook(name='《西游记》', writer='吴承恩'), theBook(name='《三国演义》', writer='罗贯中'), theBook(name='《水浒传》', writer='施耐庵')])
而通过 Flash,代码是类似这样的
"""Install the Google AI Python SDK$ pip install google-generativeai$ pip install google.ai.generativelanguage"""import osimport google.generativeai as genaifrom google.ai.generativelanguage_v1beta.types import contentgenai.configure(api_key=os.environ["GEMINI_API_KEY"])# Create the modelgeneration_config = {"temperature": 1,"top_p": 0.95,"top_k": 64,"max_output_tokens": 8192,"response_schema": content.Schema(type = content.Type.OBJECT,enum = "[]",required = "["books"]",properties = {"books": content.Schema(type = content.Type.ARRAY,items = content.Schema(type = content.Type.OBJECT,properties = {"name": content.Schema(type = content.Type.STRING,),"writer": content.Schema(type = content.Type.STRING,),},),),},),"response_mime_type": "application/json",}model = genai.GenerativeModel(model_name="gemini-1.5-flash",generation_config=generation_config,# safety_settings = Adjust safety settings# See https://ai.google.dev/gemini-api/docs/safety-settingssystem_instruction="Extract the event information.",)chat_session = model.start_chat(history=[{"role": "user","parts": ["告诉我四大名著分别是什么,以及他们的作者是谁",],},{"role": "model","parts": ["```json\n{\"books\": [{\"name\": \"红楼梦\", \"writer\": \"曹雪芹\"}, {\"name\": \"三国演义\", \"writer\": \"罗贯中\"}, {\"name\": \"水浒传\", \"writer\": \"施耐庵\"}, {\"name\": \"西游记\", \"writer\": \"吴承恩\"}]} \n```",],},])response = chat_session.send_message("INSERT_INPUT_HERE")print(response.text)
得到结果:
{"books": [{"name": "红楼梦", "writer": "曹雪芹"}, {"name": "三国演义", "writer": "罗贯中"}, {"name": "水浒传", "writer": "施耐庵"}, {"name": "西游记", "writer": "吴承恩"}]}
53AI,企业落地大模型首选服务商
产品:场景落地咨询+大模型应用平台+行业解决方案
承诺:免费POC验证,效果达标后再合作。零风险落地应用大模型,已交付160+中大型企业
2026-03-28
最强Claude意外泄露!完胜Opus 4.6,代号「卡皮巴拉」,奥特曼又要睡不着了
2026-03-27
Tair 短期记忆架构实践:淘宝闪购 AI Agent 的秒级响应记忆系统
2026-03-27
林俊旸离职后首次发声!复盘千问的弯路,指出AI的新路
2026-03-26
GitHub 悄悄改了规则,你的代码可能正在被拿去训练 AI
2026-03-26
Harness is the New Dataset:模型智能提升的下一个关键方向
2026-03-26
Google 亲手证明:GUI 已死,但尸体还在动
2026-03-26
Claude Code 太烧钱了?我用这 5 招,把 token 成本砍了一半!
2026-03-26
治愈 Cursor AI 编程的 “幻觉”?用它就够了!
2026-01-24
2026-01-10
2026-01-01
2026-01-26
2026-01-09
2026-01-09
2026-01-23
2026-01-14
2025-12-30
2026-01-21
2026-03-22
2026-03-22
2026-03-21
2026-03-20
2026-03-19
2026-03-19
2026-03-19
2026-03-18