mirror of
https://github.com/langgenius/dify.git
synced 2026-03-10 18:06:14 +08:00
8 lines
235 B
Python
8 lines
235 B
Python
from typing import Protocol
|
|
|
|
|
|
class SummaryIndexServiceProtocol(Protocol):
|
|
def generate_and_vectorize_summary(
|
|
self, dataset_id: str, document_id: str, is_preview: bool, summary_index_setting: dict | None = None
|
|
): ...
|