Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Schema
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| run_task | Run a task with natural language. - Based on the prompt and inputs dictionary, determine the task to run
- Format the inputs dictionary so that it matches the task function signature
- Invoke the task
Args:
project: Project to run the task in.
domain: Domain to run the task in.
name: Name of the task to run.
inputs: A dictionary of inputs to the task.
Returns:
A dictionary of outputs from the task. |
| run_workflow | Run a workflow with natural language. - Based on the prompt and inputs dictionary, determine the workflow to run
- Format the inputs dictionary so that it matches the workflow function signature
- Invoke the workflow
Args:
project: Project to run the workflow in.
domain: Domain to run the workflow in.
name: Name of the task to run.
inputs: A dictionary of inputs to the workflow.
Returns:
A dictionary of outputs from the workflow. |
| get_task | Get a union task. |
| get_execution | Get personalized union execution. |
| list_tasks | List all tasks in a project and domain. |
| list_workflows | List all workflows in a project and domain. |