This deployment guide is intended for development and testing environments. We
don’t recommend public deployments at this time as the platform is still
evolving and lacks production-ready security features like user management and
rate limiting.
Create a value file with the minimum configuration:config.yaml:
Copy
Ask AI
# If you want to include agents from the default catalog (change release/tag accordingly):externalRegistries: public_github: "https://github.com/i-am-bee/beeai-platform@v0.2.14#path=agent-registry.yaml"# Your custom agents as docker imagesproviders: # e.g. # - location: ghcr.io/i-am-bee/beeai-platform-agent-starter/my-agent:latest - location: <docker-image-id># Generate the encryption key:# - using UV (https://docs.astral.sh/uv/getting-started/installation/)# $ uv run --with cryptography python3 -c 'from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())'# - using python3 directly# $ python3 -m pip install cryptography # (or use your preferred way to install the cryptography package)# $ python3 -c 'from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())'encryptionKey: "encryption-key-from-command"features: uiNavigation: true# this requires passing an admin password to certain endpoints, you can disable auth for insecure deploymentsauth: enabled: true admin_password: "my-secret-password"
After the beeai-platform becomes ready, it’s necessary to configure the LLM provider. We will use the admin-password you created earlier and your preferred LLM credentials, for example:
The current authentication model is basic and intended for development use.
For any deployment beyond local testing, carefully consider your security
requirements and network access controls.
For development/testing environments with authentication:
Use the default agent registry instead of specifying individual agents:
Copy
Ask AI
# config.yamlexternalRegistries: public_github: "https://github.com/i-am-bee/beeai-platform@v0.2.14#path=agent-registry.yaml"# Omit the 'providers' section to use only registry agents