Skip to content

Commit

Permalink
feat: deploy to Cloud Run functions (2nd generation)
Browse files Browse the repository at this point in the history
  • Loading branch information
nozomi-koborinai committed Jan 2, 2025
1 parent c9de2cf commit a4fed1f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/**
* Export Cloud Run functions (2nd generation)
* These functions are deployed to Cloud Run and accessible via HTTPS endpoints
*
* Functions:
* ├── analyzeImageFlow: Analyzes images using Google AI
* ├── analyzeWebContentsFlow: Analyzes web content using Google AI
* ├── generateChatMessageFlow: Generates chat responses using Google AI and Firestore
* └── generateImageFlow: Generates images using Vertex AI
*/

export { analyzeImageFlow } from './genkit-functions/analyzeImageFlow'
export { analyzeWebContentsFlow } from './genkit-functions/analyzeWebContentsFlow'
export { generateChatMessageFlow } from './genkit-functions/generateChatMessageFlow'
export { generateImageFlow } from './genkit-functions/generateImageFlow'

0 comments on commit a4fed1f

Please sign in to comment.