OpenAI compatible LLM endpoint? #480
Replies: 2 comments 1 reply
|
OpenAI-compatible endpoints are becoming really important for this. Being able to switch between hosted providers and self-hosted models without changing the integration saves a lot of friction. |
|
Sorry for the late reply, this one slipped past me. Short answer: yes, that's reasonable and it's a small change on our side. One thing worth clarifying first, since you mentioned a bank: the LLM is only used by the optional Knowledge Graph features (graph enrichment and skill generation). Connectors, tool execution and the MCP server itself never call a model. With For the feature itself, today the base URL is decided by The part I want to test properly before shipping it: we send Which server are you planning to run behind it, llama.cpp directly or something like vLLM, and which model? I'd rather test against the same setup you'll actually use before telling you it works. |
Uh oh!
There was an error while loading. Please reload this page.
I just discovered AnythingMCP as a potential MCP for my bank. This sounds great! Before venturing further, I have a question:
I see that for the (optional) AI-baed features you support OpenRouter, OpenAI and Anthropic.
I would much appreciate if you could add "OpenAI compatible" here, i.e. another environment variable setting where I can specify a different endpoint URL than the OpenAI default one (otherwise, the code logic is the same).
Reason: With the advent of platforms such as Strix Halo and DGX Spark, self-hosted models now are capable enough to run tasks similiar to the ones anythingmcp can use without the need for cloud services. In order to connect to a self-hosted llama.cpp, we need to be able to connect to an "OpenAI compatible" endpoint.
All reactions