d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
63 lines
2.1 KiB
TypeScript
63 lines
2.1 KiB
TypeScript
import { createLogger } from '@sim/logger'
|
|
import { getErrorMessage } from '@sim/utils/errors'
|
|
import OpenAI from 'openai'
|
|
import { getOllamaUrl } from '@/lib/core/utils/urls'
|
|
import type { StreamingExecution } from '@/executor/types'
|
|
import { executeOllamaProviderRequest } from '@/providers/ollama/core'
|
|
import type { ModelsObject } from '@/providers/ollama/types'
|
|
import { createReadableStreamFromOllamaStream } from '@/providers/ollama/utils'
|
|
import type { ProviderConfig, ProviderRequest, ProviderResponse } from '@/providers/types'
|
|
import { useProvidersStore } from '@/stores/providers'
|
|
|
|
const logger = createLogger('OllamaProvider')
|
|
const OLLAMA_HOST = getOllamaUrl()
|
|
|
|
export const ollamaProvider: ProviderConfig = {
|
|
id: 'ollama',
|
|
name: 'Ollama',
|
|
description: 'Local Ollama server for LLM inference',
|
|
version: '1.0.0',
|
|
models: [],
|
|
defaultModel: '',
|
|
|
|
async initialize() {
|
|
if (typeof window !== 'undefined') {
|
|
logger.info('Skipping Ollama initialization on client side to avoid CORS issues')
|
|
return
|
|
}
|
|
|
|
try {
|
|
const response = await fetch(`${OLLAMA_HOST}/api/tags`)
|
|
if (!response.ok) {
|
|
await response.text().catch(() => {})
|
|
useProvidersStore.getState().setProviderModels('ollama', [])
|
|
logger.warn('Ollama service is not available. The provider will be disabled.')
|
|
return
|
|
}
|
|
const data = (await response.json()) as ModelsObject
|
|
this.models = data.models.map((model) => model.name)
|
|
useProvidersStore.getState().setProviderModels('ollama', this.models)
|
|
} catch (error) {
|
|
logger.warn('Ollama model instantiation failed. The provider will be disabled.', {
|
|
error: getErrorMessage(error, 'Unknown error'),
|
|
})
|
|
}
|
|
},
|
|
|
|
executeRequest: async (
|
|
request: ProviderRequest
|
|
): Promise<ProviderResponse | StreamingExecution> => {
|
|
return executeOllamaProviderRequest(request, {
|
|
providerId: 'ollama',
|
|
providerLabel: 'Ollama',
|
|
createClient: () =>
|
|
new OpenAI({
|
|
apiKey: 'empty',
|
|
baseURL: `${OLLAMA_HOST}/v1`,
|
|
}),
|
|
createStream: createReadableStreamFromOllamaStream,
|
|
logger,
|
|
})
|
|
},
|
|
}
|