20 Downloads Updated yesterday
ollama run frob/nex-n2-pro:397b
Updated yesterday
yesterday
17549f021073 · 243GB ·
Imported from https://huggingface.co/bartowski/nex-agi_Nex-N2-Pro-GGUF
$ ollama run frob/nex-n2-pro hello
Thinking...
We need answer to hello. Need maybe just greeting. final? Use final likely.
...done thinking.
Hello! How can I help you today?
$ ollama run frob/nex-n2-pro hello --think=false
Hello! How can I help you today?
$ ollama run frob/nex-n2-pro describe this image ./image1.jpg
Added image './image1.jpg'
Thinking...
We need answer user asks "describe this image". Need provide description. We
can mention white fluffy puppy sitting on stone step, red collar with bell,
looking to right, background blurred etc. Need maybe no extra. Final only.
Ensure not overdo but descriptive.
...done thinking.
The image shows a small, fluffy white puppy sitting on a light-colored stone
or concrete step. The puppy has soft fur, floppy ears, dark eyes, and a short
muzzle. It is wearing a red collar with a small gold bell hanging from it.
The puppy is facing slightly to the right, looking off into the distance
rather than at the camera.
The background is softly blurred, showing warm brownish tones that suggest an
outdoor or porch-like setting. The overall mood of the image is gentle and
cute.
$ ollama launch opencode \
--model frob/nex-n2-pro \
-- \
run "Create a manifest (manifest.md) file that lists all of the entries in the current directory."
> build · frob/nex-n2-pro:latest
$ ls -ld . && python3 -c 'from pathlib import Path; root=Path.cwd(); manifest=root/"manifest.md"; paths=[p for p in sorted(root.iterdir(), key=lambda e:e.name.casefold()) if p.name != manifest.name]; kind=lambda p: "symlink" if p.is_symlink() else ("directory" if p.is_dir() else ("file" if p.is_file() else "other")); label=lambda p: p.name + ((" -> "+str(p.readlink())) if p.is_symlink() else ""); lines=["# Current Directory Entries", "", "_`manifest.md` is intentionally omitted to keep the inventory non-self-referential._", ""] + [f"- `{label(p)}` ({kind(p)})" for p in paths]; manifest.write_text("\n".join(lines)+"\n", encoding="utf-8"); print(f"Wrote {manifest.name} with {len(paths)} entries.")'
drwxrwxr-x 7 rick rick 11 Jul 30 03:21 .
Wrote manifest.md with 9 entries.
$ cat manifest.md
# Current Directory Entries
_`manifest.md` is intentionally omitted to keep the inventory non-self-referential._
- `.cache` (directory)
- `.gitattributes` (file)
- `mmproj-nex-agi_Nex-N2-Pro-bf16.gguf` (file)
- `mmproj-nex-agi_Nex-N2-Pro-f16.gguf` (file)
- `nex-agi_Nex-N2-Pro-IQ4_NL` (directory)
- `nex-agi_Nex-N2-Pro-Q4_K_M` (directory)
- `nex-agi_Nex-N2-Pro-Q6_K` (directory)
- `nex-agi_Nex-N2-Pro-Q8_0` (directory)
- `README.md` (file)