-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: deploy to Cloud Run functions (2nd generation)
- Loading branch information
1 parent
c9de2cf
commit a4fed1f
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |