12 lines
199 B
Python
12 lines
199 B
Python
from enum import Enum
|
|
|
|
|
|
class WebSearchProvider(Enum):
|
|
AUTO = "auto"
|
|
NATIVE = "native"
|
|
SEARXNG = "searxng"
|
|
TAVILY = "tavily"
|
|
EXA = "exa"
|
|
BRAVE = "brave"
|
|
SERPER = "serper"
|