mirror of
https://github.com/langgenius/dify.git
synced 2026-02-21 18:34:42 +08: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>
68 lines
2.6 KiB
Python
68 lines
2.6 KiB
Python
import logging
|
|
|
|
import requests
|
|
|
|
from configs import dify_config
|
|
from services.rag_pipeline.pipeline_template.database.database_retrieval import DatabasePipelineTemplateRetrieval
|
|
from services.rag_pipeline.pipeline_template.pipeline_template_base import PipelineTemplateRetrievalBase
|
|
from services.rag_pipeline.pipeline_template.pipeline_template_type import PipelineTemplateType
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class RemotePipelineTemplateRetrieval(PipelineTemplateRetrievalBase):
|
|
"""
|
|
Retrieval recommended app from dify official
|
|
"""
|
|
|
|
def get_pipeline_template_detail(self, template_id: str):
|
|
try:
|
|
result = self.fetch_pipeline_template_detail_from_dify_official(template_id)
|
|
except Exception as e:
|
|
logger.warning("fetch recommended app detail from dify official failed: %r, switch to database.", e)
|
|
result = DatabasePipelineTemplateRetrieval.fetch_pipeline_template_detail_from_db(template_id)
|
|
return result
|
|
|
|
def get_pipeline_templates(self, language: str) -> dict:
|
|
try:
|
|
result = self.fetch_pipeline_templates_from_dify_official(language)
|
|
except Exception as e:
|
|
logger.warning("fetch pipeline templates from dify official failed: %r, switch to database.", e)
|
|
result = DatabasePipelineTemplateRetrieval.fetch_pipeline_templates_from_db(language)
|
|
return result
|
|
|
|
def get_type(self) -> str:
|
|
return PipelineTemplateType.REMOTE
|
|
|
|
@classmethod
|
|
def fetch_pipeline_template_detail_from_dify_official(cls, template_id: str) -> dict | None:
|
|
"""
|
|
Fetch pipeline template detail from dify official.
|
|
:param template_id: Pipeline ID
|
|
:return:
|
|
"""
|
|
domain = dify_config.HOSTED_FETCH_PIPELINE_TEMPLATES_REMOTE_DOMAIN
|
|
url = f"{domain}/pipeline-templates/{template_id}"
|
|
response = requests.get(url, timeout=(3, 10))
|
|
if response.status_code != 200:
|
|
return None
|
|
data: dict = response.json()
|
|
return data
|
|
|
|
@classmethod
|
|
def fetch_pipeline_templates_from_dify_official(cls, language: str) -> dict:
|
|
"""
|
|
Fetch pipeline templates from dify official.
|
|
:param language: language
|
|
:return:
|
|
"""
|
|
domain = dify_config.HOSTED_FETCH_PIPELINE_TEMPLATES_REMOTE_DOMAIN
|
|
url = f"{domain}/pipeline-templates?language={language}"
|
|
response = requests.get(url, timeout=(3, 10))
|
|
if response.status_code != 200:
|
|
raise ValueError(f"fetch pipeline templates failed, status code: {response.status_code}")
|
|
|
|
result: dict = response.json()
|
|
|
|
return result
|