Initial commit: sage:TypeScript AI Agent 框架 monorepo(llm / memory / tui 三包)

This commit is contained in:
WpyQwq
2026-09-19 12:10:51 +08:00
commit eb29eb3fa1
47 changed files with 4429 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"name": "@sage/tui",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "node --import=tsx/esm src/index.tsx",
"dev": "node --import=tsx/esm --watch src/index.tsx",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@sage/core": "*",
"@sage/llm": "*",
"@sage/memory": "*",
"ink": "^5.1.0",
"ink-text-input": "^6.0.0",
"react": "^18.3.0",
"chalk": "^5.4.0",
"figures": "^6.1.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0"
}
}