📛 feat: Add Client Name Header to Tavily Search Requests (#14082)

- Client name header set to 'librechat' helps Tavily understand the volume of calls from LibreChat
This commit is contained in:
Mani 2026-07-14 11:31:24 -04:00 committed by GitHub
parent 5771bf6e06
commit 8018d9448e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -117,6 +117,7 @@ class TavilySearchResults extends Tool {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-Client-Name': 'librechat',
},
body: JSON.stringify(requestBody),
};