Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
ollama run <modelname>
npm install @llm-tools/embedjs-ollama
import { RAGApplicationBuilder } from '@llm-tools/embedjs'; import { Ollama } from '@llm-tools/embedjs-ollama'; const app = await new RAGApplicationBuilder() .setModel(new Ollama({ modelName: "llama3", baseUrl: 'http://localhost:11434' }))
Was this page helpful?