@aigne/example-afs-local-fs 1.2.6-beta.9 → 1.3.0-beta.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -41,10 +41,10 @@ export OPENAI_API_KEY=YOUR_OPENAI_API_KEY
|
|
|
41
41
|
|
|
42
42
|
# Mount AIGNE framework docs (clone first)
|
|
43
43
|
git clone https://github.com/AIGNE-io/aigne-framework
|
|
44
|
-
npx -y @aigne/example-afs-local-fs --path ./aigne-framework --
|
|
44
|
+
npx -y @aigne/example-afs-local-fs --path ./aigne-framework --interactive
|
|
45
45
|
|
|
46
46
|
# Or mount any directory
|
|
47
|
-
npx -y @aigne/example-afs-local-fs --path ~/Documents --description "My Documents" --
|
|
47
|
+
npx -y @aigne/example-afs-local-fs --path ~/Documents --description "My Documents" --interactive
|
|
48
48
|
|
|
49
49
|
# Ask a specific question
|
|
50
50
|
npx -y @aigne/example-afs-local-fs --path . --input "What is AIGNE?"
|
|
@@ -154,7 +154,7 @@ pnpm start --path .
|
|
|
154
154
|
pnpm start --path ~/Documents --description "My Documents"
|
|
155
155
|
|
|
156
156
|
# Run in interactive chat mode
|
|
157
|
-
pnpm start --path . --
|
|
157
|
+
pnpm start --path . --interactive
|
|
158
158
|
```
|
|
159
159
|
|
|
160
160
|
## How It Works: 3 Simple Steps
|
|
@@ -218,7 +218,7 @@ npx -y @aigne/example-afs-local-fs --path ./aigne-framework --input "How does AF
|
|
|
218
218
|
npx -y @aigne/example-afs-local-fs --path . --input "Find all TypeScript files with TODO comments"
|
|
219
219
|
|
|
220
220
|
# Interactive mode - ask follow-up questions
|
|
221
|
-
npx -y @aigne/example-afs-local-fs --path ~/Documents --
|
|
221
|
+
npx -y @aigne/example-afs-local-fs --path ~/Documents --interactive
|
|
222
222
|
```
|
|
223
223
|
|
|
224
224
|
**In chat mode, try:**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/example-afs-local-fs",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0-beta.31",
|
|
4
4
|
"description": "A demonstration of using AIGNE Framework with AFS LocalFS module",
|
|
5
5
|
"author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
|
|
6
6
|
"homepage": "https://github.com/AIGNE-io/aigne-framework/tree/main/examples/afs-local-fs",
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"yargs": "^18.0.0",
|
|
20
|
-
"@aigne/afs
|
|
21
|
-
"@aigne/afs": "^1.
|
|
22
|
-
"@aigne/afs-local-fs": "^1.4.0-beta.
|
|
23
|
-
"@aigne/cli": "^1.59.0-beta.
|
|
24
|
-
"@aigne/core": "^1.72.0-beta.
|
|
20
|
+
"@aigne/afs": "^1.4.0-beta.11",
|
|
21
|
+
"@aigne/afs-history": "^1.2.0-beta.12",
|
|
22
|
+
"@aigne/afs-local-fs": "^1.4.0-beta.26",
|
|
23
|
+
"@aigne/cli": "^1.59.0-beta.31",
|
|
24
|
+
"@aigne/core": "^1.72.0-beta.25"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/bun": "^1.2.22",
|
|
28
|
-
"@aigne/test-utils": "^0.5.69-beta.
|
|
28
|
+
"@aigne/test-utils": "^0.5.69-beta.25"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"start": "bun run index.ts",
|