Skip to content

Commit

Permalink
Update esbuild.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
matthoffner authored Dec 7, 2023
1 parent 0fc9b7d commit b561a05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esbuild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function createJavaScriptCompiler() {
entryPoint: z.string(),
});
const name = "javaScriptCompiler";
const description = "Compiles JavaScript code using esbuild-wasm. Input is a string of raw JavaScript code and an entry point, output is the compiled code.";
const description = "Compiles JavaScript, TypeScript, or JSX code within a chat interface using esbuild-wasm. Accepts raw code and an entry point as input, and provides compiled output, facilitating real-time code execution and analysis in a chatbot environment.";

const execute = async (params: z.infer<typeof paramsSchema>) => {
const { rawCode, entryPoint } = params;
Expand Down

0 comments on commit b561a05

Please sign in to comment.