Table format fix and Typo

* Fixed marked down table formats because they were looking ugly in pycharm
* Typos Fixes.
This commit is contained in:
Rajan Paneru 2024-06-06 22:26:49 +09:30 committed by sujan100000
parent 2e95758ada
commit 2e25416c02
11 changed files with 127 additions and 127 deletions

View file

@ -390,7 +390,7 @@ def _gemini_convert_messages_with_history(messages: list) -> List[ContentType]:
assistant_content.extend(_parts)
elif messages[msg_i].get(
"tool_calls", []
): # support assistant tool invoke convertion
): # support assistant tool invoke conversion
assistant_content.extend(
convert_to_gemini_tool_call_invoke(messages[msg_i]["tool_calls"])
)