feat: add first version of workbench, increase token limit, improve system prompt

This commit is contained in:
Dominic Elm
2024-07-17 20:54:46 +02:00
parent b4420a22bb
commit 621b8804d8
50 changed files with 2979 additions and 423 deletions

View File

@@ -0,0 +1,9 @@
import { FileTree } from './FileTree';
export function FileTreePanel() {
return (
<div className="border-r h-full p-4">
<FileTree />
</div>
);
}