function M.get_url()

in lua/llm/utils.lua [53:59]


function M.get_url()
  local model = os.getenv("LLM_NVIM_URL")
  if model == nil then
    model = config.get().url
  end
  return model
end