-
Notifications
You must be signed in to change notification settings - Fork 140
Fix evals in CI #143
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
Fix evals in CI #143
Conversation
@@ -54,6 +54,10 @@ export class ContainerMcpAgent extends McpAgent<Env, never, Props> { | |||
Use this tool to initialize a container before running any python or node.js code that the user requests ro run.`, | |||
// @ts-ignore | |||
async () => { | |||
console.log('initializing') |
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.
Remove log? Or maybe we should add some tags 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.
nah i'm gonna remove
@@ -47,6 +49,7 @@ export async function runTask( | |||
return acc | |||
}, {} as ToolSet) | |||
|
|||
console.log('streaming res') |
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.
Stray log?
description: v.description, | ||
execute: async (args, opts) => { | ||
execute: async (args: any, opts) => { |
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.
Just curious why set to this to :any
?
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 was just copypasted from the workers-bindings evals. IIRC this was to prevent eslint from complaining. We should honestly move this to be a common function though tbh (but I'll do that in a follow up pr)
fa83d75
to
ae8bc13
Compare
ae8bc13
to
9a750b4
Compare
There was an issue with the containers evals. I fixed the evals and got dev mode in sync with the other folders in the repo