Merge-related changes.

This commit is contained in:
ilya-kolchinsky 2025-04-02 19:56:44 +02:00
commit 60e9f46856
456 changed files with 38636 additions and 10892 deletions

View file

@ -58,7 +58,7 @@ PreprocessorChain = List[PreprocessorChainElement]
@json_schema_type
class PreprocessorResponse(BaseModel):
success: bool
output_data_type: PreprocessingDataType
output_data_type: PreprocessingDataType | None
results: Optional[List[PreprocessingDataElement]] = None
@ -68,7 +68,7 @@ class PreprocessorStore(Protocol):
@runtime_checkable
class Preprocessing(Protocol):
preprocessor_store: PreprocessorStore
preprocessor_store: PreprocessorStore | None
@webmethod(route="/preprocess", method="POST")
async def preprocess(