File size: 722 Bytes
7fec1b1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# Beam
>[Beam](https://www.beam.cloud/) is a cloud computing platform that allows you to run your code
> on remote servers with GPUs.
## Installation and Setup
- [Create an account](https://www.beam.cloud/)
- Install the Beam CLI with `curl https://raw.githubusercontent.com/slai-labs/get-beam/main/get-beam.sh -sSfL | sh`
- Register API keys with `beam configure`
- Set environment variables (`BEAM_CLIENT_ID`) and (`BEAM_CLIENT_SECRET`)
- Install the Beam SDK:
```bash
pip install beam-sdk
```
## LLMs
See a [usage example](/docs/integrations/llms/beam).
See another example in the [Beam documentation](https://docs.beam.cloud/examples/langchain).
```python
from langchain_community.llms.beam import Beam
```
|