Created
October 30, 2025 01:46
-
-
Save ratazzi/5b7e1a49dee7315421151080ad1c41e2 to your computer and use it in GitHub Desktop.
Claude Code with Multiple Providers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~/.mise.toml | |
| # mise run cc | |
| # mise run cc-glm | |
| [tasks.cc] | |
| description = "Claude Code" | |
| run = "SHELL=/bin/bash claude" | |
| [tasks.cc-glm] | |
| description = "Claude Code with GLM" | |
| env.ANTHROPIC_DEFAULT_HAIKU_MODEL = 'glm-4.5-air' | |
| env.ANTHROPIC_DEFAULT_SONNET_MODEL = 'glm-4.6' | |
| env.ANTHROPIC_DEFAULT_OPUS_MODEL = 'glm-4.6' | |
| env.ANTHROPIC_AUTH_TOKEN = 'TOKEN_HERE' | |
| env.ANTHROPIC_BASE_URL = 'https://api.z.ai/api/anthropic' | |
| run = "SHELL=/bin/bash claude" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment