@onioneko/kiki-types 0.1.2 → 0.1.3
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 +7 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
# @onioneko/kiki-types
|
|
2
2
|
|
|
3
|
+
> [Kiki](https://github.com/onioneko/kiki) · Middleware framework for LLM agents
|
|
4
|
+
|
|
3
5
|
Shared conversation types for the Kiki middleware ecosystem.
|
|
4
6
|
|
|
7
|
+
```bash
|
|
8
|
+
npm install @onioneko/kiki-types
|
|
9
|
+
```
|
|
10
|
+
|
|
5
11
|
Core's `Context` is an open map. This package defines the conversation structure that LLM middleware operates on.
|
|
6
12
|
|
|
7
13
|
## Exports
|
|
@@ -37,3 +43,4 @@ const imageMsg: Message = {
|
|
|
37
43
|
- Zero runtime dependencies (beyond `@onioneko/kiki-core` for the `Context` type)
|
|
38
44
|
- System prompt is `ctx.system`, not in the messages array
|
|
39
45
|
- `content: string` is the common case; `ContentBlock[]` enables multi-modal
|
|
46
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onioneko/kiki-types",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Shared conversation types for the Kiki middleware ecosystem",
|
|
6
6
|
"homepage": "https://github.com/onioneko/kiki/tree/main/packages/types",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"dist"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@onioneko/kiki-core": "0.1.
|
|
29
|
+
"@onioneko/kiki-core": "0.1.3"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"typescript": "^5.7.0",
|