Duplicated from open-webui/open-webui
6dd477f
1
2
3
4
5
6
7
8
9
10
from typing import Optional from pydantic import BaseModel class SearchResult(BaseModel): link: str title: Optional[str] snippet: Optional[str]