You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Add tool call to the existing assistant message or create one if needed
481
-
if(lastMsg.sender=="assistant"){
481
+
if(lastMsg.sender==="assistant"){
482
482
lastMsg.parts.push({
483
483
type: "toolCall",
484
484
toolCall: newToolCall,
@@ -508,8 +508,8 @@ function App() {
508
508
for(constmsgofconv.messages){
509
509
for(constmsgPartofmsg.parts){
510
510
if(
511
-
msgPart.type=="toolCall"&&
512
-
msgPart.toolCall.id==toolCallId
511
+
msgPart.type==="toolCall"&&
512
+
msgPart.toolCall.id===toolCallId
513
513
){
514
514
// Split "finished" into "failed" or "completed".
515
515
if(status==="finished"){
@@ -671,7 +671,7 @@ function App() {
671
671
parts: [
672
672
{
673
673
type: "text",
674
-
text: "Unfortunately, Gemini 2.5 Flash-Lite isn't usable due to thinking issues. See issues #1953](https://github.com/google-gemini/gemini-cli/issues/1953) and [#4548](https://github.com/google-gemini/gemini-cli/issues/4548) on the Gemini CLI repository for more details. PRs [#3033](https://github.com/google-gemini/gemini-cli/pull/3033) and [#4652](https://github.com/google-gemini/gemini-cli/pull/4652) resolve this issue.",
674
+
text: "Unfortunately, Gemini 2.5 Flash-Lite isn't usable due to thinking issues. See issues [#1953](https://github.com/google-gemini/gemini-cli/issues/1953) and [#4548](https://github.com/google-gemini/gemini-cli/issues/4548) on the Gemini CLI repository for more details. PRs [#3033](https://github.com/google-gemini/gemini-cli/pull/3033) and [#4652](https://github.com/google-gemini/gemini-cli/pull/4652) resolve this issue.",
0 commit comments