mirror of
https://github.com/technovangelist/videoprojects.git
synced 2026-09-10 07:16:19 -04:00
9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
import {Ollama} from 'ollama';
|
|
|
|
const ollama = new Ollama({ host: "mattsremoteollamaapi" });
|
|
const prompt = "why is the sky blue";
|
|
|
|
const output = await ollama.generate({ model: "llama2", prompt: prompt })
|
|
|
|
console.log(output)
|