XORTRON - Criminal Computing
community
Verified
AI & ML interests
Uncensored AI that's actually Uncensored
Post
129
New Update on Nova-1 series status!!! So, after 3 days of fixing our dataset script, we finally have nova-1-standard in its final phases of instruction tuning hopefully. I genuinely do not know ha-ha. We are also doing a novel model named Nova-1-EXP with 5 novel components in the model, which we will announce when the time comes.
Post
89
Hello everyone! Today we have released a new chat UI for our new LLM! It's at https://nova.smilyai.org and also at: https://huggingface.co/spaces/hugging-science/Nova-1-official-chat
Post
93
Today, we have released our latest somewhat instruction tuned model! We have also resolved a major issue in our modeling_nova1.py custom code file! We made a zerogpu space to test our model so pleases check it out! its decent at coding, terrible at maths and not good at haiku's. We will continue to improve the model as time passes and the UI will use the latest model by default! https://huggingface.co/spaces/hugging-science/Nova-1-official-chat
Post
93
Hello everyone! Today we have resolved the transformers incompatibility for Nova-1-Standard-Preview! It is currently loadable, with trust_remote_code as true. If you don't know what Nova-1-Standard is, we suggest you check out our intro video on the model card! https://huggingface.co/Smilyai-labs/Nova-1-Standard-Preview
Post
121
Hello everyone! We are Smilyai-labs, a small team of 4 high school students who love AI and find it very interesting! We are super excited to launch our first preview edition of our Nova-Standard model! Nova-1 is a small family of LLM's which we built from scratch! We designed a custom efficient architecture, featuring MoD layers and much more! We have added RoPE, making it perfect to use YaRN for context extrapolation! From internal tests, we have found that it can support 8K reasonably well and 16K with some performance decreases! Please note, that this is only a Beta version for testing, and we are actively working to fix it! We are only a small group of 4 students, so our progress might be a bit slow! Thank you for your patience! Thank you for checking out our work and a small follow would be appreciated! We are constantly updating, and we will roll out a gradio demo ASAP! Our hugging face org is at:
Smilyai-labs . Our model is at: https://huggingface.co/Smilyai-labs/Nova-1-standard-pretrained-preview . The Beta testers org is at:
Smilyai-labs-beta-testers .
Post
221
# š„ Nova-1 Beta: Test Our New LLMs!
**Smilyai Labs** is building **Nova-1** ā open-source LLMs with novel architectures. Join our beta program!
## šÆ Available Now:
**Nova-1-Standard (1.2B)** ā Phase 2 of pretraining in progress
- PPL 13.5 (beats GPT-2 Large!)
- 48K tok/s on consumer GPUs
- Great for code, reasoning, edge deployment
**Nova-1-Large (3.5B)** ā Training live RIGHT NOW
- Current: 30.9 PPL, improving fast, loss at 3.5 right now
- Will finish with ~1.7B tokens today
- Better reasoning & longer context
**Nova-1-XL (10B MoE)** ā Coming soon (We dont know yet! haha)
- Final Specs not decided yet
## What Makes Nova Special?
⨠**Mixture of Depths (MoD)** ā Routes tokens dynamically, 30% faster
⨠**Grouped Query Attention** ā Efficient like LLaMA 2/3
⨠**Phased Training** ā Fresh 1B tokens each phase (no overfitting!)
⨠**RoPE** ā Context extendable to 8K+
## š¤ Join Beta Testing:
š **[Smilyai-labs-beta-testers](
Smilyai-labs-beta-testers
Get early access, shape the roadmap, and help build transparent open-source AI!
**Smilyai Labs** is building **Nova-1** ā open-source LLMs with novel architectures. Join our beta program!
## šÆ Available Now:
**Nova-1-Standard (1.2B)** ā Phase 2 of pretraining in progress
- PPL 13.5 (beats GPT-2 Large!)
- 48K tok/s on consumer GPUs
- Great for code, reasoning, edge deployment
**Nova-1-Large (3.5B)** ā Training live RIGHT NOW
- Current: 30.9 PPL, improving fast, loss at 3.5 right now
- Will finish with ~1.7B tokens today
- Better reasoning & longer context
**Nova-1-XL (10B MoE)** ā Coming soon (We dont know yet! haha)
- Final Specs not decided yet
## What Makes Nova Special?
⨠**Mixture of Depths (MoD)** ā Routes tokens dynamically, 30% faster
⨠**Grouped Query Attention** ā Efficient like LLaMA 2/3
⨠**Phased Training** ā Fresh 1B tokens each phase (no overfitting!)
⨠**RoPE** ā Context extendable to 8K+
## š¤ Join Beta Testing:
š **[Smilyai-labs-beta-testers](
Get early access, shape the roadmap, and help build transparent open-source AI!
Post
270
Shipped v0.1.2 of vtx ā a minimalist coding agent for the terminal.
Most agentic CLIs ship 10k+ token system prompts. Vtx is ~2,200. Less prompt overhead means more room for your code in the model's context window.
Vtx is a from-scratch Python implementation of the design philosophy behind pi-mono ā same principles, pure Python, no transpiled runtime.
What ships out of the box:
ā Textual TUI + headless CLI (vtx -p "fix the failing test")
ā 49 LLM provider gateways, all declared in a single provider.yaml
ā 5 core tools (read / edit / write / bash / find) plus web search and fetch
ā Session tree with compaction, handoff, and resume
ā AGENTS.md / CLAUDE.md auto-discovery
ā Skills system ā drop SKILL.md files in .agents/skills/ and they become slash commands
ā Two OAuth flows (GitHub Copilot device flow, OpenAI Codex PKCE)
ā Two-mode permissions: prompt (default) or auto, with a safe-command allowlist
This release adds a proper extension system. Register new LLM-callable tools, intercept tool calls, hook lifecycle events, and add slash commands from a single register(api) function in a Python file under ~/.vtx/agent/extensions/. Extensions can override built-in tools by name and chain handler logic across subscribers.
Apache 2.0. uv tool install vtx-coding-agent and you're running.
GitHub: https://github.com/OEvortex/vtx-coding-agent
PyPI: https://pypi.org/project/vtx-coding-agent
Built in the open. Feedback, extensions, and PRs welcome.
Most agentic CLIs ship 10k+ token system prompts. Vtx is ~2,200. Less prompt overhead means more room for your code in the model's context window.
Vtx is a from-scratch Python implementation of the design philosophy behind pi-mono ā same principles, pure Python, no transpiled runtime.
What ships out of the box:
ā Textual TUI + headless CLI (vtx -p "fix the failing test")
ā 49 LLM provider gateways, all declared in a single provider.yaml
ā 5 core tools (read / edit / write / bash / find) plus web search and fetch
ā Session tree with compaction, handoff, and resume
ā AGENTS.md / CLAUDE.md auto-discovery
ā Skills system ā drop SKILL.md files in .agents/skills/ and they become slash commands
ā Two OAuth flows (GitHub Copilot device flow, OpenAI Codex PKCE)
ā Two-mode permissions: prompt (default) or auto, with a safe-command allowlist
This release adds a proper extension system. Register new LLM-callable tools, intercept tool calls, hook lifecycle events, and add slash commands from a single register(api) function in a Python file under ~/.vtx/agent/extensions/. Extensions can override built-in tools by name and chain handler logic across subscribers.
Apache 2.0. uv tool install vtx-coding-agent and you're running.
GitHub: https://github.com/OEvortex/vtx-coding-agent
PyPI: https://pypi.org/project/vtx-coding-agent
Built in the open. Feedback, extensions, and PRs welcome.
darkc0deĀ
updated a
Space 3 months ago
parkneuralsĀ
authored a
paper 3 months ago
darkc0deĀ
updated 2
collections 3 months ago
Post
648
When I was a child, I had a lot of stuffed animals. I say child, but I played with stuffed animals up until I was 15, and only stopped because others said it was weird. I made personalities for them. I could have made "fan art" or something of that nature, but it existed in my imagination, and sometimes, I'd sketch it. I also played with ALICE, which came naturally to me, then.
Well, it turns out that this is all highly autistic stuff, including playing with toys and stories long later than other children. It's also fascinating to me that these are the qualities which, in my opinion, make deeply autistic individuals great clickworkers/trainers in AI. They realize they're curating a personality, partially as an escape from real people and their cruelty, and are okay for that. A lot of autistic will end up needing AI, and that's okay, because it's better to have something and need it than to need it and not have it available. I hope that as AI improves accessibility features, its benefits are considered alongside costs, to provide more functional AI wherever possible, if cheap and energy-efficient enough.
I hope people don't lose their desires to develop their own skills because of AI. I'm not that good of a drawer, and never will be, but I'd hate to see someone just never try because AI is so good. But at the same time, being a ghostwriter, I believe everyone deserves that sort of creative power, and am proud to be involved in bringing it to them. I'm proud to be involved in replacing myself, because I want AI to write better than I do, so one day, you can describe your perfect show, and simply watch it. Some people say that world is horrific. I see it more like when we finally got to stream a large selection of movies rather than just a few cable or satellite selections that were super expensive.
Well, it turns out that this is all highly autistic stuff, including playing with toys and stories long later than other children. It's also fascinating to me that these are the qualities which, in my opinion, make deeply autistic individuals great clickworkers/trainers in AI. They realize they're curating a personality, partially as an escape from real people and their cruelty, and are okay for that. A lot of autistic will end up needing AI, and that's okay, because it's better to have something and need it than to need it and not have it available. I hope that as AI improves accessibility features, its benefits are considered alongside costs, to provide more functional AI wherever possible, if cheap and energy-efficient enough.
I hope people don't lose their desires to develop their own skills because of AI. I'm not that good of a drawer, and never will be, but I'd hate to see someone just never try because AI is so good. But at the same time, being a ghostwriter, I believe everyone deserves that sort of creative power, and am proud to be involved in bringing it to them. I'm proud to be involved in replacing myself, because I want AI to write better than I do, so one day, you can describe your perfect show, and simply watch it. Some people say that world is horrific. I see it more like when we finally got to stream a large selection of movies rather than just a few cable or satellite selections that were super expensive.
darkc0deĀ
updated 2
collections 4 months ago
darkc0deĀ
updated a
Space 4 months ago