AI flows stub for ejected 17 Sierra applications (no-op mock implementations)
npm install @17sierra/ai-flowsAI flows package for 17 Sierra applications.
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)
This package is automatically used when:
1. You don't have access to the private registry
2. AI features are disabled (AI_ENABLED=false)
3. Running in a "ejected" standalone app
``typescript
import { getAIProvider } from '@17sierra/ai-flows';
const ai = getAIProvider();
const result = await ai.summarize({ reportText: '...' });
// Returns mock data - no actual AI processing
`
For the full AI-powered version, configure your .npmrc for the private registry:
`ini``
@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=true
MIT