Fine-tuned Qwen3-8B model specialized for code assistance and sandbox execution. Trained on 131k episodes from the glaive-code-assistant-sandboxes dataset for enhanced coding capabilities.
A specialized code assistance model fine-tuned from Qwen3-8B on 131,000 episodes of the glaive-code-assistant-sandboxes dataset. This model excels at code generation, understanding, and sandbox-based execution scenarios.
This model provides advanced code assistance capabilities with a focus on sandbox execution environments. It has been trained to understand code generation requests, provide context-aware solutions, and work effectively in isolated execution contexts.
**Base Model:** Qwen/Qwen3-8B (8 billion parameters)
**Training Dataset:** DCAgent2/glm46-glaive-code-assistant-sandboxes-maxeps-131k
**License:** Apache 2.0
**HuggingFace ID:** `laion/glm46-glaive-code-assistant-sandboxes-maxeps-131k`
When using this model for code assistance tasks, follow these steps:
Load the model using the Transformers library:
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "laion/glm46-glaive-code-assistant-sandboxes-maxeps-131k"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(
model_name,
device_map="auto",
torch_dtype="auto"
)
```
Use these recommended generation parameters:
```python
generation_config = {
"max_new_tokens": 2048,
"temperature": 0.7,
"top_p": 0.9,
"do_sample": True,
"repetition_penalty": 1.1
}
```
Format your prompts to leverage the model's training on conversational code assistance:
```
User: [Your code question or request]
Leave a review
No reviews yet. Be the first to review this skill!
# Download SKILL.md from killerskills.ai/api/skills/glaive-code-assistant-with-sandboxes/raw