I'm using neovim with llm.nvim and I'm getting this error when calling `LLMSuggestion` command: ```[LLM] missing field `request_params` ``` llm.nvim config: ``` require('llm').setup({ backend = "ollama", model = "llama3:text", url = "http://localhost:11434/api/generate", request_body = { parameters = { temperature = 0.2, top_p = 0.95, } }, }) ```
I'm using neovim with llm.nvim and I'm getting this error when calling
LLMSuggestioncommand:[LLM] missing field `request_params`llm.nvim config: