How to use from
SGLang
Install from pip and serve model
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
    --model-path "darkps/darkit-v1.5" \
    --host 0.0.0.0 \
    --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "darkps/darkit-v1.5",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use Docker images
docker run --gpus all \
    --shm-size 32g \
    -p 30000:30000 \
    -v ~/.cache/huggingface:/root/.cache/huggingface \
    --env "HF_TOKEN=<secret>" \
    --ipc=host \
    lmsysorg/sglang:latest \
    python3 -m sglang.launch_server \
        --model-path "darkps/darkit-v1.5" \
        --host 0.0.0.0 \
        --port 30000
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:30000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "darkps/darkit-v1.5",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

DarkIT v1.5

DarkIT is a next-generation high-performance large language model engineered for advanced programming, deep reasoning, and natural human conversation.

DarkIT v1.5 introduces major improvements in:

  • Advanced code generation
  • Complex debugging & error analysis
  • Long-context reasoning
  • Multi-language programming support
  • Instruction following for difficult technical tasks
  • Architecture understanding & code refactoring
  • Stable conversational behavior
  • Fast and efficient local inference
  • Unrestricted responses with strong adaptability

What's New in v1.5

DarkIT v1.5 has been significantly upgraded with a massive programming-focused training phase.

Major Improvements

  • Trained on over 7 million high-quality programming conversations
  • Strongly improved coding intelligence and reasoning
  • Better understanding of software architecture and system design
  • More accurate debugging and bug fixing
  • Improved instruction consistency
  • Better long-response stability
  • Reduced hallucinations in programming tasks
  • Faster response generation quality under long prompts

Programming Capabilities

DarkIT v1.5 performs strongly across:

  • Python
  • C++
  • JavaScript / TypeScript
  • Java
  • Rust
  • Go
  • PHP
  • SQL
  • Bash / Shell scripting
  • HTML / CSS
  • AI & Machine Learning workflows

Key Specifications

  • Model Family: DarkIT Coder
  • Version: v1.5
  • Model Size: 4B Parameters
  • Context Length: 40k Tokens
  • Format: GGUF (optimized for efficient local deployment)
  • Inference Support: CPU / GPU
  • Primary Focus: Programming & Technical Reasoning

Performance Notes

  • Optimized for strong local inference performance
  • Excellent balance between speed and output quality
  • Stable long-context generation
  • Enhanced code completion consistency
  • Improved logical reasoning across technical tasks
  • Designed for developer workflows and advanced prompting

Recommended Usage

DarkIT v1.5 performs best when used for:

  • Software development
  • AI engineering tasks
  • Code generation
  • Debugging large projects
  • Technical explanations
  • Automation scripting
  • Long-context programming conversations
  • Local offline AI deployment

⚠️ Notes

  • Designed primarily for inference deployment
  • Output quality may vary depending on quantization level and hardware
  • Best performance is achieved using structured prompts
  • Large context usage may require substantial RAM/VRAM

About Dark

DarkPs is an independent AI organization founded and owned by Dark. DarkPs develops the DarkIT family of open-source language models. Dark is the owner and founder of DarkPs, not the organization itself.

Downloads last month
254
GGUF
Model size
4B params
Architecture
qwen3
Hardware compatibility
Log In to add your hardware

3-bit

4-bit

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for darkps/darkit-v1.5

Unable to build the model tree, the base model loops to the model itself. Learn more.