mirror of
https://github.com/langgenius/dify.git
synced 2026-03-25 08:18:02 +08:00
Made-with: Cursor # Conflicts: # api/core/agent/cot_chat_agent_runner.py # api/core/agent/fc_agent_runner.py # api/core/memory/token_buffer_memory.py # api/core/variables/segments.py # api/core/workflow/file/file_manager.py # api/core/workflow/nodes/agent/agent_node.py # api/core/workflow/nodes/llm/llm_utils.py # api/core/workflow/nodes/parameter_extractor/parameter_extractor_node.py # api/core/workflow/workflow_entry.py # api/factories/variable_factory.py # api/pyproject.toml # api/services/variable_truncator.py # api/uv.lock # web/app/components/app/app-publisher/index.tsx # web/app/components/app/overview/settings/index.tsx # web/app/components/apps/app-card.tsx # web/app/components/apps/index.tsx # web/app/components/apps/list.tsx # web/app/components/base/chat/chat-with-history/header-in-mobile.tsx # web/app/components/base/features/new-feature-panel/conversation-opener/modal.tsx # web/app/components/base/features/new-feature-panel/file-upload/setting-content.tsx # web/app/components/base/features/new-feature-panel/moderation/moderation-setting-modal.tsx # web/app/components/base/features/new-feature-panel/text-to-speech/param-config-content.tsx # web/app/components/base/message-log-modal/index.tsx # web/app/components/base/switch/index.tsx # web/app/components/base/tab-slider-plain/index.tsx # web/app/components/explore/try-app/app-info/index.tsx # web/app/components/plugins/plugin-detail-panel/tool-selector/components/reasoning-config-form.tsx # web/app/components/workflow/nodes/llm/components/json-schema-config-modal/visual-editor/edit-card/required-switch.tsx # web/app/components/workflow/nodes/llm/panel.tsx # web/contract/router.ts # web/eslint-suppressions.json # web/i18n/fa-IR/workflow.json
143 lines
4.4 KiB
Python
143 lines
4.4 KiB
Python
from __future__ import annotations
|
|
|
|
from datetime import datetime
|
|
from typing import TypeAlias
|
|
from uuid import uuid4
|
|
|
|
from pydantic import BaseModel, ConfigDict, Field, field_validator
|
|
|
|
from core.entities.execution_extra_content import ExecutionExtraContentDomainModel
|
|
from core.workflow.file import File
|
|
from fields.conversation_fields import AgentThought, JSONValue, MessageFile
|
|
|
|
JSONValueType: TypeAlias = JSONValue
|
|
|
|
|
|
class ResponseModel(BaseModel):
|
|
model_config = ConfigDict(from_attributes=True, extra="ignore")
|
|
|
|
|
|
class SimpleFeedback(ResponseModel):
|
|
rating: str | None = None
|
|
|
|
|
|
class RetrieverResource(ResponseModel):
|
|
id: str = Field(default_factory=lambda: str(uuid4()))
|
|
message_id: str = Field(default_factory=lambda: str(uuid4()))
|
|
position: int
|
|
dataset_id: str | None = None
|
|
dataset_name: str | None = None
|
|
document_id: str | None = None
|
|
document_name: str | None = None
|
|
data_source_type: str | None = None
|
|
segment_id: str | None = None
|
|
score: float | None = None
|
|
hit_count: int | None = None
|
|
word_count: int | None = None
|
|
segment_position: int | None = None
|
|
index_node_hash: str | None = None
|
|
content: str | None = None
|
|
summary: str | None = None
|
|
created_at: int | None = None
|
|
|
|
@field_validator("created_at", mode="before")
|
|
@classmethod
|
|
def _normalize_created_at(cls, value: datetime | int | None) -> int | None:
|
|
if isinstance(value, datetime):
|
|
return to_timestamp(value)
|
|
return value
|
|
|
|
|
|
class MessageListItem(ResponseModel):
|
|
id: str
|
|
conversation_id: str
|
|
parent_message_id: str | None = None
|
|
inputs: dict[str, JSONValueType]
|
|
query: str
|
|
answer: str = Field(validation_alias="re_sign_file_url_answer")
|
|
feedback: SimpleFeedback | None = Field(default=None, validation_alias="user_feedback")
|
|
retriever_resources: list[RetrieverResource]
|
|
created_at: int | None = None
|
|
agent_thoughts: list[AgentThought]
|
|
message_files: list[MessageFile]
|
|
status: str
|
|
error: str | None = None
|
|
generation_detail: JSONValueType | None = Field(default=None, validation_alias="generation_detail_dict")
|
|
extra_contents: list[ExecutionExtraContentDomainModel] = Field(default_factory=list)
|
|
|
|
@field_validator("inputs", mode="before")
|
|
@classmethod
|
|
def _normalize_inputs(cls, value: JSONValueType) -> JSONValueType:
|
|
return format_files_contained(value)
|
|
|
|
@field_validator("created_at", mode="before")
|
|
@classmethod
|
|
def _normalize_created_at(cls, value: datetime | int | None) -> int | None:
|
|
if isinstance(value, datetime):
|
|
return to_timestamp(value)
|
|
return value
|
|
|
|
|
|
class WebMessageListItem(MessageListItem):
|
|
metadata: JSONValueType | None = Field(default=None, validation_alias="message_metadata_dict")
|
|
|
|
|
|
class MessageInfiniteScrollPagination(ResponseModel):
|
|
limit: int
|
|
has_more: bool
|
|
data: list[MessageListItem]
|
|
|
|
|
|
class WebMessageInfiniteScrollPagination(ResponseModel):
|
|
limit: int
|
|
has_more: bool
|
|
data: list[WebMessageListItem]
|
|
|
|
|
|
class SavedMessageItem(ResponseModel):
|
|
id: str
|
|
inputs: dict[str, JSONValueType]
|
|
query: str
|
|
answer: str
|
|
message_files: list[MessageFile]
|
|
feedback: SimpleFeedback | None = Field(default=None, validation_alias="user_feedback")
|
|
created_at: int | None = None
|
|
|
|
@field_validator("inputs", mode="before")
|
|
@classmethod
|
|
def _normalize_inputs(cls, value: JSONValueType) -> JSONValueType:
|
|
return format_files_contained(value)
|
|
|
|
@field_validator("created_at", mode="before")
|
|
@classmethod
|
|
def _normalize_created_at(cls, value: datetime | int | None) -> int | None:
|
|
if isinstance(value, datetime):
|
|
return to_timestamp(value)
|
|
return value
|
|
|
|
|
|
class SavedMessageInfiniteScrollPagination(ResponseModel):
|
|
limit: int
|
|
has_more: bool
|
|
data: list[SavedMessageItem]
|
|
|
|
|
|
class SuggestedQuestionsResponse(ResponseModel):
|
|
data: list[str]
|
|
|
|
|
|
def to_timestamp(value: datetime | None) -> int | None:
|
|
if value is None:
|
|
return None
|
|
return int(value.timestamp())
|
|
|
|
|
|
def format_files_contained(value: JSONValueType) -> JSONValueType:
|
|
if isinstance(value, File):
|
|
return value.model_dump()
|
|
if isinstance(value, dict):
|
|
return {k: format_files_contained(v) for k, v in value.items()}
|
|
if isinstance(value, list):
|
|
return [format_files_contained(v) for v in value]
|
|
return value
|