Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
liamjxu committed Nov 14, 2024
1 parent f004fa1 commit 90e8d56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helm/clients/vertexai_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def make_request(self, request: Request) -> RequestResult:
contents.append(
Content(role=role_mapping.get(msg["role"], "user"), parts=[Part.from_text(msg["content"])])
)
content_key = '\n'.join([msg["content"] for msg in request.messages])
content_key = "\n".join([msg["content"] for msg in request.messages])

parameters = {
"temperature": request.temperature,
Expand Down

0 comments on commit 90e8d56

Please sign in to comment.