assistant-robot 0.0.2-alpha → 0.0.2-beta
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/dist/Assistant.d.ts +2 -2
- package/dist/AssistantModel.d.ts +2 -6
- package/dist/index.js +1 -1
- package/dist/index.mjs +916 -911
- package/dist/type.d.ts +6 -0
- package/package.json +1 -1
package/dist/type.d.ts
CHANGED
@@ -61,4 +61,10 @@ export interface IAssistantRobotConfig<T extends LanguageModel> {
|
|
61
61
|
}
|
62
62
|
export type TCallback = () => void;
|
63
63
|
export type TEventListenFunc = (...args: any[]) => void;
|
64
|
+
export interface IActionConfig {
|
65
|
+
loop?: boolean;
|
66
|
+
weight?: number;
|
67
|
+
timeScale?: number;
|
68
|
+
repetitions?: number;
|
69
|
+
}
|
64
70
|
export {};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "assistant-robot",
|
3
|
-
"version": "0.0.2-
|
3
|
+
"version": "0.0.2-beta",
|
4
4
|
"description": "An assistant widget, have a 3D robot which can interact with user, have a simple LLM which can chat with user.",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"module": "dist/index.mjs",
|