diff --git a/README.md b/README.md index f02f0e6..ba676e3 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,16 @@ # πŸ‘οΈllero πŸ¦™ -Ollero (ollero.nvim) is a Neovim Plugin that unleashes Ollama powers to your +> **🚧 Warning**: This project is highly under construction, but feel free to +> test it + +Ollero (`ollero.nvim`) is a Neovim Plugin that unleashes Ollama powers to your text editor. The backlog of this project includes features like: - interact with offline LLM through Ollama API - manage LLMs in Neovim -- selected to prompt +- selected to prompt (WIP 🚧) - manage AI Prompts (WIP 🚧) - text completion (WIP 🚧) @@ -15,7 +18,7 @@ The backlog of this project includes features like: You must have `ollama` installed and running on your machine -> You can donwload and install Ollama from https://ollama.ai/ +> You can download and install Ollama from https://ollama.ai/ Also, this plugin relies on some other libraries that should be listed as dependencies @@ -26,7 +29,6 @@ dependencies "marco-souza/ollero.nvim", name = "ollero", dependencies = { - "nvim-lua/plenary.nvim", "nvim-telescope/telescope-ui-select.nvim", }, config = function() @@ -43,13 +45,15 @@ Install it with your plugin manager, then add a keymap to the following command: ## Commands # managing ollama models -:Chat -:RunModel # WIP 🚧 -:ListModels -:RemoveModel :InstallModel +:RemoveModel +:ListModels +:RunModel + +# interact with models +:Chat -# manafing model files +# custom model files :CreateModel :BuildModel ``` diff --git a/lua/ollero/ollero.lua b/lua/ollero/ollero.lua index e2a3dc9..90cc94e 100644 --- a/lua/ollero/ollero.lua +++ b/lua/ollero/ollero.lua @@ -95,7 +95,7 @@ function Ollero.install_model() end ollama.install(model, function(cmd) - vim.notify("Ollama is installing `" .. model("`...")) + vim.notify("Ollama is installing `" .. model .. "`...") term.send(term.termcode("")) term.send(cmd) end)