bijukunjummen / genai-cloudfunction-java-sample

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Google Cloud Function sample for Gen AI Prediction for Palm 2

Running Locally

CURRENT_PROJECT=enter_the_name_of_the_project ./gradlew cloudFunctionRun
curl -v -X "http://localhost:8080?content=Hello" \

Deploying the function

# Build the uber jar
./gradlew shadowJar

# Deploy the jar
gcloud beta functions deploy genai-http-function \
--gen2 \
--runtime java17 \
--trigger-http \
--entry-point functions.GenAISample \
--source ./build/libs/ \
--region us-central1 \
--set-env-vars CURRENT_PROJECT=enter_the_name_of_the_project \
--allow-unauthenticated

About


Languages

Language:Java 100.0%