looker-open-source / looker-explore-assistant

A React Application for interacting with Looker data through natural language.
MIT License
83 stars 52 forks source link

feature: cloud function security improvement with shared secret #31

Closed waziers closed 4 months ago

waziers commented 4 months ago

We don't want an open endpoint for the gemini model. We are securing the endpoint by using a shared secret in the cloud function and the extension framework app. The secret is used to sign the request body on the extension framework side, and is verified on the cloud function side.

Added