Merge pull request #10864 from kurtdami/perplexity_integration

feat: add perplexity integration to web search
This commit is contained in:
Timothy Jaeryang Baek
2025-02-27 13:51:03 -08:00
committed by GitHub
5 changed files with 122 additions and 2 deletions

View File

@@ -1977,6 +1977,12 @@ EXA_API_KEY = PersistentConfig(
os.getenv("EXA_API_KEY", ""),
)
PERPLEXITY_API_KEY = PersistentConfig(
"PERPLEXITY_API_KEY",
"rag.web.search.perplexity_api_key",
os.getenv("PERPLEXITY_API_KEY", ""),
)
RAG_WEB_SEARCH_RESULT_COUNT = PersistentConfig(
"RAG_WEB_SEARCH_RESULT_COUNT",
"rag.web.search.result_count",