Skip to content

Commit

Permalink
fix: LLM - Fixed the InlineContext grounding source
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 615887256
  • Loading branch information
Ark-kun authored and Copybara-Service committed Mar 14, 2024
1 parent f7f53e8 commit 6f59100
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vertexai/language_models/_language_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1036,9 +1036,9 @@ def _to_grounding_source_dict(self) -> Dict[str, Any]:
"sources": [
{
"type": self._type,
"inlineContext": self.inline_context,
}
],
"inlineContext": self.inline_context,
}


Expand Down

0 comments on commit 6f59100

Please sign in to comment.