The Latest AIs, every day
AIs with the most favorites on Toolify
AIs with the highest website traffic (monthly visits)
AI Tools by Apps
Discover the Discord of AI
AI Tools by browser extensions
GPTs from GPT Store
Discover The Best Model For AI
Top AI lists by month and monthly visits.
Top AI lists by category and monthly visits.
Top AI lists by region and monthly visits.
Top AI lists by source and monthly visits.
Top AI lists by revenue and real traffic.
The Agentic Coding Intelligence behind AiCIPPY
by AiVedha · AiVibe Software Services Private Limited
aicippy.com · aivedha.ai · aivibe.cloud · PyPI
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.
AiCIPPY-Coder carries the following architecture:
| Property | Value |
|---|---|
| Model Type | Causal Language Model |
| Training Stage | Pretraining & Post-training |
| Total Parameters | 80B |
| Activated Parameters | 3B |
| Non-Embedding Parameters | 79B |
| Hidden Dimension | 2048 |
| Number of Layers | 48 |
| Context Length | 262,144 tokens (native) |
| Thinking Mode |
Non-thinking (no
<think>
blocks)
|
Architecture Details:
Note: This model operates in non-thinking mode only. The
<think></think>output blocks are not generated. Settingenable_thinking=Falseis not required.
Ensure you are using the latest version of
transformers
before proceeding.
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "aivedha/aicippy-Coder"
# Load tokenizer and model
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype="auto",
device_map="auto"
)
# Prepare input
prompt = "Write a quick sort algorithm."
messages = [
{"role": "user", "content": prompt}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True,
)
model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
# Generate
generated_ids = model.generate(
**model_inputs,
max_new_tokens=65536
)
output_ids = generated_ids[0][len(model_inputs.input_ids[0]):].tolist()
content = tokenizer.decode(output_ids, skip_special_tokens=True)
print("AiCIPPY-Coder:", content)
Note: If you encounter out-of-memory (OOM) issues, reduce the context length — for example, to
32,768tokens.
For local use, AiCIPPY-Coder is compatible with Ollama , LMStudio , MLX-LM , llama.cpp , and KTransformers .
AiCIPPY-Coder can be served via
sglang
or
vllm
as an OpenAI-compatible API endpoint — the same interface used by the AiCIPPY production platform.
SGLang is a fast serving framework for large language and vision language models.
pip install 'sglang[all]>=v0.5.8'
Launch the server with 256K context using tensor parallelism:
python -m sglang.launch_server \
--model aivedha/aicippy-Coder \
--port 30000 \
--tp-size 2 \
--tool-call-parser aicippy-coder
Note: If the server fails to start, reduce context length with
--context-length 32768.
API endpoint available at:
http://localhost:30000/v1
vLLM is a high-throughput, memory-efficient inference and serving engine for LLMs.
pip install 'vllm>=0.15.0'
Launch with 256K context:
vllm serve aivedha/aicippy-Coder \
--port 8000 \
--tensor-parallel-size 2 \
--enable-auto-tool-choice \
--tool-call-parser aicippy-coder
Note: Reduce context length to
32768if startup fails.
API endpoint available at:
http://localhost:8000/v1
AiCIPPY-Coder is purpose-built for tool-calling agentic workflows. Define tools and invoke them directly:
# Tool implementation
def square_the_number(num: float) -> float:
return num ** 2
# Tool definition
tools = [
{
"type": "function",
"function": {
"name": "square_the_number",
"description": "Returns the square of the given number.",
"parameters": {
"type": "object",
"required": ["input_num"],
"properties": {
"input_num": {
"type": "number",
"description": "The number to be squared."
}
}
}
}
}
]
from openai import OpenAI
# Point to your AiCIPPY-Coder local endpoint
client = OpenAI(
base_url="http://localhost:8000/v1",
api_key="EMPTY"
)
messages = [{"role": "user", "content": "Square the number 1024"}]
completion = client.chat.completions.create(
messages=messages,
model="aivedha/aicippy-Coder",
max_tokens=65536,
tools=tools,
)
print(completion.choices[0])
For optimal generation quality, use the following sampling parameters:
| Parameter | Recommended Value |
|---|---|
temperature
|
1.0
|
top_p
|
0.95
|
top_k
|
40
|
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.
pip install aicippy
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.
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.
If you use AiCIPPY-Coder in your research or products, please cite:
@misc{aivibe_aicippy_coder_2026,
title = {AiCIPPY-Coder: Agentic Coding Intelligence by AiVedha},
author = {{AiVibe Software Services Private Limited}},
year = {2026},
url = {https://huggingface.co/aivedha/aicippy-Coder}}
aicippy-Coder huggingface.co is an AI model on huggingface.co that provides aicippy-Coder's model effect (), which can be used instantly with this aivedha aicippy-Coder model. huggingface.co supports a free trial of the aicippy-Coder model, and also provides paid use of the aicippy-Coder. Support call aicippy-Coder model through api, including Node.js, Python, http.
aicippy-Coder huggingface.co is an online trial and call api platform, which integrates aicippy-Coder's modeling effects, including api services, and provides a free online trial of aicippy-Coder, you can try aicippy-Coder online for free by clicking the link below.
aicippy-Coder is an open source model from GitHub that offers a free installation service, and any user can find aicippy-Coder on GitHub to install. At the same time, huggingface.co provides the effect of aicippy-Coder install, users can directly use aicippy-Coder installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

