For the complete documentation index, see llms.txt. This page is also available as Markdown.

brixxGPT

Calls the OpenAI integration in brixxbox

OpenAI API Key must be stored in the workspace settings!

OpenAI API Key must

Parameter

gptOptions - Json object with parameters.

  • system - to set the stage. A promt to tell the model, how to behave

  • user - User input, examples and a query. This is the user promt

Example Usages

let response = app.brixxGPT({
    system: "Reply in a HTML snipped Text, that will be inserted in an existing div",
    user: "How to create a for loop in JS?"
});

// "output" is a brixxbox htmlTemplate control     
$(app.getHtmlElement("output")).html(response);

         

Last updated