mirror of
https://github.com/langgenius/dify.git
synced 2025-11-16 03:13:19 +00:00
Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: jyong <718720800@qq.com> Co-authored-by: Wu Tianwei <30284043+WTW0313@users.noreply.github.com> Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com> Co-authored-by: lyzno1 <yuanyouhuilyz@gmail.com> Co-authored-by: quicksand <quicksandzn@gmail.com> Co-authored-by: Jyong <76649700+JohnJyong@users.noreply.github.com> Co-authored-by: lyzno1 <92089059+lyzno1@users.noreply.github.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: Yongtao Huang <yongtaoh2022@gmail.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: nite-knite <nkCoding@gmail.com> Co-authored-by: Hanqing Zhao <sherry9277@gmail.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Harry <xh001x@hotmail.com>
167 lines
5.0 KiB
Python
167 lines
5.0 KiB
Python
from collections.abc import Sequence
|
|
from typing import Annotated, Any, TypeAlias
|
|
from uuid import uuid4
|
|
|
|
from pydantic import BaseModel, Discriminator, Field, Tag
|
|
|
|
from core.helper import encrypter
|
|
|
|
from .segments import (
|
|
ArrayAnySegment,
|
|
ArrayBooleanSegment,
|
|
ArrayFileSegment,
|
|
ArrayNumberSegment,
|
|
ArrayObjectSegment,
|
|
ArraySegment,
|
|
ArrayStringSegment,
|
|
BooleanSegment,
|
|
FileSegment,
|
|
FloatSegment,
|
|
IntegerSegment,
|
|
NoneSegment,
|
|
ObjectSegment,
|
|
Segment,
|
|
StringSegment,
|
|
get_segment_discriminator,
|
|
)
|
|
from .types import SegmentType
|
|
|
|
|
|
class Variable(Segment):
|
|
"""
|
|
A variable is a segment that has a name.
|
|
|
|
It is mainly used to store segments and their selector in VariablePool.
|
|
|
|
Note: this class is abstract, you should use subclasses of this class instead.
|
|
"""
|
|
|
|
id: str = Field(
|
|
default_factory=lambda: str(uuid4()),
|
|
description="Unique identity for variable.",
|
|
)
|
|
name: str
|
|
description: str = Field(default="", description="Description of the variable.")
|
|
selector: Sequence[str] = Field(default_factory=list)
|
|
|
|
|
|
class StringVariable(StringSegment, Variable):
|
|
pass
|
|
|
|
|
|
class FloatVariable(FloatSegment, Variable):
|
|
pass
|
|
|
|
|
|
class IntegerVariable(IntegerSegment, Variable):
|
|
pass
|
|
|
|
|
|
class ObjectVariable(ObjectSegment, Variable):
|
|
pass
|
|
|
|
|
|
class ArrayVariable(ArraySegment, Variable):
|
|
pass
|
|
|
|
|
|
class ArrayAnyVariable(ArrayAnySegment, ArrayVariable):
|
|
pass
|
|
|
|
|
|
class ArrayStringVariable(ArrayStringSegment, ArrayVariable):
|
|
pass
|
|
|
|
|
|
class ArrayNumberVariable(ArrayNumberSegment, ArrayVariable):
|
|
pass
|
|
|
|
|
|
class ArrayObjectVariable(ArrayObjectSegment, ArrayVariable):
|
|
pass
|
|
|
|
|
|
class SecretVariable(StringVariable):
|
|
value_type: SegmentType = SegmentType.SECRET
|
|
|
|
@property
|
|
def log(self) -> str:
|
|
return encrypter.obfuscated_token(self.value)
|
|
|
|
|
|
class NoneVariable(NoneSegment, Variable):
|
|
value_type: SegmentType = SegmentType.NONE
|
|
value: None = None
|
|
|
|
|
|
class FileVariable(FileSegment, Variable):
|
|
pass
|
|
|
|
|
|
class BooleanVariable(BooleanSegment, Variable):
|
|
pass
|
|
|
|
|
|
class ArrayFileVariable(ArrayFileSegment, ArrayVariable):
|
|
pass
|
|
|
|
|
|
class ArrayBooleanVariable(ArrayBooleanSegment, ArrayVariable):
|
|
pass
|
|
|
|
|
|
class RAGPipelineVariable(BaseModel):
|
|
belong_to_node_id: str = Field(description="belong to which node id, shared means public")
|
|
type: str = Field(description="variable type, text-input, paragraph, select, number, file, file-list")
|
|
label: str = Field(description="label")
|
|
description: str | None = Field(description="description", default="")
|
|
variable: str = Field(description="variable key", default="")
|
|
max_length: int | None = Field(
|
|
description="max length, applicable to text-input, paragraph, and file-list", default=0
|
|
)
|
|
default_value: Any = Field(description="default value", default="")
|
|
placeholder: str | None = Field(description="placeholder", default="")
|
|
unit: str | None = Field(description="unit, applicable to Number", default="")
|
|
tooltips: str | None = Field(description="helpful text", default="")
|
|
allowed_file_types: list[str] | None = Field(
|
|
description="image, document, audio, video, custom.", default_factory=list
|
|
)
|
|
allowed_file_extensions: list[str] | None = Field(description="e.g. ['.jpg', '.mp3']", default_factory=list)
|
|
allowed_file_upload_methods: list[str] | None = Field(
|
|
description="remote_url, local_file, tool_file.", default_factory=list
|
|
)
|
|
required: bool = Field(description="optional, default false", default=False)
|
|
options: list[str] | None = Field(default_factory=list)
|
|
|
|
|
|
class RAGPipelineVariableInput(BaseModel):
|
|
variable: RAGPipelineVariable
|
|
value: Any
|
|
|
|
|
|
# The `VariableUnion`` type is used to enable serialization and deserialization with Pydantic.
|
|
# Use `Variable` for type hinting when serialization is not required.
|
|
#
|
|
# Note:
|
|
# - All variants in `VariableUnion` must inherit from the `Variable` class.
|
|
# - The union must include all non-abstract subclasses of `Segment`, except:
|
|
VariableUnion: TypeAlias = Annotated[
|
|
(
|
|
Annotated[NoneVariable, Tag(SegmentType.NONE)]
|
|
| Annotated[StringVariable, Tag(SegmentType.STRING)]
|
|
| Annotated[FloatVariable, Tag(SegmentType.FLOAT)]
|
|
| Annotated[IntegerVariable, Tag(SegmentType.INTEGER)]
|
|
| Annotated[ObjectVariable, Tag(SegmentType.OBJECT)]
|
|
| Annotated[FileVariable, Tag(SegmentType.FILE)]
|
|
| Annotated[BooleanVariable, Tag(SegmentType.BOOLEAN)]
|
|
| Annotated[ArrayAnyVariable, Tag(SegmentType.ARRAY_ANY)]
|
|
| Annotated[ArrayStringVariable, Tag(SegmentType.ARRAY_STRING)]
|
|
| Annotated[ArrayNumberVariable, Tag(SegmentType.ARRAY_NUMBER)]
|
|
| Annotated[ArrayObjectVariable, Tag(SegmentType.ARRAY_OBJECT)]
|
|
| Annotated[ArrayFileVariable, Tag(SegmentType.ARRAY_FILE)]
|
|
| Annotated[ArrayBooleanVariable, Tag(SegmentType.ARRAY_BOOLEAN)]
|
|
| Annotated[SecretVariable, Tag(SegmentType.SECRET)]
|
|
),
|
|
Discriminator(get_segment_discriminator),
|
|
]
|