-
Notifications
You must be signed in to change notification settings - Fork 257
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
Ai iterate code cell #144
Ai iterate code cell #144
Conversation
@@ -50,6 +56,11 @@ export const CellUpdatedPayloadSchema = z.object({ | |||
cell: CellSchema, | |||
}); | |||
|
|||
export const CellAiGeneratedPayloadSchema = z.object({ | |||
cellId: z.string(), | |||
output: z.string(), |
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.
Nit: can we name this source
to match the name of this property on cell
? It is the source we're getting back here, right?
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.
source
felt a little wrong to me, it's LLM output, not really a code source.
Diff based experience with unified view and accept / reject mechanics
CleanShot.2024-07-19.at.13.58.11.mp4