Presumably because the second config arg to resolve_prompt isn't passed at
|
local config, prompt = copilot.resolve_prompt(message.content) |
And also because since 081d4c2, the default "COPILOT_INSTRUCTIONS" system_prompt
|
system_prompt = 'COPILOT_INSTRUCTIONS', -- System prompt to use (can be specified manually in prompt via /). |
isn't expanded (resolved).
So this is basically 2 issues in one:
- not being able to see the actual system prompt used at some point of the conversation history
- 081d4c2 regressing the default system prompt
Presumably because the second
configarg toresolve_promptisn't passed atCopilotChat.nvim/lua/CopilotChat/config/mappings.lua
Line 439 in d12f6df
And also because since 081d4c2, the default "COPILOT_INSTRUCTIONS" system_prompt
CopilotChat.nvim/lua/CopilotChat/config.lua
Line 56 in d12f6df
So this is basically 2 issues in one: