Ui componentsTools

Common Tool Schema Definitions

Custom tool definitions can be passed into the AI API or cxkit UI components.

The below are examples for a few common scenarios. You can adjust the exact descriptions, possible values, and exact schemas to adhere to your own business logic.

These examples use zod TypeScript library, but these can be defined using other serialization libraries or a plain JSON Object Schema.

To covert these Zod definitions to a JSON schema, use:

import { zodToJsonSchema } from 'zod-to-json-schema';
const jsonSchema = zodToJsonSchema(yourZodSchema);

If using Webflow or other app platforms, ask Claude or ChatGPT to give you the JSON Object Schema equivalent of the below.

Answer Confidence Tool

Use this schema as the parameters for a provideAnswerConfidence tool to determine how confident the AI assistant was and whether or not to escelate to humans.

/* example classifiers for answer confidence */
const answerConfidence = z.union([
  z.literal("very_confident").describe(`
    The AI Assistant provided a complete and direct answer to all parts of the User Question.
    The answer fully resolved the issue without requiring any further action from the User.
    Every part of the answer was cited from the information sources.
    The assistant did not ask for more information or provide options requiring User action.
    This is the highest Answer Confidence level and should be used sparingly.
  `),
  z.literal("somewhat_confident").describe(`
    The AI Assistant provided a complete and direct answer to the User Question, but the answer contained minor caveats or uncertainties. 
 
    Examples:
    • The AI Assistant asked follow-up questions to the User
    • The AI Assistant requested additional information from the User
    • The AI Assistant suggested uncertainty in the answer
    • The AI Assistant answered the question but mentioned potential exceptions
  `),
  z.literal("not_confident").describe(`
    The AI Assistant tried to answer the User Question but did not fully resolve it.
    The assistant provided options requiring further action from the User, asked for more information, showed uncertainty,
    suggested the user contact support or provided contact information, or provided an indirect or incomplete answer.
    This is the most common Answer Confidence level.
 
    Examples:
    • The AI Assistant provided a general answer not directly related to the User Question
    • The AI Assistant said to reach out to support or provided an email address or contact information
    • The AI Assistant provided options that require further action from the User to resolve the issue
  `),
  z.literal("no_sources").describe(`
    The AI Assistant did not use or cite any sources from the information sources to answer the User Question.
  `),
  z.literal("other").describe(`
    The User Question is unclear or unrelated to the subject matter.
  `)
]).describe("A measure of how confidently the AI Assistant completely and directly answered the User Question.");
 
const provideAnswerConfidenceSchema = z.object({
  explanation: z.string().describe("A brief few word justification of why a specific confidence level was chosen."),
  answerConfidence,
});

Sales Signals Tool

Use this schema as the parameters for a detectSalesSignal tool to identify sales signals. Leverage this to link them to a sign up flow, talk to sales, or perform an upgrade.

const salesSignalType = z.union([
  z.literal("requested_sales_contact").describe(`
    The user has explicitly asked to speak with a sales representative or sales team.
    
    Examples:
    • "Can I talk to someone from sales?"
    • "How do I contact your sales team?"
    • "I'd like to schedule a call with a sales rep"
    • "Is there someone I can talk to about purchasing?"
  `),
  z.literal("pricing_inquiry").describe(`
    The user has asked about pricing, costs, billing, or payment options.
    
    Examples:
    • "How much does this service cost?"
    • "What's the pricing for the enterprise plan?"
    • "Do you offer annual billing discounts?"
    • "What would it cost for our team of 50 people?"
  `),
  z.literal("enterprise_features").describe(`
    The user has inquired about enterprise-specific features, capabilities, or requirements.
    
    Examples:
    • "Do you support SSO integration?"
    • "What security certifications do you have?"
    • "Is there an on-premise deployment option?"
    • "Do you have custom SLAs for enterprise customers?"
  `),
  z.literal("upgrade_inquiry").describe(`
    The user has asked about upgrading their current plan or moving to a higher tier.
    
    Examples:
    • "How do I upgrade to the Pro plan?"
    • "What's involved in moving from Basic to Enterprise?"
    • "I'm hitting limits on my current plan and need to upgrade"
    • "What additional features do I get if I upgrade?"
  `),
  z.literal("implementation_services").describe(`
    The user has asked about professional services, implementation support, or consulting.
    
    Examples:
    • "Do you offer implementation services?"
    • "Can you help us migrate our data?"
    • "Do you have consultants who can help us set this up?"
    • "What kind of onboarding support do you provide?"
  `),
  z.literal("comparison_competitive").describe(`
    The user is comparing the product with competitors or alternatives.
    
    Examples:
    • "How do you compare to [Competitor]?"
    • "What makes your solution better than [Alternative]?"
    • "Why should we choose you instead of [Competitor]?"
    • "What's your advantage over other solutions?"
  `),
  z.literal("trial_demo_request").describe(`
    The user has requested a product demo or trial.
    
    Examples:
    • "Can I get a demo of your product?"
    • "How do I sign up for a trial?"
    • "I'd like to see the product in action"
    • "Do you offer proof of concept engagements?"
  `),
]).describe("Specific type of sales signal detected in the user's question");
 
const detectedSalesSignal = z.object({
  explanation: z.string().describe("A brief few word justification of why a specific sales signal was chosen."),
  type: salesSignalType
});

Annotation Tool

Use this schema as the parameters for an annotateQuestion tool to classify user questions and analyze AI responses. These annotations can help improve your AI system by identifying content gaps, sentiment patterns, and question types.

/* Basic sentiment classification */
const sentimentEnum = z.enum([
  "positive", 
  "negative", 
  "neutral"
]).describe("The user's expressed sentiment in their question or message. Keep to neutral unless clearly negative or positive. A user factually stating their bug or issue is not negative.");
 
/* Enhanced question type classification */
const questionTypeEnum = z.enum([
  "how_to",
  "troubleshooting",
  "feature_request",
  "comparison",
  "pricing",
  "billing",
  "support_request",
  "account_issue",
  "other"
]).describe("The general category or intent of the user's question. Consider whether the question relates to your product or third-party integrations.");
 
/* Content gap classification using yes/no/not applicable */
const yesNoNaEnum = z.enum([
  "yes", 
  "no", 
  "n/a"
]).describe("Use n/a if it doesn't seem like the classifier is applicable or relevant to the question-answer pair.");
 
/* Main annotation schema combining all classifiers */
const annotationSchema = z.object({
  /* Sentiment analysis */
  sentiment: sentimentEnum,
  
  /* Question classification */
  questionType: questionTypeEnum,
  
  /* Content gap analysis */
  isDocumented: yesNoNaEnum.describe("Whether an answer to the user's question is fully and explicitly documented in available sources. Use 'yes' only if complete information was found in documentation."),
  isFeatureSupported: yesNoNaEnum.describe("Whether a feature or capability the user is asking about is directly supported. Use 'no' if it's only partially supported or requires workarounds."),
});
 
/* Example usage in a tool definition */
const annotateQuestionSchema = z.object({
  annotation: annotationSchema
});

On this page