Merge pull request #9337 from abdalrohman/exa_integration

feat: implement Exa search engine integration
This commit is contained in:
Timothy Jaeryang Baek
2025-02-04 14:00:06 -08:00
committed by GitHub
5 changed files with 108 additions and 1 deletions

View File

@@ -1750,6 +1750,11 @@ BING_SEARCH_V7_SUBSCRIPTION_KEY = PersistentConfig(
os.environ.get("BING_SEARCH_V7_SUBSCRIPTION_KEY", ""),
)
EXA_API_KEY = PersistentConfig(
"EXA_API_KEY",
"rag.web.search.exa_api_key",
os.getenv("EXA_API_KEY", ""),
)
RAG_WEB_SEARCH_RESULT_COUNT = PersistentConfig(
"RAG_WEB_SEARCH_RESULT_COUNT",