UNPKG
@agentkai/core
Version:
latest (3.10.0)
3.10.0
3.9.0
3.7.0
3.6.0
3.5.0
3.4.0
3.3.0
3.2.0
3.1.0
3.0.0
2.0.8
2.0.7
2.0.6
2.0.4
2.0.3
2.0.2
2.0.1
1.6.0
1.5.1
1.5.0
AgentKai核心包,提供AI助手系统的基础功能
github.com/Peiiii/AgentKai
Peiiii/AgentKai
@agentkai/core
/
dist
/
platform
/
interfaces.js
10 lines
(9 loc)
•
240 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * 平台类型枚举 */
export
var
PlatformType
; (
function
(
PlatformType
) {
PlatformType
[
"NODE"
] =
"node"
;
PlatformType
[
"BROWSER"
] =
"browser"
;
PlatformType
[
"UNKNOWN"
] =
"unknown"
; })(
PlatformType
|| (
PlatformType
= {}));