Ollama プラグインは、Ollama でサポートされているローカル LLM へのインターフェースを提供します。
インストール
npm i --save genkitx-ollama
構成
このプラグインを使用するには、まず Ollama サーバーをインストールして実行する必要があります。手順については、https://ollama.com/download をご覧ください。
Ollama CLI を使用して、目的のモデルをダウンロードできます。次に例を示します。
ollama pull gemma
このプラグインを使用するには、Genkit の初期化時に指定します。
import { genkit } from 'genkit';
import { ollama } from 'genkitx-ollama';
const ai = genkit({
plugins: [
ollama({
models: [
{
name: 'gemma',
type: 'generate', // type: 'chat' | 'generate' | undefined
},
],
serverAddress: 'http://127.0.0.1:11434', // default local address
}),
],
});
Authentication
カスタム ヘッダー(API キーなどの静的ヘッダーや認証ヘッダーなどの動的ヘッダー)を必要とする Ollama のリモート デプロイにアクセスする場合は、Ollama 構成プラグインでヘッダーを指定します。
静的ヘッダー:
ollama({
models: [{ name: 'gemma'}],
requestHeaders: {
'api-key': 'API Key goes here'
},
serverAddress: 'https://my-deployment',
}),
リクエストごとにヘッダーを動的に設定することもできます。Google Auth ライブラリを使用して ID トークンを設定する方法の例を次に示します。
import { GoogleAuth } from 'google-auth-library';
import { ollama } from 'genkitx-ollama';
import { genkit } from 'genkit';
const ollamaCommon = { models: [{ name: 'gemma:2b' }] };
const ollamaDev = {
...ollamaCommon,
serverAddress: 'http://127.0.0.1:11434',
};
const ollamaProd = {
...ollamaCommon,
serverAddress: 'https://my-deployment',
requestHeaders: async (params) => {
const headers = await fetchWithAuthHeader(params.serverAddress);
return { Authorization: headers['Authorization'] };
},
};
const ai = genkit({
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;
}
用途
このプラグインは、モデル参照を静的にエクスポートしません。文字列 ID を使用して、構成したモデルのいずれかを指定します。
const llmResponse = await ai.generate({
model: 'ollama/gemma',
prompt: 'Tell me a joke.',
});
エンベッダー
Ollama プラグインはエンベディングをサポートしています。エンベディングは、類似性検索やその他の NLP タスクに使用できます。
const ai = genkit({
plugins: [
ollama({
serverAddress: 'http://localhost:11434',
embedders: [{ name: 'nomic-embed-text', dimensions: 768 }],
}),
],
});
async function getEmbedding() {
const embedding = await ai.embed({
embedder: 'ollama/nomic-embed-text',
content: 'Some text to embed!',
})
return embedding;
}
getEmbedding().then((e) => console.log(e))