mirror of
https://github.com/langgenius/dify.git
synced 2026-06-11 02:31:13 +08:00
12 lines
306 B
Python
12 lines
306 B
Python
from typing import Any, Protocol
|
|
|
|
|
|
class RecommendAppRetrievalBase(Protocol):
|
|
"""Interface for recommend app retrieval."""
|
|
|
|
def get_recommended_apps_and_categories(self, language: str) -> Any: ...
|
|
|
|
def get_recommend_app_detail(self, app_id: str) -> Any: ...
|
|
|
|
def get_type(self) -> str: ...
|