While working on LangGraph agents I noticed a new and useful feature in LangGraph Studio where configurable options can be given as a discrete list of possibilities.
# Define the config
class GraphConfig(TypedDict):
model_name: Literal["anthropic", "openai"]
This code now tells LangGraph Studio to display these as a nice list in the UI.
I'm requesting that we also have the Pipelines Valve UI display a list of options as defined in the pipeline code itself. After looking through the examples I haven't noticed if this has been implemented yet and it would be very helpful.
While working on LangGraph agents I noticed a new and useful feature in LangGraph Studio where configurable options can be given as a discrete list of possibilities.
Link to code example
This code now tells LangGraph Studio to display these as a nice list in the UI.
I'm requesting that we also have the Pipelines Valve UI display a list of options as defined in the pipeline code itself. After looking through the examples I haven't noticed if this has been implemented yet and it would be very helpful.