@microfox/ai-router 1.1.1 → 2.0.0
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/CHANGELOG.md +4 -61
- package/README.md +705 -129
- package/dist/chunk-BJTO5JO5.mjs +11 -0
- package/dist/chunk-BJTO5JO5.mjs.map +1 -0
- package/dist/fs_store.d.mts +5 -0
- package/dist/fs_store.d.ts +5 -0
- package/dist/fs_store.js +122 -0
- package/dist/fs_store.js.map +1 -0
- package/dist/fs_store.mjs +101 -0
- package/dist/fs_store.mjs.map +1 -0
- package/dist/index.d.mts +196 -48
- package/dist/index.d.ts +196 -48
- package/dist/index.js +516 -110
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +517 -110
- package/dist/index.mjs.map +1 -1
- package/dist/store-BBHh-uTh.d.mts +27 -0
- package/dist/store-BBHh-uTh.d.ts +27 -0
- package/package.json +14 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,64 +1,7 @@
|
|
|
1
|
-
#
|
|
1
|
+
# @microfox/ai-router
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 2.0.0
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Major Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
## 1.1.0
|
|
10
|
-
|
|
11
|
-
### Minor Changes
|
|
12
|
-
|
|
13
|
-
- 7e0ae1f: upgraded ai to 15
|
|
14
|
-
|
|
15
|
-
## 1.0.4
|
|
16
|
-
|
|
17
|
-
### Patch Changes
|
|
18
|
-
|
|
19
|
-
- fd91148: patch fixes
|
|
20
|
-
|
|
21
|
-
## 1.0.3
|
|
22
|
-
|
|
23
|
-
### Patch Changes
|
|
24
|
-
|
|
25
|
-
- 897d926: Changes from PR #582: subhakar
|
|
26
|
-
|
|
27
|
-
## 1.0.2
|
|
28
|
-
|
|
29
|
-
### Patch Changes
|
|
30
|
-
|
|
31
|
-
- 064dab6: release: update package descriptions and README for @microfox/ai-router and @microfox/tool-kit to better reflect functionality; enhance tool-kit documentation with detailed features and Human-in-the-Loop (HITL) guidelines
|
|
32
|
-
|
|
33
|
-
## 1.0.1
|
|
34
|
-
|
|
35
|
-
### Patch Changes
|
|
36
|
-
|
|
37
|
-
- de2e3cc: Changes from PR #559: suno
|
|
38
|
-
|
|
39
|
-
All notable changes to this project will be documented in this file.
|
|
40
|
-
|
|
41
|
-
## [1.0.0] - 2025-07-02
|
|
42
|
-
|
|
43
|
-
### Added
|
|
44
|
-
|
|
45
|
-
- Initial release
|
|
46
|
-
- Basic SDK structure
|
|
47
|
-
- TypeScript support
|
|
48
|
-
|
|
49
|
-
<!-- Add your changes here using this format:
|
|
50
|
-
|
|
51
|
-
## [1.1.0] - YYYY-MM-DD
|
|
52
|
-
|
|
53
|
-
### Added
|
|
54
|
-
- New feature
|
|
55
|
-
|
|
56
|
-
### Changed
|
|
57
|
-
- Updated feature
|
|
58
|
-
|
|
59
|
-
### Fixed
|
|
60
|
-
- Bug fix
|
|
61
|
-
|
|
62
|
-
### Removed
|
|
63
|
-
- Deprecated feature
|
|
64
|
-
-->
|
|
7
|
+
- 3dc4cc4: V2 of AiRouter with AgentAsTool, toAwaitResponse, Better State Race condition handling, type inference
|