@@ -29,6 +29,7 @@ Values from higher-priority sources take precedence over lower-priority values.
29
29
- OpenAI: ` "https://api.openai.com/v1" `
30
30
- Anthropic: ` "https://api.anthropic.com/v1" `
31
31
- Ollama: ` "http://localhost:11434" `
32
+ - LM Studio: ` "http://localhost:1234" `
32
33
- Certificate configuration:
33
34
- Certs directory: ` "./certs" `
34
35
- CA certificate: ` "ca.crt" `
@@ -59,6 +60,7 @@ provider_urls:
59
60
openai : " https://api.openai.com/v1"
60
61
anthropic : " https://api.anthropic.com/v1"
61
62
ollama : " http://localhost:11434"
63
+ lm_studio : " http://localhost:1234"
62
64
certs_dir : " ./certs"
63
65
ca_cert : " ca.crt"
64
66
ca_key : " ca.key"
@@ -80,6 +82,7 @@ Environment variables are automatically loaded with these mappings:
80
82
- `CODEGATE_PROVIDER_OPENAI_URL` : OpenAI provider URL
81
83
- `CODEGATE_PROVIDER_ANTHROPIC_URL` : Anthropic provider URL
82
84
- `CODEGATE_PROVIDER_OLLAMA_URL` : Ollama provider URL
85
+ - `CODEGATE_PROVIDER_LM_STUDIO_URL` : LM Studio provider URL
83
86
- `CODEGATE_CERTS_DIR` : directory for certificate files
84
87
- `CODEGATE_CA_CERT` : CA certificate file name
85
88
- `CODEGATE_CA_KEY` : CA key file name
@@ -139,6 +142,7 @@ Provider URLs can be configured in several ways:
139
142
export CODEGATE_PROVIDER_OPENAI_URL=https://api.openai.com/v1
140
143
export CODEGATE_PROVIDER_ANTHROPIC_URL=https://api.anthropic.com/v1
141
144
export CODEGATE_PROVIDER_OLLAMA_URL=http://localhost:11434
145
+ export CODEGATE_PROVIDER_LM_STUDIO_URL=http://localhost:1234
142
146
` ` `
143
147
144
148
3. CLI flags :
0 commit comments