Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 1.27 KB

File metadata and controls

24 lines (14 loc) · 1.27 KB

GitHub Action for the Rightbrain Tasks API

Rightbrain Tasks allow developers to create custom API endpoints that process multimodal inputs (text and/or images) using predefined prompts. These endpoints generate structured, configurable outputs, tailored to the developer’s specific requirements.

You can read more about Rightbrain Tasks over on the Rightbrain AI docs.

This GitHub Action allows you to run your Rightbrain Tasks within GitHub Actions Workflows.

Understanding the Action

This GitHub Action supports four inputs:

task-access-token (required): A unique access token for authentication.
task-input (optional): A JSON encoded object that defines the input for the task.
task-input-json-file (optional): The path to a local file containing the defined input for the Task as a JSON encoded object
task-api-host (optional): The hostname for the Rightbrain AI Tasks API, with a default value of app.rightbrain.ai.

When calling the action you must supply either task-input or task-input-json-file.

Note: At the moment this Action does NOT support file inputs to the API.

Examples

We have some examples documented over in the examples directory.