13 lines
546 B
TypeScript
13 lines
546 B
TypeScript
import { sdk } from './sdk'
|
|
|
|
// Recap declares Ollama as an OPTIONAL dependency in the manifest.
|
|
// We do not return it here because we don't want to enforce a runtime
|
|
// requirement on it — Recap runs fine using cloud providers
|
|
// (Gemini/Anthropic/OpenAI) when Ollama is not installed. The optional
|
|
// declaration in the manifest is what surfaces it as a suggested
|
|
// install on the Marketplace; this empty result keeps it from blocking
|
|
// startup.
|
|
export const setDependencies = sdk.setupDependencies(async ({ effects }) => {
|
|
return {}
|
|
})
|