-
Hi everyone, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @eastnbull! 👋 I'm here to help you with bugs, questions, and becoming a contributor. If you need assistance, feel free to ask! To persist the OpenAPI key across system restarts in your Langflow deployment on Google Cloud, you can use environment variables. Langflow supports environment variables for managing credentials, including the Here's how you can do it:
By setting the To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other |
Beta Was this translation helpful? Give feedback.
Hey @eastnbull! 👋 I'm here to help you with bugs, questions, and becoming a contributor. If you need assistance, feel free to ask!
To persist the OpenAPI key across system restarts in your Langflow deployment on Google Cloud, you can use environment variables. Langflow supports environment variables for managing credentials, including the
OPENAI_API_KEY
. You can set this environment variable in your Docker container configuration, ensuring it is automatically loaded each time the container starts.Here's how you can do it:
Set the Environment Variable: Add the
OPENAI_API_KEY
to your Docker container's environment variables. You can do this in yourdocker-compose.yml
file or directly in…