feat: add llmman binding reusing the Ollama binding - #720
Open
ericcurtin wants to merge 1 commit into
Open
ericcurtin wants to merge 1 commit into
ericcurtin wants to merge 1 commit into
Conversation
llmman (https://github.com/llmmanorg/llmman) is a local model runner that serves the Ollama API on port 17434, so the new binding subclasses the Ollama binding instead of duplicating it. The Ollama binding's folder and default address become overridable class attributes to allow this; Ollama behaviour is unchanged. llmman defaults to 127.0.0.1:17434 (honouring LLMMAN_HOST) and lists models from the running server.
ParisNeo
requested changes
Sep 10, 2026
| _ollama_ai = importlib.util.module_from_spec(_spec) | ||
| _spec.loader.exec_module(_ollama_ai) | ||
|
|
||
| __author__ = "parisneo" |
Owner
There was a problem hiding this comment.
Please change this to your own pseudo
| ###### | ||
| # Project : lollms | ||
| # File : binding.py | ||
| # Author : ParisNeo with the help of the community |
Owner
There was a problem hiding this comment.
Please change this to your own name or pseudonyme
This branch has not been deployed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds llmman, a local model runner that serves the Ollama API on port 17434.
zoos/bindings_zoo/llmman/binding subclasses the existingollama_aibinding instead of copying it; the wire protocol is the same, only the default port differs.ollama_ai/__init__.py: the binding folder and default address become overridable class attributes (binding_path,default_address). Ollama behaviour is unchanged.http://127.0.0.1:17434, honouringLLMMAN_HOST([host][:port]) if set.get_available_modelslists models from the running server (/api/tags) since llmman pulls OCI artifacts /hf.co/org/model, not the Ollama library list.llmman serviceadded to the bindings and install-command lists.Type of change
Checklist:
Testing:
py_compileon both bindings passes;ruff checkintroduces no new findings; both bindings load viaSourceFileLoaderasBindingBuilderdoes, with defaults,LLMMAN_HOSTparsing andget_available_modelsasserted with stubs. Not run against a live llmman server.