Feat: add wiki folder (#16749)

### Summary

Add wiki folders.
This commit is contained in:
Kevin Hu
2026-07-08 20:08:14 +08:00
committed by GitHub
parent 8e3bbad4da
commit 2c59d07bdb
14 changed files with 893 additions and 264 deletions

View File

@@ -109,7 +109,14 @@ class DataflowService:
dataflow_id = corrected_id
# Run pipeline
pipeline = Pipeline(dsl, tenant_id=ctx.tenant_id, doc_id=doc_id, task_id=task_id, flow_id=dataflow_id)
pipeline = Pipeline(
dsl,
tenant_id=ctx.tenant_id,
doc_id=doc_id,
task_id=task_id,
flow_id=dataflow_id,
language=ctx.language,
)
chunks = await pipeline.run(file=ctx.file) if ctx.file else await pipeline.run()
if doc_id == CANVAS_DEBUG_DOC_ID: