ปลั๊กอิน Ollama ให้อินเทอร์เฟซไปยัง LLM ภายในเครื่องที่สนับสนุนโดย Ollama
การติดตั้ง
npm i --save genkitx-ollama
การกำหนดค่า
คุณต้องติดตั้งและเรียกใช้เซิร์ฟเวอร์ ollama ก่อน จึงจะใช้ปลั๊กอินนี้ได้ คุณสามารถติดตาม ดูวิธีการได้ที่ https://ollama.com/download
คุณใช้ Ollama CLI เพื่อดาวน์โหลดโมเดลที่สนใจได้ สำหรับ ตัวอย่าง:
ollama pull gemma
หากต้องการใช้ปลั๊กอินนี้ ให้ระบุปลั๊กอินเมื่อโทรหา configureGenkit()
import { ollama } from 'genkitx-ollama';
export default configureGenkit({
plugins: [
ollama({
models: [
{
name: 'gemma',
type: 'generate', // type: 'chat' | 'generate' | undefined
},
],
serverAddress: 'http://127.0.0.1:11434', // default local address
}),
],
});
การตรวจสอบสิทธิ์
หากคุณต้องการเข้าถึงการทำให้ ollama ใช้งานได้จากระยะไกลซึ่งต้องใช้ส่วนหัวที่กำหนดเอง (ภาพนิ่ง, เช่นคีย์ API หรือแบบไดนามิก เช่น ส่วนหัวการตรวจสอบสิทธิ์) คุณสามารถระบุคีย์เหล่านั้นได้ในปลั๊กอินการกำหนดค่า ollama ดังนี้
ส่วนหัวแบบคงที่:
ollama({
models: [{ name: 'gemma'}],
requestHeaders: {
'api-key': 'API Key goes here'
},
serverAddress: 'https://my-deployment',
}),
นอกจากนี้ คุณยังสามารถตั้งค่าส่วนหัวต่อคำขอแบบไดนามิก ต่อไปนี้เป็นตัวอย่างวิธีตั้งค่าโทเค็นรหัสโดยใช้ ไลบรารีการตรวจสอบสิทธิ์ของ Google ดังนี้
import { GoogleAuth } from 'google-auth-library';
import { ollama, OllamaPluginParams } from 'genkitx-ollama';
import { configureGenkit, isDevEnv } from '@genkit-ai/core';
const ollamaCommon = { models: [{ name: 'gemma:2b' }] };
const ollamaDev = {
...ollamaCommon,
serverAddress: 'http://127.0.0.1:11434',
} as OllamaPluginParams;
const ollamaProd = {
...ollamaCommon,
serverAddress: 'https://my-deployment',
requestHeaders: async (params) => {
const headers = await fetchWithAuthHeader(params.serverAddress);
return { Authorization: headers['Authorization'] };
},
} as OllamaPluginParams;
export default configureGenkit({
plugins: [
ollama(isDevEnv() ? ollamaDev : ollamaProd),
],
});
// Function to lazily load GoogleAuth client
let auth: GoogleAuth;
function getAuthClient() {
if (!auth) {
auth = new GoogleAuth();
}
return auth;
}
// Function to fetch headers, reusing tokens when possible
async function fetchWithAuthHeader(url: string) {
const client = await getIdTokenClient(url);
const headers = await client.getRequestHeaders(url); // Auto-manages token refresh
return headers;
}
async function getIdTokenClient(url: string) {
const auth = getAuthClient();
const client = await auth.getIdTokenClient(url);
return client;
}
การใช้งาน
ปลั๊กอินนี้จะไม่ส่งออกการอ้างอิงโมเดลแบบคงที่ ระบุหนึ่งใน ที่คุณกำหนดค่าโดยใช้ตัวระบุสตริง ดังนี้
const llmResponse = await generate({
model: 'ollama/gemma',
prompt: 'Tell me a joke.',
});