-
Notifications
You must be signed in to change notification settings - Fork 191
feat: implement artifact tool in TS #328
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
Merged
Merged
Changes from 9 commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
f98b0ae
feat: implement artifact tool in TS
thucpn cf09c6d
Create modern-cars-travel.md
thucpn 526c342
feat: add loading for iframe
thucpn 1b9e656
fix: typo
thucpn b3d6b2a
add license
thucpn 8e90fd2
Merge branch 'main' into feat/implement-artifact-tool-in-ts
thucpn f7ee7eb
fix: license
thucpn 017ca72
support python execution in code interpreter
thucpn 6ce4cb5
support display version artifact with side panel
thucpn d940311
auto open panel when having tool data
thucpn d9bf348
update prompt
thucpn 1650f17
enhance prompt and UI
thucpn e07c149
show code tab as default
thucpn e0fd6c6
add border for log
thucpn 2813c82
make image collapsible
thucpn 143deec
fix: rel noopener
thucpn 5d96576
remove collapsible from image
thucpn d643392
enhance UI
thucpn c5f00e4
fix: harden JSON parser
marcusschiesser aaeb0be
feat: enhance version and UI
thucpn 7dadfbd
remove versionId uuid
thucpn 8279832
fix scroll code panel and add animation
thucpn 2b2f41d
feat: use textarea for input
thucpn 93d8558
return error in artifact tool
thucpn f01c871
fix: responsive for small screen
thucpn 42886a4
fix: update e2e for textarea
thucpn c0848c0
Merge branch 'main' into feat/implement-artifact-tool-in-ts
marcusschiesser c82a7f4
changes:
marcusschiesser 12890a3
enhance UI UX, handling error, log
thucpn 91d56c9
feat: append latest code to user message
thucpn 5a98581
refactor: output, dom handling and action to trigger
thucpn 5b84589
define CodeArtifact type in sandbox url
thucpn 193fd8f
refactor UI code
thucpn 0f60dc8
rename function
thucpn 3eac490
add copy for runtime error
thucpn fb019e4
Merge branch 'main' into feat/implement-artifact-tool-in-ts
thucpn 28576ed
feat: add sandbox route for express
thucpn 961b220
fix: /sandbox instead of /chat/sandbox
thucpn 896da0d
fix: response json for express
thucpn 4eb982d
simplify chat route.ts
marcusschiesser 912fcdc
small fixes
marcusschiesser 6933cbb
remove dead code
marcusschiesser e5ec77a
fix express
marcusschiesser File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "create-llama": patch | ||
| --- | ||
|
|
||
| feat: implement artifact tool in TS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
247 changes: 247 additions & 0 deletions
247
templates/components/engines/typescript/agent/tools/artifact.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,247 @@ | ||
| /* | ||
| * Copyright 2023 FoundryLabs, Inc. | ||
| * Portions of this file are copied from the e2b project (https://github.com/e2b-dev/ai-artifacts) | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| import { CodeInterpreter, Result, Sandbox } from "@e2b/code-interpreter"; | ||
| import type { JSONSchemaType } from "ajv"; | ||
| import { | ||
| BaseTool, | ||
| ChatMessage, | ||
| JSONValue, | ||
| Settings, | ||
| ToolMetadata, | ||
| } from "llamaindex"; | ||
| import crypto from "node:crypto"; | ||
| import { TOOL_OUTPUT_DIR, saveToolOutput } from "./shared"; | ||
|
|
||
| const CODE_GENERATION_PROMPT = `You are a skilled software engineer. You do not make mistakes. Generate an artifact. You can install additional dependencies. You can use one of the following templates:\n | ||
|
|
||
| 1. code-interpreter-multilang: "Runs code as a Jupyter notebook cell. Strong data analysis angle. Can use complex visualisation to explain results.". File: script.py. Dependencies installed: python, jupyter, numpy, pandas, matplotlib, seaborn, plotly. Port: none. | ||
|
|
||
| 2. nextjs-developer: "A Next.js 13+ app that reloads automatically. Using the pages router.". File: pages/index.tsx. Dependencies installed: [email protected], typescript, @types/node, @types/react, @types/react-dom, postcss, tailwindcss, shadcn. Port: 3000. | ||
|
|
||
| 3. vue-developer: "A Vue.js 3+ app that reloads automatically. Only when asked specifically for a Vue app.". File: app.vue. Dependencies installed: vue@latest, [email protected], tailwindcss. Port: 3000. | ||
|
|
||
| 4. streamlit-developer: "A streamlit app that reloads automatically.". File: app.py. Dependencies installed: streamlit, pandas, numpy, matplotlib, request, seaborn, plotly. Port: 8501. | ||
|
|
||
| 5. gradio-developer: "A gradio app. Gradio Blocks/Interface should be called demo.". File: app.py. Dependencies installed: gradio, pandas, numpy, matplotlib, request, seaborn, plotly. Port: 7860. | ||
|
|
||
| Provide detail information about the artifact you're about to generate in the following JSON format with the following keys: | ||
|
|
||
| commentary: Describe what you're about to do and the steps you want to take for generating the artifact in great detail. | ||
| template: Name of the template used to generate the artifact. | ||
| title: Short title of the artifact. Max 3 words. | ||
| description: Short description of the artifact. Max 1 sentence. | ||
| additional_dependencies: Additional dependencies required by the artifact. Do not include dependencies that are already included in the template. | ||
| has_additional_dependencies: Detect if additional dependencies that are not included in the template are required by the artifact. | ||
| install_dependencies_command: Command to install additional dependencies required by the artifact. | ||
| port: Port number used by the resulted artifact. Null when no ports are exposed. | ||
| file_path: Relative path to the file, including the file name. | ||
| code: Code generated by the artifact. Only runnable code is allowed. | ||
|
|
||
| Make sure to use the correct syntax for the programming language you're using. | ||
| `; | ||
|
|
||
| // detail information to execute code | ||
| export type Artifact = { | ||
| commentary: string; | ||
| template: string; | ||
| title: string; | ||
| description: string; | ||
| additional_dependencies: string[]; | ||
| has_additional_dependencies: boolean; | ||
| install_dependencies_command: string; | ||
| port: number | null; | ||
| file_path: string; | ||
| code: string; | ||
| }; | ||
|
|
||
| export type ArtifactResult = { | ||
| template: string; | ||
| sandboxUrl?: string; // the url to the sandbox (output when running web app) | ||
| outputUrls?: Array<{ | ||
| url: string; | ||
| filename: string; | ||
| }>; // the urls to the output files (output when running in python environment) | ||
| stdout?: string[]; | ||
| stderr?: string[]; | ||
| }; | ||
|
|
||
| export type ArtifactParameter = { | ||
| requirement: string; | ||
| }; | ||
|
|
||
| export type ArtifactToolParams = { | ||
| metadata?: ToolMetadata<JSONSchemaType<ArtifactParameter>>; | ||
| apiKey?: string; | ||
| timeout?: number; | ||
| fileServerURLPrefix?: string; | ||
| }; | ||
|
|
||
| const DEFAULT_META_DATA: ToolMetadata<JSONSchemaType<ArtifactParameter>> = { | ||
| name: "artifact", | ||
| description: `Generate an artifact based on the input then execute it and return sandbox url.`, | ||
| parameters: { | ||
| type: "object", | ||
| properties: { | ||
| requirement: { | ||
| type: "string", | ||
| description: "The description of the application you want to build.", | ||
| }, | ||
| }, | ||
| required: ["requirement"], | ||
| }, | ||
| }; | ||
|
|
||
| export class ArtifactTool implements BaseTool<ArtifactParameter> { | ||
| metadata: ToolMetadata<JSONSchemaType<ArtifactParameter>>; | ||
| apiKey: string; | ||
| fileServerURLPrefix: string; | ||
| timeout: number; | ||
|
|
||
| constructor(params?: ArtifactToolParams) { | ||
| this.metadata = params?.metadata || DEFAULT_META_DATA; | ||
| this.timeout = params?.timeout || 10 * 60 * 1000; // 10 minutes in ms | ||
| this.apiKey = params?.apiKey || process.env.E2B_API_KEY || ""; | ||
| this.fileServerURLPrefix = | ||
| params?.fileServerURLPrefix || process.env.FILESERVER_URL_PREFIX || ""; | ||
|
|
||
| if (!this.apiKey) { | ||
| throw new Error("E2B_API_KEY is not set"); | ||
| } | ||
|
|
||
| if (!this.fileServerURLPrefix) { | ||
| throw new Error( | ||
| "FILESERVER_URL_PREFIX is required to display file output from sandbox", | ||
| ); | ||
| } | ||
| } | ||
|
|
||
| async call(input: ArtifactParameter) { | ||
| try { | ||
| const versionId = crypto.randomUUID(); | ||
| const artifact = await this.generateArtifact(input.requirement); | ||
| const result = await this.executeArtifact(artifact); | ||
| console.log({ versionId, artifact, result }); | ||
| return { versionId, artifact, result } as unknown as JSONValue; | ||
| } catch (error) { | ||
| return {}; | ||
| } | ||
thucpn marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
| // Generate artifact (code, environment, dependencies, etc.) | ||
| async generateArtifact(query: string): Promise<Artifact> { | ||
| const messages: ChatMessage[] = [ | ||
| { role: "system", content: CODE_GENERATION_PROMPT }, | ||
| { role: "user", content: query }, | ||
| ]; | ||
| try { | ||
| const response = await Settings.llm.chat({ messages }); | ||
| const artifact = JSON.parse( | ||
| response.message.content.toString(), | ||
| ) as Artifact; | ||
| return artifact; | ||
thucpn marked this conversation as resolved.
Show resolved
Hide resolved
thucpn marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } catch (error) { | ||
| console.log("Failed to generate artifact", error); | ||
| throw error; | ||
| } | ||
| } | ||
|
|
||
| // Execute artifact | ||
| async executeArtifact(artifact: Artifact): Promise<ArtifactResult> { | ||
| try { | ||
| if (artifact.template === "code-interpreter-multilang") { | ||
| return this.runInCodeInterpreter(artifact); | ||
| } | ||
| return this.runInSandbox(artifact); | ||
| } catch (error) { | ||
| console.log("Failed to execute artifact", error); | ||
| throw error; | ||
| } | ||
| } | ||
|
|
||
| // Execute artifact in sandbox (use for web apps) | ||
| private async runInSandbox(artifact: Artifact): Promise<ArtifactResult> { | ||
| // Create sandbox | ||
| const sandbox = await Sandbox.create(artifact.template, { | ||
| metadata: { template: artifact.template, userID: "default" }, | ||
| timeoutMs: this.timeout, | ||
| apiKey: this.apiKey, | ||
| }); | ||
|
|
||
| // Install dependencies and copy code to sandbox | ||
| if (artifact.has_additional_dependencies) { | ||
| await sandbox.commands.run(artifact.install_dependencies_command); | ||
| } | ||
| await sandbox.files.write(artifact.file_path, artifact.code); | ||
|
|
||
| // Return the sandbox URL | ||
| return { | ||
| template: artifact.template, | ||
| sandboxUrl: `https://${sandbox?.getHost(artifact.port || 80)}`, | ||
| }; | ||
| } | ||
|
|
||
| // Execute artifact in code interpreter (use for python apps) | ||
| private async runInCodeInterpreter( | ||
| artifact: Artifact, | ||
| ): Promise<ArtifactResult> { | ||
| // create code interpreter | ||
| const codeInterpreter = await CodeInterpreter.create({ | ||
| metadata: { template: artifact.template, userID: "default" }, | ||
| timeoutMs: this.timeout, | ||
| apiKey: this.apiKey, | ||
| }); | ||
|
|
||
| // Install dependencies and copy code to code interpreter | ||
| if (artifact.has_additional_dependencies) { | ||
| await codeInterpreter.notebook.execCell( | ||
| artifact.install_dependencies_command, | ||
| ); | ||
| } | ||
| await codeInterpreter.files.write(artifact.file_path, artifact.code); | ||
|
|
||
| // Execute code in notebook and return output urls | ||
| const result = await codeInterpreter.notebook.execCell(artifact.code || ""); | ||
| const { results: cellResults, logs, error } = result; | ||
| const outputUrls = await this.downloadCellResults(cellResults); | ||
| await codeInterpreter.close(); | ||
| return { | ||
| template: artifact.template, | ||
| outputUrls, | ||
| stdout: logs.stdout, | ||
| stderr: logs.stderr, | ||
| }; | ||
| } | ||
|
|
||
| private async downloadCellResults(cellResults?: Result[]): Promise< | ||
| Array<{ | ||
| url: string; | ||
| filename: string; | ||
| }> | ||
| > { | ||
| if (!cellResults) return []; | ||
| return cellResults.flatMap((res) => { | ||
| const formats = res.formats(); // available formats in the result | ||
| return formats.map((ext) => { | ||
| const filename = `${crypto.randomUUID()}.${ext}`; | ||
| const fileUrl = `${this.fileServerURLPrefix}/${TOOL_OUTPUT_DIR}/${filename}`; | ||
| const base64 = res[ext as keyof Result]; | ||
| saveToolOutput(base64, filename); // don't await to avoid blocking the request | ||
| return { url: fileUrl, filename }; | ||
| }); | ||
| }); | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
templates/components/engines/typescript/agent/tools/shared.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| import fs from "fs"; | ||
| import path from "node:path"; | ||
|
|
||
| export const TOOL_OUTPUT_DIR = "output/tools"; | ||
|
|
||
| export async function saveToolOutput( | ||
| base64: string, | ||
| filename: string, | ||
| outputDir: string = TOOL_OUTPUT_DIR, | ||
| ) { | ||
| try { | ||
| if (!fs.existsSync(outputDir)) { | ||
| await fs.promises.mkdir(outputDir, { recursive: true }); | ||
| } | ||
| const filePath = path.join(outputDir, filename); | ||
| await fs.promises.writeFile(filePath, Buffer.from(base64, "base64")); | ||
| console.log(`Saved file to ${filePath}`); | ||
| } catch (error) { | ||
| console.log(`Error saving file to ${outputDir}`, error); | ||
| } | ||
| } | ||
thucpn marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.