File size: 1,254 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# API Configuration for Advanced Supernova
# This file contains your actual API keys for enhanced functionality

# 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: "06f4918f3ea721d9742f940fb7c7ba1ac44e7c14"

# 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

# Advanced Reasoning Configuration
reasoning_settings:
  # Enable multi-step reasoning for complex queries
  enable_multi_step: true
  
  # Maximum reasoning steps for complex queries
  max_reasoning_steps: 5
  
  # Confidence threshold for reasoning step results
  confidence_threshold: 0.5
  
  # Enable domain expertise analysis
  enable_domain_analysis: true