Skip to content

Commit

Permalink
chore (style): format evaluators_service with [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
aybruhm committed Aug 23, 2024
1 parent 31d10e1 commit b224f10
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion agenta-backend/agenta_backend/services/evaluators_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,11 @@ async def auto_ai_critique(
}
response = await ai_critique(
input=EvaluatorInputInterface(
**{"inputs": inputs, "settings": settings_values, "credentials": lm_providers_keys}
**{
"inputs": inputs,
"settings": settings_values,
"credentials": lm_providers_keys,
}
)
)
return Result(type="text", value=str(response["outputs"]["score"]))
Expand Down

0 comments on commit b224f10

Please sign in to comment.