---
title: "Select"
description: "Local-first visual environment for building and running AI workflows. Build agents visually, deploy anywhere, privacy by design."
canonical: https://docs.nodetool.ai/nodes/nodetool/constant/select
markdown: https://docs.nodetool.ai/nodes/nodetool/constant/select.md
product: NodeTool
source: https://github.com/nodetool-ai/nodetool/blob/main/docs/nodes/nodetool/constant/select.md
---

# Select

**Type:** `nodetool.constant.Select`

**Namespace:** `nodetool.constant`

## Description

Represents a selection from a predefined set of options in the workflow.
    select, enum, dropdown, choice, options

    Use cases:
    - Choose from a fixed set of values
    - Configure options for downstream nodes
    - Provide enum-compatible inputs for nodes that expect specific values

    The output is a string that can be connected to enum-typed inputs.

## Properties

| Property | Type | Description | Default |
|----------|------|-------------|---------|
| value | `str` | The currently selected value. | `` |
| options | `list[str]` | The list of available options to choose from. | `[]` |
| enum_type_name | `str` | The enum type name this select corresponds to (for type matching). | `` |

## Outputs

| Output | Type | Description |
|--------|------|-------------|
| output | `str` |  |

## Related Nodes

Browse other nodes in the [nodetool.constant](./) namespace.
