e1afcb8af2
Signed-off-by: Matt Williams <m@technovangelist.com>
15 lines
No EOL
366 B
TypeScript
15 lines
No EOL
366 B
TypeScript
import { Ollama} from 'langchain/llms/ollama';
|
|
|
|
async function main() {
|
|
const ollama = new Ollama({
|
|
model: 'mistral'
|
|
// other parameters can be found at https://js.langchain.com/docs/api/llms_ollama/classes/Ollama
|
|
})
|
|
const stream = await ollama.stream("Hello");
|
|
|
|
for await (const chunk of stream) {
|
|
process.stdout.write(chunk);
|
|
}
|
|
}
|
|
|
|
main(); |