Spaces:
Running
Running
File size: 159 Bytes
2d1b990 |
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]
|