Skip to content

Commit b1ea493

Browse files
committed
feat: replace sensitive data with placeholders
1 parent 2a35db7 commit b1ea493

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

deployment/optional-fine-tuning-model/cloud-function-remote/src/main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import json
2727

2828

29-
PROJECT_ID = os.environ.get("PROJECT_ID", "PROJECT_ID1") # @param {type:"string"}
29+
PROJECT_ID = os.environ.get("PROJECT_ID", "PROJECT_ID") # @param {type:"string"}
3030
LOCATION = os.environ.get("LOCATION", "us-central1") # @param {type:"string"}
3131
TUNED_MODEL_URL = os.environ.get("TUNED_MODEL_URL", "projects/94990521171/locations/us-central1/models/7522623261755047936")
3232
CHAR_PER_TOKEN = 4
@@ -166,4 +166,3 @@ def generate_prompt_chunks(prompt):
166166

167167
print(return_dict)
168168
return json.dumps(return_dict)
169-

deployment/optional-fine-tuning-model/deployment/workflows/workflows.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,4 +171,3 @@ main:
171171
bindings:
172172
- members: ${service_account}
173173
role: "roles/cloudfunctions.invoker"
174-

0 commit comments

Comments
 (0)