Model reference · open weights
glm-edge-v is an open-weight language model from zai-org. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | zai-org |
|---|---|
| Type | Language models |
| Task | Vision + text |
| Released | 2024-11-27 |
| Popularity | 837 downloads / month |
| Licence | Commercial licence needed |
About
中文阅读, 点击这里
The code for adapting this model is actively being integrated into the official llama.cpp. You can test it using the
following adapted version:
git clone https://github.com/piDack/llama.cpp -b support_glm_edge_model
cmake -B build -DGGML_CUDA=ON # Or enable other acceleration hardware
cmake --build build -- -j
After installation, you can start the GLM-Edge Chat model using the following command:
llama-cli -m /model.gguf -p "\nhi\n" -ngl 999
In the command-line interface, you can interact with the model by entering your requests, and the model will provide the corresponding responses.
The usage of this model’s weights is subject to the terms outlined in the LICENSE.
From the published model card. Full card on the HuggingFace links in the sidebar.
How it works
Using it via the API
Once AxForge deploys glm-edge-v for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (glm-edge-v below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/chat/completions \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"glm-edge-v","messages":[{"role":"user","content":"Hello"}]}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.