Spaces:
Sleeping
Sleeping
File size: 679 Bytes
19e7110 9d2afe1 19e7110 cf7f044 e134134 |
1 2 3 4 5 6 7 8 9 10 |
from pydantic import BaseModel, Field
from typing import List
class Law(BaseModel):
number: str = Field(description="Luật số hoặc số, ví dụ như: 58/2014/QH13")
title: str = Field(description="Tiêu đề")
publisher: str = Field(description="Cơ quan Phát hành, ví dụ như: Chính phủ, Quốc Hội")
publish_date: str = Field(description="Ngày Phát hành, ví dụ như: Ngày 29 tháng 5 năm 2015")
publish_location: str = Field(description="Nơi Phát hành, ví dụ như: Hà Nội, Đà Nẵng")
document_type: str = Field(description="Loại văn bản, ví dụ như: Luật, Thông tư, Nghị định, Pháp Lệnh, ") |