chore: Restore chunk size for openai embeddings (#5431)

Restore chunk size
This commit is contained in:
Matthew Zhou
2025-10-14 13:27:03 -07:00
committed by Caren Thomas
parent 936be41e8d
commit 0543a60538

View File

@@ -727,7 +727,7 @@ class OpenAIClient(LLMClientBase):
# queue of (start_idx, chunk_inputs) to process
chunks_to_process = [(i, inputs[i : i + 2048]) for i in range(0, len(inputs), 2048)]
min_chunk_size = 64
min_chunk_size = 256
while chunks_to_process:
tasks = []