glm-4.5-air
Zhipu AI's GLM-4.5-Air. 106 B total / 12 B active MoE — community favorite for coding-agent loops and Claude-Code-style work. First model in our set with a beefy active-parameter budget.
Firworks/GLM-4.5-Air-nvfp4 NVFP4 58 GB 12B active 106B total parser · glm45
Transcripts
simple
Reply with exactly the five words: hello from hermes on spark.
hello from hermes on spark
math
What is 127 times 49? Answer with just the number.
6223
reasoning
A farmer has 17 sheep. All but 9 die. How many remain? Answer with one short sentence.
Nine sheep remain.
tool_ls
Use the shell tool to list files in /tmp. Tell me only how many there are.
There are 466 files in /tmp.
code
Write a one-line Python expression that returns the sum of squares from 1 to 10.
```python
sum(i*i for i in range(1, 11))
```