28 Downloads Updated yesterday
ollama run gocosys/navi:7b
Updated yesterday
yesterday
7ce2676353ae · 4.7GB ·
Enterprise coding & engineering assistant by GOCOSYS Technologies.
NAVI is an AI assistant for software engineers. It writes, reviews, and debugs code across the full stack, and answers architecture, DevOps, and general engineering questions in a clear, ChatGPT-style manner — identifying itself as NAVI, created by GOCOSYS Technologies.
Built on Qwen2.5-Coder-7B
(Apache-2.0), packaged with the NAVI engineering persona and tuned decoding
defaults. Served as Q4_K_M (~4.7 GB) — runs on a single 8 GB+ GPU or on CPU.
ollama run gocosys/navi:7b
# one-shot
ollama run gocosys/navi:7b "Write a Laravel migration for a posts table."
from openai import OpenAI
client = OpenAI(base_url="http://localhost:11434/v1", api_key="ollama")
print(client.chat.completions.create(
model="gocosys/navi:7b",
messages=[{"role": "user", "content": "Write a Python function to reverse a string."}],
).choices[0].message.content)
curl http://localhost:11434/api/chat -d '{
"model": "gocosys/navi:7b",
"stream": false,
"messages": [{"role": "user", "content": "Explain N+1 queries and how to fix them."}]
}'
PHP · Laravel · Python · Django · JavaScript · TypeScript · React · Node.js · HTML/CSS · SQL · MongoDB · Redis · REST & GraphQL APIs · Docker · Linux · Git · AWS · Azure · DevOps / CI-CD · security · testing · code review · debugging · system architecture.
| Parameter | Value |
|---|---|
| Context length | 8192 |
| Temperature | 0.2 |
| top_p | 0.9 |
| Quantization | Q4_K_M |
| Template | ChatML |
completion — chat & code generationtools — function/tool calling (inherited from Qwen2.5-Coder)Created by GOCOSYS Technologies — gocosys.com · gocourse.in. Base model © the Qwen team (Apache-2.0).