Files
9router/open-sse/executors/ollama-local.js
decolua 0d61a1d546 feat: add OllamaLocalExecutor and update provider handling
- Introduced OllamaLocalExecutor to handle requests for the "ollama-local" provider.
- Removed the direct URL construction for "ollama-local" from BaseExecutor.
- Updated index.js to include the new OllamaLocalExecutor in the executors mapping.
- Enhanced the ProvidersPage component to support dynamic addition of OpenAI/Anthropic compatible providers.
2026-05-07 16:42:36 +07:00

15 lines
390 B
JavaScript

import { DefaultExecutor } from "./default.js";
import { resolveOllamaLocalHost } from "../config/providers.js";
export class OllamaLocalExecutor extends DefaultExecutor {
constructor() {
super("ollama-local");
}
buildUrl(model, stream, urlIndex = 0, credentials = null) {
return `${resolveOllamaLocalHost(credentials)}/api/chat`;
}
}
export default OllamaLocalExecutor;