slidersConfiguration

Core settings for the gateway, LLM provider, trading mode, and connectors.

DragonClaw merges config from files and environment variables.

Start with the provider, gateway token, language behavior, and Binance mode.

Core areas

  • LLM: provider, base URL, model, API key

  • Gateway: host, port, bearer token, rate limits

  • Agent: persona, language mode, trade confirmation

  • Binance: testnet or mainnet, API credentials

  • Connectors: platform-specific credentials and routing

Example configuration

llm:
  provider: deepseek
  model: deepseek-chat

gateway:
  host: 127.0.0.1
  port: 18789
  token: change-me
  rateLimit:
    perUser: 20
    global: 100

agent:
  confirmBeforeTrade: true
  language: auto

binance:
  testnet: true
  • Keep confirmBeforeTrade: true

  • Keep binance.testnet: true until you are ready

  • Set a gateway token before exposing the service

  • Run behind Nginx in production

circle-exclamation

Last updated