Salesforce

Select an engine

« Go Back
Information
Select an engine
000004365
Public
Product Selection
aiWare - aiWare
Article Details

If you don't know what cognition engine you want to use for your job, you can get a list of all available engines and review them to understand which engine suits the job. To view engines according to what media type you have (video, image, data, audio), see Media configuration.

Steps

  1. Query for categories using the following sample code:
    query enumerateCognitionEngineCategories {
      engineCategories(type:"Cognition") {
        records {
          categoryType
          totalEngines
          id
          description
          type {
            name
          }
        }
      }
    }
  2. Once you know the category you want, query for engines in that category ("Translate" in this example). Set a reasonable limit on the number of records returned (100 in this example). The following sample query returns engines that can translate, and lists the custom fields and options supported by each engine:
    {
      engines(limit: 100,category:"Translate") {
        count
        records {
          id
          category {
            id
            name
          }
          fields {
            name
            type
            max
            min
            step
            info
            label
            defaultValue
            options {
              key
              value
            }
          }
        }
      }
    }
Additional Technical Documentation Information
Properties
12/8/2023 9:10 PM
12/8/2023 9:13 PM
12/4/2023 6:34 PM
Documentation
Documentation
000004365
Translation Information
English

Powered by