@stacksjs/ai 0.57.4 → 0.58.20
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 +16 -11
- package/dist/index.js +10351 -0
- package/package.json +27 -17
- package/LICENSE.md +0 -21
- package/dist/drivers/index.d.ts +0 -1
- package/dist/drivers/index.mjs +0 -1
- package/dist/drivers/openai.d.ts +0 -1
- package/dist/drivers/openai.mjs +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.mjs +0 -1
package/README.md
CHANGED
|
@@ -1,23 +1,28 @@
|
|
|
1
1
|
# Stacks AI
|
|
2
2
|
|
|
3
|
-
This package contains a
|
|
3
|
+
This package contains a set of tools to help you build AI-powered applications.
|
|
4
|
+
|
|
5
|
+
1. Request model access from AWS: <https://us-east-1.console.aws.amazon.com/bedrock/home?region=us-east-1#/modelaccess>
|
|
6
|
+
2.
|
|
4
7
|
|
|
5
8
|
## ☘️ Features
|
|
6
9
|
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
10
|
+
- Chatbots
|
|
11
|
+
- Image Generation
|
|
12
|
+
- Text Generation & Summaries
|
|
13
|
+
- git Diff Interpreter
|
|
14
|
+
- GitHub PR integration
|
|
15
|
+
- UI Generator
|
|
16
|
+
- Zero-config
|
|
12
17
|
|
|
13
18
|
## TODO
|
|
14
19
|
|
|
15
|
-
- [ ] Driver:
|
|
20
|
+
- [ ] Driver: Bedrock
|
|
16
21
|
|
|
17
22
|
## 🤖 Usage
|
|
18
23
|
|
|
19
24
|
```bash
|
|
20
|
-
|
|
25
|
+
bun install -d @stacksjs/ai
|
|
21
26
|
```
|
|
22
27
|
|
|
23
28
|
You may now use:
|
|
@@ -34,7 +39,7 @@ Learn more in the docs.
|
|
|
34
39
|
## 🧪 Testing
|
|
35
40
|
|
|
36
41
|
```bash
|
|
37
|
-
|
|
42
|
+
bun test
|
|
38
43
|
```
|
|
39
44
|
|
|
40
45
|
## 📈 Changelog
|
|
@@ -53,10 +58,10 @@ For help, discussion about best practices, or any other conversation that would
|
|
|
53
58
|
|
|
54
59
|
For casual chit-chat with others using this package:
|
|
55
60
|
|
|
56
|
-
[Join the Stacks Discord Server](https://discord.
|
|
61
|
+
[Join the Stacks Discord Server](https://discord.gg/stacksjs)
|
|
57
62
|
|
|
58
63
|
## 📄 License
|
|
59
64
|
|
|
60
65
|
The MIT License (MIT). Please see [LICENSE](https://github.com/stacksjs/stacks/tree/main/LICENSE.md) for more information.
|
|
61
66
|
|
|
62
|
-
Made with
|
|
67
|
+
Made with 💙
|