【ollama】自定义结构化输出

自定义字段

models.py

python 复制代码
from typing import Union, Literal
from pydantic import BaseModel, Field

class sendGroupMsg(BaseModel):
    type: Literal['send_group_msg'] = Field(description="指令类型标识,固定为 send_group_msg")
    carenum: str = Field(description="发送群消息的问题单号,单号如567")
    msg: str = Field(description="群消息的内容")
    oper: str = Field(default="发群消息",description="具体的操作名称,固定是发群消息")

class sendMsg(BaseModel):
    type: Literal['send_msg'] = Field(description="指令类型标识,固定为 send_msg")
    carenum: str = Field(description="发送消息的问题单号,例如:567")
    msg: str = Field(description="发送的消息内容。若用户未指定具体内容")
    oper: str = Field(default="发消息",description="具体的操作名称,固定是发消息")

class sendPhoneMsg(BaseModel):
    type: Literal['send_phone_msg'] = Field(description="指令类型标识,固定为 send_phone_msg")
    carenum: str = Field(description="待发送短信的问题单号,例如:567")
    oper: str = Field(default="手机短信",description="具体的操作名称,固定是手机短信")



class AllCommands(BaseModel):
    task: Union[sendGroupMsg,
    sendPhoneMsg,sendMsg] = Field(
        description="根据输入文本判断指令类型。"
    )

main.py

python 复制代码
from typing import Union, Literal
from pydantic import BaseModel, Field
import ollama
import os
from models import AllCommands 
import sys
os.environ["NO_PROXY"] = "xxxx,127.0.0.1,localhost,::1"

client = ollama.Client(host='http://xxxx:11434')

def generate_command(user_text):
    prompt = f"""请从以下文本中严格提取指令任务。
    要求:
    1. 必须严格提取原文的单号和操作名,严禁翻译或改写。
    2. 必须根据操作语义,准确判断 type 字段。
    3. 严格按照给定的 JSON Schema 格式输出。
    4. 如果文本包含"加内容"时,使用 add_first_inof。如果文本包含"加记录"、"添加记录"时,使用add_new_info
    文本内容:"{user_text}"
    """
    print(f"🔧 正在请求模型计算:...")
    response = client.chat(
        model='ds05288b:latest',
        # model='qwen3:8b',
        messages=[{'role': 'user', 'content': prompt}],
        format=AllCommands.model_json_schema(),
        options={'temperature': 0} 
    )
    print(f"🔧 模型计算完毕,即将返回结果:...")

    result = AllCommands.model_validate_json(response.message.content)
    print(result)
    return result


while True:

    print("请输入多行文本(输入完成后按 Ctrl+D/Ctrl+Z):")
    user_question = sys.stdin.read()

    final_answer = generate_command(user_question)
    print("\n✅ 最终答案:", final_answer)

    print("🧹 [系统提示] 准备迎接下一个问题。\n")
相关推荐
子兮曰2 天前
jev-ultrafast 深度解析:7 秒订机票的浏览器 Agent 是如何炼成的
前端·后端·agent
子兮曰2 天前
Jev 爆发一周:7 秒 Agent 背后的 System One 生态与三场争议
前端·后端·ai编程
未济2 天前
linux 配置环境变量
linux
傲世仙尊2 天前
目录即文件-Ext文件系统收尾篇
linux·c语言
前端小万2 天前
写公众号赚了 3000 块后,我做了一款叫 "一键成稿" 的软件
前端·微信小程序
爱勇宝2 天前
ZCode 开源 24 小时:一份没有历史的账本,回答不了"有没有偷代码"
前端·后端·chatglm (智谱)
三十而立洋2 天前
Cookie 详解:从产生到安全,一次讲透
前端·javascript
这个DBA有点耶2 天前
MVCC深入:Read View、版本链与快照读——InnoDB并发控制的内核
数据库·mysql·架构
DBA_G2 天前
从地面到云霄:GBase数据库在民航三大场景的落地实践
数据库
卡布鲁2 天前
把一个 Vite + Vue3 应用塞进 qiankun (React + Umi3) 主站:十个坑的复盘
前端·javascript·react.js