Tavily Endpoint
Tavily endpoints connect Eve to Tavily search and research APIs for governed web-search workflows.
Endpoint Kind
Use tavily as the endpoint kind when creating this endpoint through the API or dashboard.
What Eve Uses This Endpoint For
- Give agents controlled access to real-time web search.
- Centralize Tavily API key handling.
- Audit search and research calls made by users and agents.
- Combine web research with internal data and LLM endpoints.
Basic Endpoint Shape
json
{
"endpoint": "tavily-prod",
"kind": "tavily",
"config": {
"read_conn": {
"api_key": "secret"
}
}
}Create it with the endpoint API:
bash
curl -sS -X POST "$EDEN/endpoints" \
-H "$AUTH_HEADER" \
-H "Content-Type: application/json" \
-d '{
"endpoint": "tavily-prod",
"kind": "tavily",
"config": {
"read_conn": {
"api_key": "secret"
}
}
}'Configuration Fields
| Field | Purpose |
|---|---|
api_key | Tavily API key |
Operating Notes
- Define policy for when agents may use external web search.
- Treat search results as untrusted external input.
- Set budget and rate controls around high-volume research workflows.
Related
Last updated: October 20, 2018