We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa26437 commit b19a7acCopy full SHA for b19a7ac
1 file changed
src/webapp/routers/models.py
@@ -518,7 +518,8 @@ def trigger_inference_run(
518
detail="Unexpected number of batches found: Expected 1, got "
519
+ str(len(inst_result)),
520
)
521
- 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]
522
+ inst_file_schemas = [list({s for f in batch_result[0][0].files for s in f.schemas})]
523
raw_config = query_result[0][0].schema_configs
524
525
# Inline legacy → new mapping directly on the string
0 commit comments