feat: add user_label to FieldIdentifier (#8126)

Co-authored-by: Mary Hipp Rogers <maryhipp@gmail.com>
This commit is contained in:
psychedelicious
2025-06-25 23:44:57 +10:00
committed by GitHub
parent 2ad5b5cc2e
commit 5128f072a8
4 changed files with 25 additions and 9 deletions

View File

@@ -205,6 +205,7 @@ class FieldIdentifier(BaseModel):
kind: Literal["input", "output"] = Field(description="The kind of field")
node_id: str = Field(description="The ID of the node")
field_name: str = Field(description="The name of the field")
user_label: str | None = Field(description="The user label of the field, if any")
class SessionQueueItemWithoutGraph(BaseModel):