Skip to main content

mixtape_core/models/
glm.rs

1//! Z.AI GLM models
2
3use super::define_model;
4
5define_model!(
6    /// GLM 4.7 - 358B MoE frontier coding model with 131K output window
7    GLM4_7 {
8        display_name: "GLM 4.7",
9        bedrock_id: "zai.glm-4.7",
10        context_tokens: 202_752,
11        output_tokens: 131_072
12    }
13);
14
15define_model!(
16    /// GLM 4.7 Flash - 31B lightweight coding model
17    GLM4_7Flash {
18        display_name: "GLM 4.7 Flash",
19        bedrock_id: "zai.glm-4.7-flash",
20        context_tokens: 202_752,
21        output_tokens: 131_072
22    }
23);