May 2025

LLM Data collector

repo

Gemini wrapped in a cloud function to create an API.

Example Use

curl -X POST https://us-central1-neoval-sandbox.cloudfunctions.net/llm-collector \
    -H "Authorization: bearer $$(gcloud auth print-identity-token)" \
    -H "Content-Type: application/json" \
    -d '{"prompt": <LLM prompt be specific about the output>, "texts": [<List of things to look up>], }'

Response

{
  "China": "Beijing",
  "Australia": "Canberra",
  "USA": "Washington, D.C."
}