Spaces:
Running
Running
Commit
·
74258c3
1
Parent(s):
8946d7b
fordev we are only monitoring 5 tasks
Browse files- utils/processing.py +1 -1
utils/processing.py
CHANGED
@@ -120,7 +120,7 @@ async def process_upload(input_path, output_path):
|
|
120 |
assert 'raw_logging_results' in data, "raw_logging_results key not found in the file"
|
121 |
openai_client = AsyncOpenAIClient(model="gpt-4o-mini")
|
122 |
|
123 |
-
processed_calls = await analyze_agent_steps(data['raw_logging_results'][:
|
124 |
|
125 |
# Save the processed data
|
126 |
data['raw_logging_results'] = processed_calls
|
|
|
120 |
assert 'raw_logging_results' in data, "raw_logging_results key not found in the file"
|
121 |
openai_client = AsyncOpenAIClient(model="gpt-4o-mini")
|
122 |
|
123 |
+
processed_calls = await analyze_agent_steps(data['raw_logging_results'][:5], openai_client)
|
124 |
|
125 |
# Save the processed data
|
126 |
data['raw_logging_results'] = processed_calls
|