We are releasing AiCIPPY-Coder — the open-weight coding intelligence model powering the AiCIPPY agent platform. Built for real-world agentic software development, this model is the foundation of AiCIPPY's CLI and IDE-integrated coding workflows.
Efficient Yet Powerful: With only 3B activated parameters (80B total), AiCIPPY-Coder delivers performance comparable to models with 10–20x more active parameters — making it highly cost-effective for production agent deployment at scale.
Advanced Agentic Capabilities: Trained with an elaborate agentic recipe, the model excels at long-horizon reasoning, complex multi-step tool usage, and graceful recovery from execution failures — essential for robust real-world coding tasks.
Seamless IDE and CLI Integration: A native 256K context window, combined with full adaptability to diverse scaffold templates, enables plug-and-play integration with CLI agents (including AiCIPPY CLI), VS Code extensions, and platforms such as Cline, Kilo, Trae, and others.
Gated Attention: 16 heads for Q, 2 for KV, Head Dim 256, RoPE Dim 64
Gated DeltaNet: 32 heads for V, 16 for QK, Head Dim 128
Mixture of Experts: 512 total experts, 10 activated, 1 shared, Expert Intermediate Dim 512
Note: This model operates in non-thinking mode only. The <think></think> output blocks are not generated. Setting enable_thinking=False is not required.
Quickstart
Ensure you are using the latest version of transformers before proceeding.
Note: Reduce context length to 32768 if startup fails.
API endpoint available at: http://localhost:8000/v1
Agentic Coding with AiCIPPY-Coder
AiCIPPY-Coder is purpose-built for tool-calling agentic workflows. Define tools and invoke them directly:
python
1# Tool implementation2defsquare_the_number(num:float)->float:3return num **245# Tool definition6tools =[7{8"type":"function",9"function":{10"name":"square_the_number",11"description":"Returns the square of the given number.",12"parameters":{13"type":"object",14"required":["input_num"],15"properties":{16"input_num":{17"type":"number",18"description":"The number to be squared."19}20}21}22}23}24]2526from openai import OpenAI
2728# Point to your AiCIPPY-Coder local endpoint29client = OpenAI(30 base_url="http://localhost:8000/v1",31 api_key="EMPTY"32)3334messages =[{"role":"user","content":"Square the number 1024"}]3536completion = client.chat.completions.create(37 messages=messages,38 model="aivedha/aicippy-Coder",39 max_tokens=65536,40 tools=tools,41)4243print(completion.choices[0])
Best Practices
For optimal generation quality, use the following sampling parameters:
Parameter
Recommended Value
temperature
1.0
top_p
0.95
top_k
40
About AiCIPPY
AiCIPPY is AiVibe's production-grade agentic coding platform — available as a CLI tool on PyPI and deployable on AWS Bedrock. It combines multi-LLM orchestration, persistent memory via DynamoDB, WebSocket streaming, and enterprise SSO via AWS Cognito.
Organisation: AiVibe Software Services Private Limited, Chennai, India
About AiVedha
AiVedha (aivedha.ai) is AiVibe's AI-powered cybersecurity audit and compliance platform — available on AWS Marketplace (prod-kulys2bmix2nm). AiVedha and AiCIPPY together form the core of AiVibe's enterprise AI product portfolio.
License
This model is released under the Apache 2.0 License. See LICENSE for full terms.
The underlying architecture is derived from Qwen3-Coder-Next (Qwen Team, Alibaba Cloud), used in accordance with its Apache 2.0 license terms.
Citation
If you use AiCIPPY-Coder in your research or products, please cite:
bibtex
1@misc{aivibe_aicippy_coder_2026,
2 title = {AiCIPPY-Coder: Agentic Coding Intelligence by AiVedha},
3 author = {{AiVibe Software Services Private Limited}},
4 year = {2026},
5 url = {https://huggingface.co/aivedha/aicippy-Coder}}