open-webui/backend/apps/rag/search/main.py

10 lines
159 B
Python
Raw Normal View History

from typing import Optional
from pydantic import BaseModel
class SearchResult(BaseModel):
link: str
title: Optional[str]
snippet: Optional[str]