@@ -29,6 +29,7 @@ Values from higher-priority sources take precedence over lower-priority values.
2929 - OpenAI: ` "https://api.openai.com/v1" `
3030 - Anthropic: ` "https://api.anthropic.com/v1" `
3131 - Ollama: ` "http://localhost:11434" `
32+ - LM Studio: ` "http://localhost:1234" `
3233- Certificate configuration:
3334 - Certs directory: ` "./certs" `
3435 - CA certificate: ` "ca.crt" `
@@ -59,6 +60,7 @@ provider_urls:
5960 openai : " https://api.openai.com/v1"
6061 anthropic : " https://api.anthropic.com/v1"
6162 ollama : " http://localhost:11434"
63+ lm_studio : " http://localhost:1234"
6264certs_dir : " ./certs"
6365ca_cert : " ca.crt"
6466ca_key : " ca.key"
@@ -80,6 +82,7 @@ Environment variables are automatically loaded with these mappings:
8082- `CODEGATE_PROVIDER_OPENAI_URL` : OpenAI provider URL
8183- `CODEGATE_PROVIDER_ANTHROPIC_URL` : Anthropic provider URL
8284- `CODEGATE_PROVIDER_OLLAMA_URL` : Ollama provider URL
85+ - `CODEGATE_PROVIDER_LM_STUDIO_URL` : LM Studio provider URL
8386- `CODEGATE_CERTS_DIR` : directory for certificate files
8487- `CODEGATE_CA_CERT` : CA certificate file name
8588- `CODEGATE_CA_KEY` : CA key file name
@@ -139,6 +142,7 @@ Provider URLs can be configured in several ways:
139142 export CODEGATE_PROVIDER_OPENAI_URL=https://api.openai.com/v1
140143 export CODEGATE_PROVIDER_ANTHROPIC_URL=https://api.anthropic.com/v1
141144 export CODEGATE_PROVIDER_OLLAMA_URL=http://localhost:11434
145+ export CODEGATE_PROVIDER_LM_STUDIO_URL=http://localhost:1234
142146 ` ` `
143147
1441483. CLI flags :
0 commit comments