Get Started in 15 Minutes
1. Download the GLM 4.7 Model
2. Set Up Environment
3. Load the Model
4. Run a Sample Coding Task
Code Snippet:
```python
from glm import GLMModel
model = GLMModel.load('glm-4.7')
result = model.run_code_task('def add(a, b): return a + b')
print(result)
```