feat: agent brain (ollama) and chat ui

This commit is contained in:
Dave
2025-12-24 17:17:35 +00:00
parent 76e03bc1a2
commit d9cd16601b
18 changed files with 1712 additions and 14 deletions

View File

@@ -1,7 +1,7 @@
import { useState } from "react";
import { invoke } from "@tauri-apps/api/core";
import { open } from "@tauri-apps/plugin-dialog";
import { ToolTester } from "./components/ToolTester";
import { Chat } from "./components/Chat";
import "./App.css";
function App() {
@@ -62,8 +62,7 @@ function App() {
<strong>Active Project:</strong> {projectPath}
</div>
<hr style={{ margin: "20px 0" }} />
<p>Project loaded successfully.</p>
<ToolTester />
<Chat />
</div>
)}