@agentica/core 0.26.2 → 0.27.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.
@@ -16,4 +16,4 @@ import type { IAgenticaHistoryJson } from "./IAgenticaHistoryJson";
16
16
  *
17
17
  * @author Samchon
18
18
  */
19
- export type IMicroAgenticaHistoryJson = IAgenticaHistoryJson.IUserMessage | IAgenticaHistoryJson.IAssistantMessage | IAgenticaHistoryJson.IExecute | IAgenticaHistoryJson.IDescribe;
19
+ export type IMicroAgenticaHistoryJson = IAgenticaHistoryJson.IExecute | IAgenticaHistoryJson.IDescribe | IAgenticaHistoryJson.IAssistantMessage | IAgenticaHistoryJson.ISystemMessage | IAgenticaHistoryJson.IUserMessage;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentica/core",
3
- "version": "0.26.2",
3
+ "version": "0.27.0",
4
4
  "description": "Agentic AI Library specialized in LLM Function Calling",
5
5
  "author": "Wrtn Technologies",
6
6
  "license": "MIT",
@@ -18,7 +18,8 @@ import type { IAgenticaHistoryJson } from "./IAgenticaHistoryJson";
18
18
  * @author Samchon
19
19
  */
20
20
  export type IMicroAgenticaHistoryJson =
21
- | IAgenticaHistoryJson.IUserMessage
22
- | IAgenticaHistoryJson.IAssistantMessage
23
21
  | IAgenticaHistoryJson.IExecute
24
- | IAgenticaHistoryJson.IDescribe;
22
+ | IAgenticaHistoryJson.IDescribe
23
+ | IAgenticaHistoryJson.IAssistantMessage
24
+ | IAgenticaHistoryJson.ISystemMessage
25
+ | IAgenticaHistoryJson.IUserMessage;