You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gcgj-dify-1.7.0/api/core/tools/entities/file_entities.py

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