mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-12-04 12:17:52 +08:00
11 lines
154 B
Python
11 lines
154 B
Python
from enum import Enum
|
|
|
|
|
|
class EmbeddingInputType(Enum):
|
|
"""
|
|
Enum for embedding input type.
|
|
"""
|
|
|
|
DOCUMENT = "document"
|
|
QUERY = "query"
|