当前位置: 首页 > news >正文

【LLM】 BaseModel的作用

在 Python 里,BaseModel 是 pydantic 库提供的一个基类,pydantic 是用于数据验证和设置管理的强大库。BaseModel 主要有以下作用:

1. 数据验证

BaseModel 能对输入的数据进行验证,保证数据符合定义的类型和约束。要是输入的数据不满足要求,pydantic 会抛出异常。


from pydantic import BaseModel, Fieldclass User(BaseModel):name: str = Field(..., min_length=2, max_length=50)age: int = Field(..., gt=0, lt=120)# 验证通过
user1 = User(name="Alice", age=25)
print(user1)# 验证失败,抛出异常
try:user2 = User(name="A", age=150)
except Exception as e:print(e)

输出结果:


name='Alice' age=25
2 validation errors for User
nameString should have at least 2 characters [type=string_too_short, input_value='A', input_type=str]For further information visit https://errors.pydantic.dev/2.5/v/string_too_short
ageInput should be less than 120 [type=number_too_big, input_value=150, input_type=int]For further information visit https://errors.pydantic.dev/2.5/v/number_too_big

2. 数据解析

BaseModel 可以把不同格式的数据(像字典、JSON 等)解析成 Python 对象,同时进行类型转换。

示例代码:

from pydantic import BaseModelclass Book(BaseModel):title: strprice: float# 从字典解析数据
book_data = {"title": "Python Crash Course", "price": 29.99}
book = Book(**book_data)
print(book)

输出结果:


title='Python Crash Course' price=29.99

3. 数据序列化

BaseModel 支持将 Python 对象序列化为字典或 JSON 字符串,方便数据的存储和传输。

from pydantic import BaseModelclass Product(BaseModel):name: strquantity: intproduct = Product(name="Laptop", quantity=10)# 序列化为字典
product_dict = product.model_dump()
print(product_dict)# 序列化为 JSON 字符串
product_json = product.model_dump_json()
print(product_json)

输出结果:

{'name': 'Laptop', 'quantity': 10}
{"name": "Laptop", "quantity": 10}

4. 类型提示

借助 BaseModel 定义数据结构,能为代码提供清晰的类型提示,增强代码的可读性和可维护性。

在你当前编辑的代码里,Fetch 类继承自 BaseModel,目的是定义获取 URL 的参数,对输入参数进行验证和解析:

class Fetch(BaseModel):"""Parameters for fetching a URL."""url: Annotated[AnyUrl, Field(description="URL to fetch")]max_length: Annotated[int,Field(default=5000,description="Maximum number of characters to return.",gt=0,lt=1000000,),]start_index: Annotated[int,Field(default=0,description="On return output starting at this character index, useful if a previous fetch was truncated and more context is required.",ge=0,),]raw: Annotated[bool,Field(default=False,description="Get the actual HTML content of the requested page, without simplification.",),]
http://www.lryc.cn/news/609191.html

相关文章:

  • 【0基础PS】PS工具详解--文字工具
  • Shell脚本-变量是什么
  • 思途JSP学习 0802(项目完整流程)
  • Linux网络编程 --- 多路转接select
  • Unity JobSystem 与 BurstCompiler 资料
  • 2025.8.3
  • webrtv弱网-QualityScalerResource 源码分析及算法原理
  • 【大模型实战】向量数据库实战 - Chroma Milvus
  • Linux mount挂载选项详解(重点关注nosuid)
  • ESP32开发问题汇总
  • ZStack Cloud 5.3.40正式发布
  • 第15届蓝桥杯Scratch图形化国赛初/中级组2024年9月7日真题
  • Product Hunt 每日热榜 | 2025-08-02
  • 01数据结构-时间复杂度和空间复杂度
  • Petalinux 23.2 构建过程中常见下载错误及解决方法总结
  • ORA-12514:TNS: 监听程序当前无法识别连接描述符中请求的服务
  • 小白学OpenCV系列2-理解图像
  • 使用纯Docker命令搭建多服务环境(Linux版)
  • Web 开发 11
  • 腾讯人脸识别
  • lumerical——锥形波导偏振转换
  • 大白话讲解MCP
  • 机器学习第四课之决策树
  • Android 之 蓝牙通信(2.0 经典)
  • Kaggle 竞赛入门指南
  • ELECTRICAL靶机复现练习笔记
  • C++中多线程和互斥锁的基本使用
  • 【数据结构】二叉树的顺序结构实现
  • 15_01_opencv_形态学滤波
  • 35.【.NET8 实战--孢子记账--从单体到微服务--转向微服务】--数据缓存