@@ -105,19 +105,21 @@ make security # Run security analysis
105105make docker-build # Build Docker image
106106make docker-run # Run Docker container
107107```
108- ## Filtering Allowed Models
109108
110- You can control which models are available by specifying ` allowed_models ` in your config file ( ` config.json ` ).
109+ ## Filtering Allowed Models
111110
112- Example:
113- ``` json
114- {
115- "allowed_models" : [" gpt-4o" , " claude-3.7-sonnet" ]
116- }
111+ You can control which models are available by specifying ` allowed_models ` in your config file (` config.json ` ).
112+
113+ Example:
114+ ``` json
115+ {
116+ "allowed_models" : [" gpt-4o" , " claude-3.7-sonnet" ]
117+ }
118+ ```
117119
118- - If set, both CLI and REST /v1/models lists are filtered and show a note.
119- - Proxy requests to /v1/chat/completions will only allow those models, rejecting others with HTTP 400.
120- - If omitted or set to null, all models are permitted (default behavior).
120+ - If set, both CLI and REST /v1/models lists are filtered and show a note.
121+ - Proxy requests to /v1/chat/completions will only allow those models, rejecting others with HTTP 400.
122+ - If omitted or set to null, all models are permitted (default behavior).
121123
122124## Building for Different OS/Architectures
123125
@@ -165,7 +167,7 @@ make run
165167docker run --rm \
166168 -p 8081:8081 \
167169 -v ~/.local/share/github-copilot-svcs:/home/appuser/.local/share/github-copilot-svcs \
168- ghcr.io/privapps/github-copilot-svcs:0.0.2
170+ ghcr.io/privapps/github-copilot-svcs:latest
169171```
170172
171173## CLI Commands
@@ -391,7 +393,7 @@ The proxy automatically maps common model names to GitHub Copilot models:
391393
392394| Input Model | GitHub Copilot Model | Provider |
393395| -------------| ---------------------| ----------|
394- | ` gpt-4o ` , ` gpt-4.1 ` | As specified | OpenAI |
396+ | ` gpt-4o ` , ` gpt-4.1 ` , ` gpt-5 ` | As specified | OpenAI |
395397| ` o3 ` , ` o3-mini ` , ` o4-mini ` | As specified | OpenAI |
396398| ` claude-3.5-sonnet ` , ` claude-3.7-sonnet ` , ` claude-3.7-sonnet-thought ` | As specified | Anthropic |
397399| ` claude-opus-4 ` , ` claude-sonnet-4 ` | As specified | Anthropic |
@@ -401,6 +403,7 @@ The proxy automatically maps common model names to GitHub Copilot models:
401403- ** OpenAI GPT Models** : GPT-4o, GPT-4.1, O3/O4 reasoning models
402404- ** Anthropic Claude Models** : Claude 3.5/3.7 Sonnet variants, Claude Opus/Sonnet 4
403405- ** Google Gemini Models** : Gemini 2.0/2.5 Pro and Flash models
406+ - There are ** additional models** available for use. For more information and details about these models, please refer to your GitHub Copilot subscription page.
404407
405408## Security
406409
0 commit comments