Spaces:
Running
Running
File size: 221 Bytes
62f31c8 |
1 2 3 4 5 6 7 8 9 |
from typing import Optional, List
from pydantic import BaseModel
class PredictRequest(BaseModel):
text: str
stock_codes: Optional[List[str]] = None # 定义为可选字段,可以是一个字符串列表
|