Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/webapp/routers/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,8 @@ def trigger_inference_run(
detail="Unexpected number of batches found: Expected 1, got "
+ str(len(inst_result)),
)
inst_file_schemas = [x.schemas for x in batch_result[0][0].files]
# inst_file_schemas = [x.schemas for x in batch_result[0][0].files]
inst_file_schemas = [list({s for f in batch_result[0][0].files for s in f.schemas})]
raw_config = query_result[0][0].schema_configs

# Inline legacy → new mapping directly on the string
Expand Down
Loading