You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Background
Colab added a feature to specify secrets that you can then access in the code:
Tasks
Implement extra config provider that works like the airflow one.
adds itself when colab runtime is present (we have detector utils)
is based off the regular toml provider
emulates secrets.toml and config.toml, you just load them from the properly named colab secrets
contrary to existing toml reader which does not reload, this one must check for changes. so introduce a cache (ie with a few seconds default expiration) that will reload the whole document on get. add cache to the base toml (disabled by default)
make sure we do not have obnoxious behavior ie. asking for permissions every second
I suggest prototyping in colab. you can add providers dynamically to container
The text was updated successfully, but these errors were encountered:
Background

Colab added a feature to specify secrets that you can then access in the code:
Tasks
Implement extra config provider that works like the airflow one.
get
. add cache to the base toml (disabled by default)The text was updated successfully, but these errors were encountered: