diff --git a/config/config.example-model-anthropic.toml b/config/config.example-model-anthropic.toml new file mode 100644 index 0000000..21136f6 --- /dev/null +++ b/config/config.example-model-anthropic.toml @@ -0,0 +1,44 @@ +# Global LLM configuration +[llm] +model = "claude-3-7-sonnet-latest" # The LLM model to use +base_url = "https://api.anthropic.com/v1/" # API endpoint URL +api_key = "YOUR_API_KEY" # Your API key +max_tokens = 8192 # Maximum number of tokens in the response +temperature = 0.0 # Controls randomness + + +# Optional configuration for specific LLM models +[llm.vision] +model = "claude-3-7-sonnet-20250219" # The vision model to use +base_url = "https://api.anthropic.com/v1/" # API endpoint URL for vision model +api_key = "YOUR_API_KEY" # Your API key for vision model +max_tokens = 8192 # Maximum number of tokens in the response +temperature = 0.0 # Controls randomness for vision model + + +# Optional configuration for specific browser configuration +# [browser] +# Whether to run browser in headless mode (default: false) +#headless = false +# Disable browser security features (default: true) +#disable_security = true +# Extra arguments to pass to the browser +#extra_chromium_args = [] +# Path to a Chrome instance to use to connect to your normal browser +# e.g. '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome' +#chrome_instance_path = "" +# Connect to a browser instance via WebSocket +#wss_url = "" +# Connect to a browser instance via CDP +#cdp_url = "" + +# Optional configuration, Proxy settings for the browser +# [browser.proxy] +# server = "http://proxy-server:port" +# username = "proxy-username" +# password = "proxy-password" + +# Optional configuration, Search settings. +# [search] +# Search engine for agent to use. Default is "Google", can be set to "Baidu" or "DuckDuckGo". +#engine = "Google" diff --git a/config/config.example-model-google.toml b/config/config.example-model-google.toml new file mode 100644 index 0000000..2ed4f38 --- /dev/null +++ b/config/config.example-model-google.toml @@ -0,0 +1,44 @@ + # Global LLM configuration +[llm] +model = "gemini-2.0-flash" # The LLM model to use +base_url = "https://generativelanguage.googleapis.com/v1beta/openai/" # API endpoint URL +api_key = "YOUR_API_KEY" # Your API key +temperature = 0.0 # Controls randomness +max_tokens = 8096 # Maximum number of tokens in the response + + +# Optional configuration for specific LLM models for Google +[llm.vision] +model = "gemini-2.0-flash-exp" # The vision model to use +base_url = "https://generativelanguage.googleapis.com/v1beta/openai/" # API endpoint URL for vision model +api_key = "YOUR_API_KEY" # Your API key for vision model +max_tokens = 8192 # Maximum number of tokens in the response +temperature = 0.0 # Controls randomness for vision model + + +# Optional configuration for specific browser configuration +# [browser] +# Whether to run browser in headless mode (default: false) +#headless = false +# Disable browser security features (default: true) +#disable_security = true +# Extra arguments to pass to the browser +#extra_chromium_args = [] +# Path to a Chrome instance to use to connect to your normal browser +# e.g. '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome' +#chrome_instance_path = "" +# Connect to a browser instance via WebSocket +#wss_url = "" +# Connect to a browser instance via CDP +#cdp_url = "" + +# Optional configuration, Proxy settings for the browser +# [browser.proxy] +# server = "http://proxy-server:port" +# username = "proxy-username" +# password = "proxy-password" + +# Optional configuration, Search settings. +# [search] +# Search engine for agent to use. Default is "Google", can be set to "Baidu" or "DuckDuckGo". +#engine = "Google" diff --git a/config/config.example-model-ollama.toml b/config/config.example-model-ollama.toml new file mode 100644 index 0000000..5fac431 --- /dev/null +++ b/config/config.example-model-ollama.toml @@ -0,0 +1,44 @@ +# Global LLM configuration +[llm] #OLLAMA: +api_type = 'ollama' +model = "llama3.2" # The LLM model to use +base_url = "http://localhost:11434/v1" # API endpoint URL +api_key = "ollama" # Your API key +max_tokens = 4096 # Maximum number of tokens in the response +temperature = 0.0 # Controls randomness + + +# [llm.vision] #OLLAMA VISION: +# api_type = 'ollama' +# model = "llama3.2-vision" # The vision model to use +# base_url = "http://localhost:11434/v1" # API endpoint URL for vision model +# api_key = "ollama" # Your API key for vision model +# max_tokens = 4096 # Maximum number of tokens in the response +# temperature = 0.0 # Controls randomness for vision model + +# Optional configuration for specific browser configuration +# [browser] +# Whether to run browser in headless mode (default: false) +#headless = false +# Disable browser security features (default: true) +#disable_security = true +# Extra arguments to pass to the browser +#extra_chromium_args = [] +# Path to a Chrome instance to use to connect to your normal browser +# e.g. '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome' +#chrome_instance_path = "" +# Connect to a browser instance via WebSocket +#wss_url = "" +# Connect to a browser instance via CDP +#cdp_url = "" + +# Optional configuration, Proxy settings for the browser +# [browser.proxy] +# server = "http://proxy-server:port" +# username = "proxy-username" +# password = "proxy-password" + +# Optional configuration, Search settings. +# [search] +# Search engine for agent to use. Default is "Google", can be set to "Baidu" or "DuckDuckGo". +#engine = "Google" diff --git a/config/config.example-model-openai.toml b/config/config.example-model-openai.toml new file mode 100644 index 0000000..7924d20 --- /dev/null +++ b/config/config.example-model-openai.toml @@ -0,0 +1,46 @@ +# Global LLM configuration +[llm] #AZURE OPENAI: +api_type= 'azure' +model = "gpt-4o-mini" # The LLM model to use +base_url = "{YOUR_AZURE_ENDPOINT.rstrip('/')}/openai/deployments/{AZURE_DEPLOYMENT_ID}" # API endpoint URL +api_key = "YOUR_API_KEY" # Your API key +max_tokens = 8096 # Maximum number of tokens in the response +temperature = 0.0 # Controls randomness +api_version="AZURE API VERSION" #"2024-08-01-preview" # Azure Openai version if AzureOpenai + + +# Optional configuration for specific LLM models +[llm.vision] +model = "gpt-4o" # The vision model to use +base_url = "{YOUR_AZURE_ENDPOINT.rstrip('/')}/openai/deployments/{AZURE_DEPLOYMENT_ID}" +api_key = "YOUR_API_KEY" # Your API key for vision model +max_tokens = 8192 # Maximum number of tokens in the response +temperature = 0.0 # Controls randomness for vision model + + +# Optional configuration for specific browser configuration +# [browser] +# Whether to run browser in headless mode (default: false) +#headless = false +# Disable browser security features (default: true) +#disable_security = true +# Extra arguments to pass to the browser +#extra_chromium_args = [] +# Path to a Chrome instance to use to connect to your normal browser +# e.g. '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome' +#chrome_instance_path = "" +# Connect to a browser instance via WebSocket +#wss_url = "" +# Connect to a browser instance via CDP +#cdp_url = "" + +# Optional configuration, Proxy settings for the browser +# [browser.proxy] +# server = "http://proxy-server:port" +# username = "proxy-username" +# password = "proxy-password" + +# Optional configuration, Search settings. +# [search] +# Search engine for agent to use. Default is "Google", can be set to "Baidu" or "DuckDuckGo". +#engine = "Google" diff --git a/config/config.example.toml b/config/config.example.toml index cc46b08..f60c99d 100644 --- a/config/config.example.toml +++ b/config/config.example.toml @@ -17,7 +17,7 @@ temperature = 0.0 # Controls randomness # [llm] #AZURE OPENAI: # api_type= 'azure' # model = "YOUR_MODEL_NAME" #"gpt-4o-mini" -# base_url = "{YOUR_AZURE_ENDPOINT.rstrip('/')}/openai/deployments/{AZURE_DEPOLYMENT_ID}" +# base_url = "{YOUR_AZURE_ENDPOINT.rstrip('/')}/openai/deployments/{AZURE_DEPLOYMENT_ID}" # api_key = "AZURE API KEY" # max_tokens = 8096 # temperature = 0.0