Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Now we need to make sure that you can create the module that will react to the event in a space.
For this, we need a bit of API magic for the moment.

Here is the simplest way. Copy your bearer Token from the browser illustrated in the picture below:

...

Run the GraphQL via Postman

Now you will need to execute a graphql request like this one for example in Postman:

...

Here is the mutation as text:

Code Block
mutation CreateModuleTemplate {
    createModuleTemplate(
        input: {
            configuration: { languageModel: "AZURE_GPT_35_TURBO_16K" }
            isExternal: true
            name: "DemoApp"
            templateName: "Demo App Template Name"
            toolDefinition: {
                type: "function"
                function: {
                    name: "DemoApp"
                    parameters: {
                        type: "object"
                        properties: {
                            instruction: {
                                type: "string"
                                description: "The instruction given by the employee e.g., 'Demo my App please' or 'Tell me about the demo'."
                            }
                        }
                    }
                    description: "This function is specifically designed for demos"
                }
            }
            weight: 5500
        }
    ) {
        templateName
        companyId
    }
}

...