-
-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
♻️ Refactor and add retries #857
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -63,7 +63,7 @@ const getMessagePrefix = (message: Message) => { | |||
} else if (getTaskStatus(message) === TASK_STATUS_COMPLETED) { | |||
return `Executing: ${message.value}`; | |||
} else if (getTaskStatus(message) === TASK_STATUS_FINAL) { | |||
return `Finished: ${message.value}`; | |||
return `Finished:`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return `Finished:`; | |
return `Finished.`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some jank with task coupling. It will display the task value after this 🙃
useAgentStore.getState().setIsAgentThinking(false); | ||
|
||
this.workLog.shift(); | ||
if (this.isRunning) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
invert this condition
No description provided.