karthink

Results 854 comments of karthink

Should be fixed now, please test.

I don't understand what this software does. The installation instructions explain how to access Ollama, which gptel already does. Can you give me some more context?

@JonatanSahar Sorry, I remain confused about what exactly accessing open-webui means. If it involves running Ollama on a remote server, you can use `gptel-make-ollama` as explained in the README to...

Closing as there's no planned change on the gptel side. If you have a specific suggestion please re-open.

Thanks for the PR! Actually neither `window-width` nor `frame-width` are correct here, since the width of the transient window depends on the value of `transient-display-buffer-action`. For example, transient menus appear...

Created an issue so this PR can be closed.

Yes, this needs to be fixed. I think multiple queries from one buffer is fine -- for example if you are in a non-dedicated (i.e. regular) buffer and want to...

My reason for enabling multiple parallel requests per buffer is _because_ the API is not fast. That said one request per buffer is a simpler solution, I can implement it...

@guibor here is a recipe for disallowing multiple requests from one buffer -- only works with Curl though: ``` emacs-lisp (defun gptel-throttle-request (orig-fn &rest args) (require 'gptel-curl) (if (seq-some (lambda...

> So I need to remove the advice, use gptel-send at least once, and only then add the advice back. It's because `gptel-curl.el` is not loaded until required. Adding a...