@agentica/benchmark 0.10.1 → 0.10.4

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.
@@ -65,6 +65,12 @@ export declare namespace IAgenticaSelectBenchmarkEvent {
65
65
  */
66
66
  assistantPrompts: IAgenticaPrompt.IText<"assistant">[];
67
67
  }
68
+ /**
69
+ * Error event type.
70
+ *
71
+ * The `error` event type repsents that an error had been occurred
72
+ * during the benchmark testing.
73
+ */
68
74
  export interface IError<Model extends ILlmSchema.Model> extends IEventBase<"error", Model> {
69
75
  /**
70
76
  * Error occurred during the benchmark.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentica/benchmark",
3
- "version": "0.10.1",
3
+ "version": "0.10.4",
4
4
  "main": "lib/index.js",
5
5
  "description": "Agentic AI Library specialized in LLM Function Calling",
6
6
  "scripts": {
@@ -37,7 +37,7 @@
37
37
  "src"
38
38
  ],
39
39
  "dependencies": {
40
- "@agentica/core": "^0.10.1",
40
+ "@agentica/core": "^0.10.4",
41
41
  "@samchon/openapi": "^3.0.0",
42
42
  "openai": "^4.80.0",
43
43
  "tstl": "^3.0.0",
@@ -82,6 +82,12 @@ export namespace IAgenticaSelectBenchmarkEvent {
82
82
  assistantPrompts: IAgenticaPrompt.IText<"assistant">[];
83
83
  }
84
84
 
85
+ /**
86
+ * Error event type.
87
+ *
88
+ * The `error` event type repsents that an error had been occurred
89
+ * during the benchmark testing.
90
+ */
85
91
  export interface IError<Model extends ILlmSchema.Model>
86
92
  extends IEventBase<"error", Model> {
87
93
  /**