Conversation
This commit updates the Minuet plugin configuration to use an LM Studio
backend, instead of the previous Ollama setup.
- Modified `lua/custom/plugins/minuet-ai.lua`:
- Switched the active provider to 'openai_compatible'.
- Ensured the endpoint and model name point to your
LM Studio instance (`http://m4max.local:1234/v1/chat/completions`
with model `qwen2.5-coder-3b-instruct`).
- Commented out the previous 'openai_fim_compatible' (Ollama) provider.
- Verified `init.lua`:
- Confirmed that `blink.cmp` is already correctly configured to use
Minuet as a completion source via `minuet.blink`. No changes
were needed in this file.
I have instructed you on how to test this new configuration by
ensuring LM Studio is running with the specified model and server settings,
restarting Neovim, and attempting to trigger AI completions via `blink.cmp`.
Temporarily switches Minuet plugin to use the official OpenAI API
for debugging purposes.
- Modifies `lua/custom/plugins/minuet-ai.lua`:
- Sets provider to 'openai'.
- Configures `api_key` to be read from the `OPENAI_API_KEY`
environment variable.
- Sets OpenAI endpoint to `https://api.openai.com/v1/chat/completions`
and model to `gpt-3.5-turbo`.
- Enables debug notifications (`notify = 'debug'`).
- Comments out the previous LM Studio (`openai_compatible`) configuration.
This change is intended to isolate and test Minuet's core functionality
before further debugging of LM Studio integration.
Comments out the explicit DAP configuration within `rustaceanvim`'s setup. This is to rely on `mason-nvim-dap` to provide the global configuration for `codelldb`, which `rustaceanvim` should then use. This may resolve an error related to `dap.adapter.executable.command`.
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.
NOTE
Please verify that the
base repositoryabove has the intended destination!Github by default opens Pull Requests against the parent of a forked repository.
If this is your personal fork and you didn't intend to open a PR for contribution
to the original project then adjust the
base repositoryaccordingly.