mirror of
https://github.com/technovangelist/videoprojects.git
synced 2026-09-10 07:16:19 -04:00
6 lines
122 B
TypeScript
6 lines
122 B
TypeScript
import ollama from 'ollama';
|
|
|
|
const output = await ollama.generate({ model: "llama2", prompt: "" })
|
|
|
|
console.log(output)
|
|
|