fix: Change chunk_size ot batch_size for temporal task

This commit is contained in:
Igor Ilic 2025-10-14 14:25:38 +02:00
parent eb631a23ad
commit 84a23756f5

View file

@ -311,7 +311,7 @@ async def get_temporal_tasks(
max_chunk_size=chunk_size or get_max_chunk_tokens(),
chunker=chunker,
),
Task(extract_events_and_timestamps, task_config={"chunk_size": 10}),
Task(extract_events_and_timestamps, task_config={"batch_size": 10}),
Task(extract_knowledge_graph_from_events),
Task(add_data_points, task_config={"batch_size": 10}),
]