File size: 858 Bytes
8174855
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# API Configuration for Enhanced Supernova
# Copy this file to api_keys.yaml and fill in your actual API keys

# Math Engine (SymPy-based)
# No API key needed - built-in mathematical computation engine
# Supports symbolic math, calculus, algebra, equation solving, and more
# math_engine: built-in  # No configuration needed

# Serper API Key  
# Get one from: https://serper.dev/
# Free tier: 2500 queries/month
# Paid tiers available for higher usage
serper_api_key: "YOUR_SERPER_API_KEY_HERE"

# Tool Configuration
tool_settings:
  # Maximum retries for API calls
  max_retries: 3
  
  # Timeout for API calls (seconds)
  api_timeout: 10
  
  # Whether to use tools in fallback mode if model generation fails
  use_tools_as_fallback: true
  
  # Whether to cache tool results (for development/testing)
  cache_tool_results: false