feat: implement Exa search engine integration

This commit is contained in:
M.Abdulrahman Alnaseer
2025-02-04 21:13:05 +03:00
parent 70116e7251
commit 2bb6b49f11
5 changed files with 108 additions and 1 deletions

View File

@@ -1741,6 +1741,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",