فهرست منبع

examples: update create example for new api

Bruce MacDonald 6 ماه پیش
والد
کامیت
0800da5331
1فایلهای تغییر یافته به همراه11 افزوده شده و 0 حذف شده
  1. 11 0
      examples/create/create.ts

+ 11 - 0
examples/create/create.ts

@@ -0,0 +1,11 @@
+import ollama from 'ollama'
+
+const stream = await ollama.create({
+    model: 'my-model',
+    from: 'smollm2',
+    system: 'You are a helpful assistant.',
+    stream: true,
+  })
+for await (const part of stream) {
+  console.log(part)
+}