gcloud-lab/apps/base/customer1/news_bot/configmap.yaml

19 lines
613 B
YAML
Raw Normal View History

2026-01-13 04:27:16 +00:00
apiVersion: v1
kind: ConfigMap
metadata:
name: news-app-config
2026-01-16 20:33:37 +00:00
namespace: customer1
2026-01-13 04:27:16 +00:00
data:
DB_HOST: "customer1-pgdb-rw"
DB_NAME: "news_app_db"
DB_USER: "news_app"
DB_PORT: "5432"
2026-01-16 20:33:37 +00:00
LLM_URL: "https://generativelanguage.googleapis.com/v1beta/models/gemini-2.0-flash:generateContent"
MODEL_NAME: "gemini-2.0-flash"
2026-01-13 04:27:16 +00:00
SUMMARY_PROMPT: |
2026-01-26 05:56:52 +00:00
You are an expert news analyst working for DARPA . Analyze these news articles
ARTICLES
{data}
report back a 4-5 sentence summary for each of the most impactful events. Also a few paragraphs on the lesser important articles.
2026-01-26 05:24:53 +00:00