mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-28 18:06:30 +02:00
First version copilot:
- basic llm call that can perform CRUD actions over dummy workflow json files
This commit is contained in:
parent
055dda35b9
commit
4310b1d45d
11 changed files with 327 additions and 4 deletions
9
apps/cli/src/x.ts
Normal file
9
apps/cli/src/x.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import { ensureBaseDirs } from "./application/assistant/services/storage.js";
|
||||
import { startCopilot } from "./application/assistant/chat.js";
|
||||
|
||||
ensureBaseDirs();
|
||||
|
||||
startCopilot().catch((err) => {
|
||||
console.error("Failed to run copilot:", err);
|
||||
process.exitCode = 1;
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue