@17sierra/ai-flows
v0.2.1
Published
AI flows stub for ejected 17 Sierra applications (no-op mock implementations)
Readme
@17sierra/ai-flows
AI flows package for 17 Sierra applications.
Stub Package
This is the public stub version of @17sierra/ai-flows. It provides:
- Same API interface as the full package
- Mock implementations that return placeholder data
- Zero AI dependencies (no Genkit, no API keys required)
Usage
This package is automatically used when:
- You don't have access to the private registry
- AI features are disabled (
AI_ENABLED=false) - Running in a "ejected" standalone app
import { getAIProvider } from '@17sierra/ai-flows';
const ai = getAIProvider();
const result = await ai.summarize({ reportText: '...' });
// Returns mock data - no actual AI processingFull Version
For the full AI-powered version, configure your .npmrc for the private registry:
@17sierra:registry=https://us-east1-npm.pkg.dev/dev-tools-475316/seventeensierra-npm/
//us-east1-npm.pkg.dev/dev-tools-475316/seventeensierra-npm/:always-auth=trueLicense
MIT
