Merge branch 'main' into feat/agent-refactor-and-logging

This commit is contained in:
Alex
2025-03-05 16:04:09 -05:00
committed by GitHub
28 changed files with 624 additions and 1072 deletions

View File

@@ -22,7 +22,7 @@ class GoogleLLM(BaseLLM):
parts = []
if role and content is not None:
if isinstance(content, str):
parts = [types.Part.from_text(content)]
parts = [types.Part.from_text(text=content)]
elif isinstance(content, list):
for item in content:
if "text" in item: