Ollama-Buddy 0.9.35: Grok, Gemini Integration and Enhanced Sessions

Several improvements in the latest Ollama Buddy updates (versions 0.9.21 through 0.9.35):

🎉 New AI Integrations with Grok and Gemini

🔗 Improved Remote LLM Architecture

LLM internal decoupling, making Ollama Buddy’s core logic independent from any specific remote LLM. Each LLM integration now functions as a self-contained extension, significantly simplifying future additions and maintenance.

🎯 Standardized Model Prefixing

Now there are more remote LLMs into the mix I thought it was probably time to more clearly distinguish between model collections, so I have defined the following prefixes:

This change helps ensure clarity, especially when recalling previous sessions. Note: existing session files will need the Ollama prefix (o:) added manually if you encounter issues recalling older sessions.

💾 Enhanced Session Management

Saving session now makes a little more sense and is more consistent:

🛠️ Additional Improvements


and here is the change history

<2025-04-21 Mon> 0.9.35

Added Grok support

Integration is very similar to other remote AIs:

(use-package ollama-buddy
  :bind
  ("C-c o" . ollama-buddy-menu)
  ("C-c O" . ollama-buddy-transient-menu-wrapper)
  :custom
  (ollama-buddy-grok-api-key
   (auth-source-pick-first-password :host "ollama-buddy-grok" :user "apikey"))
  :config
  (require 'ollama-buddy-grok nil t))

<2025-04-20 Sun> 0.9.33

Fixed utf-8 encoding stream response issues from remote LLMs.

<2025-04-19 Sat> 0.9.32

Finished the remote LLM decoupling process, meaning that the core ollama-buddy logic is now not dependent on any remote LLM, and each remote LLM package is self-contained and functions as a unique extension.

<2025-04-18 Fri> 0.9.31

Refactored model prefixing logic and cleaned up

Note that there may be some breaking changes here especially regarding session recall as all models will now have a prefix to uniquely identify their type. For ollama recall, just edit the session files to prepend the ollama prefix of “o:”

<2025-04-17 Thu> 0.9.30

Added Gemini integration!

As with the Claude and ChatGPT integration, you will need to add something similar to them in your configuration. I currently have the following set up to enable access to the remote LLMs:

(use-package ollama-buddy
  :bind
  ("C-c o" . ollama-buddy-menu)
  ("C-c O" . ollama-buddy-transient-menu-wrapper)
  :custom
  (ollama-buddy-openai-api-key
   (auth-source-pick-first-password :host "ollama-buddy-openai" :user "apikey"))
  (ollama-buddy-claude-api-key
   (auth-source-pick-first-password :host "ollama-buddy-claude" :user "apikey"))
  (ollama-buddy-gemini-api-key
   (auth-source-pick-first-password :host "ollama-buddy-gemini" :user "apikey"))
  :config
  (require 'ollama-buddy-openai nil t)
  (require 'ollama-buddy-claude nil t)
  (require 'ollama-buddy-gemini nil t))

Also with the previous update all the latest model names will be pulled, so there should be a full comprehensive list for each of the main remote AI LLMs!

<2025-04-16 Wed> 0.9.23

Refactored history and model management for remote LLMs

<2025-04-15 Tue> 0.9.22

Enhanced session management

Several improvements to session management, making it more intuitive and efficient for users. Here’s a breakdown of the new functionality:

When saving a session, Ollama Buddy now creates a default name using the current timestamp and model name, users can still provide a custom name if desired.

An org file is now saved alongside the original elisp session file. This allows for better session recall as all interactions will be pulled back with the underlying session parameters still restored as before. There is an additional benefit in not only recalling precisely the session and any additional org interactions but also quickly saving to an org file for potential later inspection. Along with the improved autogenerated session name, this means it is much faster and more intuitive to save a snapshot of the current chat interaction.

The modeline now displays the current session name!

<2025-04-11 Fri> 0.9.21

Add history edit/view toggle features, so effectively merging the former history display into the history edit functionality.

Comments

comments powered by Disqus