How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="MagistrTheOne/NULLXES-OBSIDIAN-v1")
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
            {"type": "text", "text": "What animal is on the candy?"}
        ]
    },
]
pipe(text=messages)
# Load model directly
from transformers import AutoProcessor, AutoModelForMultimodalLM

processor = AutoProcessor.from_pretrained("MagistrTheOne/NULLXES-OBSIDIAN-v1")
model = AutoModelForMultimodalLM.from_pretrained("MagistrTheOne/NULLXES-OBSIDIAN-v1", device_map="auto")
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
            {"type": "text", "text": "What animal is on the candy?"}
        ]
    },
]
inputs = processor.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

NULLXES VERIDIAN

Enterprise-grade AI Digital Employee Core.

Overview

NULLXES VERIDIAN is a next-generation cognitive system designed to operate as a real-time digital employee.

It combines conversational intelligence, structured execution, and decision routing into a unified AI layer for enterprise workflows.

Key Principles

  • Deterministic execution when required
  • Adaptive conversational behavior
  • Structured outputs for integration
  • Mode-based cognitive routing

Cognitive Architecture

VERIDIAN operates through internal routing between modes:

  • Chat Mode — natural human interaction
  • Action Mode — strict structured execution (JSON)
  • Coding Mode — deterministic code generation
  • Reasoning Mode — extended analysis and decision support

Routing is dynamically selected based on user intent and task complexity.

Capabilities

  • Real-time conversational interface
  • Structured task execution
  • Workflow orchestration
  • Code generation and automation
  • Context-aware reasoning

Use Cases

  • Digital employees for enterprise operations
  • AI-powered task automation
  • Business process augmentation
  • Developer copilots and internal tools
  • Real-time support systems

Integration

Designed for integration into:

  • internal enterprise systems
  • CRM / ERP workflows
  • real-time communication layers
  • API-based execution environments

Notes

NULLXES VERIDIAN is part of the NULLXES Digital Workforce Infrastructure.

It is intended to function not as a chatbot, but as an operational AI layer capable of executing real tasks within production environments.

Downloads last month
10
Safetensors
Model size
35B params
Tensor type
F32
·
BF16
·
U8
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support