tavily.toml 629 B

123456789101112131415161718192021222324252627282930
  1. [completion]
  2. provider = "r2r"
  3. concurrent_request_limit = 128
  4. [ingestion]
  5. provider = "unstructured_local"
  6. strategy = "auto"
  7. chunking_strategy = "by_title"
  8. new_after_n_chars = 2_048
  9. max_characters = 4_096
  10. combine_under_n_chars = 1_024
  11. overlap = 1_024
  12. [ingestion.extra_parsers]
  13. pdf = "zerox"
  14. [orchestration]
  15. provider = "hatchet"
  16. kg_creation_concurrency_limit = 32
  17. ingestion_concurrency_limit = 16
  18. kg_concurrency_limit = 8
  19. [agent]
  20. # Enable the Tavily search and extraction tools
  21. rag_tools = [
  22. "search_file_descriptions",
  23. "search_file_knowledge",
  24. "get_file_content",
  25. "tavily_search",
  26. "tavily_extract"
  27. ]