Remove --dmr flag and consolidate preset flags into --url-alias#36
Draft
Copilot wants to merge 2 commits intoadd-options-to-docker-modelfrom
Draft
Remove --dmr flag and consolidate preset flags into --url-alias#36Copilot wants to merge 2 commits intoadd-options-to-docker-modelfrom
Copilot wants to merge 2 commits intoadd-options-to-docker-modelfrom
Conversation
Co-authored-by: ericcurtin <1694275+ericcurtin@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Remove docker model runner option and consolidate server options
Remove --dmr flag and consolidate preset flags into --url-alias
Oct 16, 2025
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
This PR consolidates the server preset flags into a single, cleaner
--url-aliasparameter and removes the deprecated--dmrflag as requested in the issue.Changes
Removed
--dmrflagThe
--dmrflag has been completely removed from all commands (list,run) and the backend configuration. This flag was redundant and has been deprecated in favor of the consolidated approach.Consolidated preset flags into
--url-aliasPreviously, users had to use separate boolean flags for different OpenAI-compatible server presets:
--llamacpp- Use llama.cpp server--ollama- Use ollama server--openrouter- Use openrouter serverThese have been consolidated into a single
--url-aliasstring parameter that accepts the values:llamacpp,ollama, oropenrouter.Before:
After:
Benefits
Implementation Details
resolveServerURL()function signature to accepturlAliasstring parameter instead of individual boolean flagsError Handling
The implementation provides clear error messages:
Testing
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.