Spaces:
Sleeping
Sleeping
File size: 582 Bytes
602e9df |
1 2 3 4 5 6 7 8 9 |
from langchain.chains.query_constructor.base import AttributeInfo
metadata_field_info = [
AttributeInfo(name="L1", description="Danh mục cấp 1", type="string", example="Chuyên dụng, Dân dụng"),
AttributeInfo(name="L2", description="Danh mục cấp 2", type="string", example="Đèn LED, Đèn bàn, Bình - Phích nước"),
AttributeInfo(name="L3", description="Danh mục cấp 3", type="string"),
AttributeInfo(name="Price", description="Khoảng giá của sản phẩm người dùng muốn", type="float", is_filterable=True, is_numerical=True),
]
|