mirror of
https://github.com/langgenius/dify.git
synced 2026-04-04 05:59:59 +08:00
13 lines
235 B
Python
13 lines
235 B
Python
from pydantic import BaseModel
|
|
|
|
from core.file.constants import FILE_MODEL_IDENTITY
|
|
|
|
|
|
class PluginFileEntity(BaseModel):
|
|
"""
|
|
File entity for plugin tool.
|
|
"""
|
|
|
|
dify_model_identity: str = FILE_MODEL_IDENTITY
|
|
url: str
|