Variable AgentCapabilitiesConst

AgentCapabilities: {
    CUSTOMER_SUPPORT: "customer_support";
    DATA_ANALYSIS: "data_analysis";
    KNOWLEDGE_RETRIEVAL: "knowledge_retrieval";
    SENTIMENT_ANALYSIS: "sentiment_analysis";
    SQL_GENERATION: "sql_generation";
    VISUALIZATION: "visualization";
    CONTENT_CREATION: "content_creation";
    CODE_GENERATION: "code_generation";
    DECISION_SUPPORT: "decision_support";
} = ...

Common built-in agent capabilities. These are provided as constants for convenience, but agents can use any string as a capability.

Type declaration

  • ReadonlyCUSTOMER_SUPPORT: "customer_support"
  • ReadonlyDATA_ANALYSIS: "data_analysis"
  • ReadonlyKNOWLEDGE_RETRIEVAL: "knowledge_retrieval"
  • ReadonlySENTIMENT_ANALYSIS: "sentiment_analysis"
  • ReadonlySQL_GENERATION: "sql_generation"
  • ReadonlyVISUALIZATION: "visualization"
  • ReadonlyCONTENT_CREATION: "content_creation"
  • ReadonlyCODE_GENERATION: "code_generation"
  • ReadonlyDECISION_SUPPORT: "decision_support"