chore (AddStateBody class)

This commit is contained in:
josc146 2023-08-13 21:27:29 +08:00
parent e0b7453883
commit da68926e9c

View File

@ -1,4 +1,4 @@
from typing import Any, Dict, List
from typing import Any, Dict, List, Union
from utils.log import quick_log
from fastapi import APIRouter, HTTPException, Request, Response, status
from pydantic import BaseModel
@ -60,7 +60,7 @@ def enable_state_cache():
class AddStateBody(BaseModel):
prompt: str
tokens: List[str]
tokens: List[Union[str, int]]
state: Any
logits: Any