-
-
Notifications
You must be signed in to change notification settings - Fork 9.2k
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
🥷 Extract tasks from messages in autonomous agent #846
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
import { GPT_35_TURBO_16K, GPT_4 } from "../../types"; | ||
import React from "react"; | ||
|
||
export const ChatWindowTitle = ({ model }: { model: GPTModelNames }) => { |
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.
This could be cleaner in the future, maybe a dict of models to spans?
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.
Will add a ticket
@@ -11,21 +11,27 @@ export interface AgentRunModel { | |||
|
|||
getRemainingTasks(): Task[]; | |||
|
|||
getCurrentTask(): Task | undefined; | |||
|
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.
not sure why there are new lines here?
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.
Formatter just doing this, not sure
|
||
/* | ||
* Ideal message type | ||
* { | ||
* icon: IconType, | ||
* title: string, | ||
* subtitle: string, // Optional | ||
* value: string, // Markdown formatted value | ||
* color: string, // Classname used for the border | ||
* } | ||
*/ |
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.
/* | |
* Ideal message type | |
* { | |
* icon: IconType, | |
* title: string, | |
* subtitle: string, // Optional | |
* value: string, // Markdown formatted value | |
* color: string, // Classname used for the border | |
* } | |
*/ |
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.
actually you can leave the above
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.
Yeah, hopefully we can use this in the future
No description provided.