Skip to main content
The config command lets you view and modify Anyware configuration.

Usage

anyware config [options]

Options

OptionDescription
--api-url <url>Set API URL
--llm-url <url>Set LLM proxy URL

Examples

View current configuration

$ anyware config
Current configuration:
  API URL: https://anyware.run
  LLM URL: https://llm.anyware.run

Set API URL

anyware config --api-url https://custom-api.example.com

Set LLM URL

anyware config --llm-url https://custom-llm.example.com

Set multiple options

anyware config --api-url https://api.example.com --llm-url https://llm.example.com

Configuration Storage

Configuration is stored at ~/.anyware/config.json. This file also contains your authentication credentials.

Use Cases

  • Development: Point to a local or staging server
  • Self-hosted: Connect to your own Anyware deployment
  • Enterprise: Use internal endpoints

See Also