Skip to content

Commit

Permalink
fix: remove name from default api logging
Browse files Browse the repository at this point in the history
  • Loading branch information
parambharat committed Apr 24, 2024
1 parent 6e5c0ad commit f096610
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wandbot/evaluation/eval/async_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ async def process_row(idx, row, outfile):
Process a chunk of the dataframe asynchronously and write results to the file.
"""
row_str = row.to_json()
response = await get_eval_record(row_str, application="test-baseline-ayush")
response = await get_eval_record(row_str, application="api-eval")
logger.info(f"Generated response for idx: {idx}")
eval_row = await evaluate_row(idx, response)
logger.info(f"Evaluated response for idx: {idx}")
Expand Down

0 comments on commit f096610

Please sign in to comment.