Class: MultipleChoiceQnAGeneratorService

MultipleChoiceQnAGeneratorService()

Accepts a context and generates Multiple-Choice Question and Answer sets

Constructor

new MultipleChoiceQnAGeneratorService()

Source:

Methods

call(user, context, num_questions, num_choices, engineopt) → {Promise.<Object>}

Parameters:
Name Type Attributes Default Description
user string The ID of the user accessing the Soffos API. This string will be used for throttling and profanity tracking. Soffos assumes that the owner of the api is an application (app) and that app has users. Soffos API will accept any string."
context string the prompt to be sent to the LLM
num_questions number the location of the image to be processed
num_choices number the location of the image to be processed
engine string <optional>
null The LLM engine to be used.
Source:
Returns:
qna_sets - The question and answer sets
Type
Promise.<Object>
Example
Examples are available at "https://github.com/Soffos-Inc/soffosai-js/tree/master/samples"

setInputConfigs(name, context, num_questions, num_choices, engineopt)

Parameters:
Name Type Attributes Default Description
name string Reference name of this Service. It will be used by the Pipeline to reference this Service.
context string | InputConfig the prompt to be sent to the LLM
num_questions number | InputConfig the location of the image to be processed
num_choices number | InputConfig the location of the image to be processed
engine string | InputConfig <optional>
null The LLM engine to be used.
Source: