@botonic/core 0.50.0-alpha.1 → 0.50.1

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.
@@ -113,6 +113,7 @@ export type AiAgentBaseArgs = {
113
113
  inputGuardrailRules?: GuardrailRule[];
114
114
  previousHubtypeMessages?: HubtypeAssistantMessage[];
115
115
  outputMessagesSchemas?: z.ZodObject<any>[];
116
+ forceToolNameOverride?: string;
116
117
  };
117
118
  export interface AiAgentSpecialistArgs extends AiAgentBaseArgs {
118
119
  type: AiAgentType.Specialist;
@@ -113,6 +113,7 @@ export type AiAgentBaseArgs = {
113
113
  inputGuardrailRules?: GuardrailRule[];
114
114
  previousHubtypeMessages?: HubtypeAssistantMessage[];
115
115
  outputMessagesSchemas?: z.ZodObject<any>[];
116
+ forceToolNameOverride?: string;
116
117
  };
117
118
  export interface AiAgentSpecialistArgs extends AiAgentBaseArgs {
118
119
  type: AiAgentType.Specialist;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botonic/core",
3
- "version": "0.50.0-alpha.1",
3
+ "version": "0.50.1",
4
4
  "license": "MIT",
5
5
  "description": "Build Chatbots using React",
6
6
  "main": "./lib/cjs/index.js",
@@ -142,6 +142,7 @@ export type AiAgentBaseArgs = {
142
142
  inputGuardrailRules?: GuardrailRule[]
143
143
  previousHubtypeMessages?: HubtypeAssistantMessage[]
144
144
  outputMessagesSchemas?: z.ZodObject<any>[]
145
+ forceToolNameOverride?: string
145
146
  }
146
147
 
147
148
  export interface AiAgentSpecialistArgs extends AiAgentBaseArgs {