Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
open-webui/open-webui
YYapi
/
ai
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6dd477f
ai
/
backend
/
apps
/
rag
/
search
/
main.py
github-actions[bot]
GitHub deploy: 54420f530001a038286f162143e7239a92a97ddb
6dd477f
11 months ago
raw
Copy download link
history
blame
Safe
159 Bytes
from
typing
import
Optional
from
pydantic
import
BaseModel
class
SearchResult
(
BaseModel
):
link:
str
title:
Optional
[
str
]
snippet:
Optional
[
str
]