Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Two main interfaces built on NUI.nvim:
- **Type System**: Extensive Lua type annotations in `types.lua` for IDE support
- **Zero Config**: Works out of the box, optional setup in user config
- **Dependencies**: Requires `nui.nvim`, `telescope.nvim`, and `curl`
- **Environment**: Set `OPENAI_API_KEY` for OpenAI, requires local Ollama server for Ollama provider
- **Environment**: Set `OPENAI_API_KEY` for OpenAI, requires Ollama server for Ollama provider (configurable via `vim.g.gptmodels_ollama_host`)
- **Visual Selection**: Commands automatically detect and handle visual mode selections
- **Background Processing**: Windows can close while maintaining streaming responses

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ them here. But here they are anyways:

This plugin requires `curl` be installed for requests.
For Ollama requests, have [Ollama](https://ollama.com/) running locally.
To use a remote Ollama server, set `vim.g.gptmodels_ollama_host` to the server's URL (e.g., `http://remote-host:11434`).
For OpenAI requests, have the `OPENAI_API_KEY` environment variable set.

Now, in your favorite package manager:
Expand Down
1 change: 0 additions & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
* Make sure o1 models are available
* Let some ops, like attach files, work in insert mode as well
* Let <CR> work from all windows
* Offer some config for ollama location
* chat window's prompt needs to be adjusted so the user request counts as much as the included files,
currently it's dominated by the files and many llms end up just explaining what's in the files
* Get live reloading of C-p telescope model picker when openai results come in
Expand Down
Loading