CoolFace
Modelpublic

wasmdashai/vivo-c-v1

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
3likes53downloads
Model Card

<p align="center"> <img src="./vivo.png" alt="vivo-c-v1" width="100%"> </p>

<div align="center">

vivo-c-v1

Balanced Arabic Intelligence for Cloud and Enterprise Applications

๐ŸŒ VIVO AI โ€ข ๐Ÿค— Hugging Face โ€ข ๐Ÿข Lahja AI

</div>


Overview

vivo-c-v1 is a large-scale conversational language model developed as part of the VIVO AI model family.

The model is built on Qwen3-235B-A22B-Instruct-2507, a Mixture-of-Experts causal language model with approximately 235 billion total parameters and 22 billion activated parameters per token.

vivo-c-v1 is being developed to provide a balanced foundation for Arabic conversational intelligence, enterprise assistants, AI agents, knowledge-based systems, cloud applications, and long-context workloads.

The model places particular emphasis on:

  • โ€”Modern Standard Arabic
  • โ€”Saudi and Gulf Arabic dialects
  • โ€”Natural conversational interaction
  • โ€”Long-context understanding
  • โ€”Enterprise knowledge integration
  • โ€”Tool and function calling
  • โ€”Cloud-native deployment
  • โ€”AI-agent workflows

Why vivo-c-v1?

Many general-purpose language models are optimized primarily for broad multilingual benchmarks. vivo-c-v1 is positioned around practical deployment scenarios where response quality, contextual continuity, scalability, and integration with external systems are essential.

The model is designed for applications that require:

  • โ€”Natural Arabic conversations
  • โ€”Regional dialect awareness
  • โ€”Persistent conversational context
  • โ€”Retrieval-Augmented Generation (RAG)
  • โ€”Enterprise knowledge bases
  • โ€”API and tool integration
  • โ€”Intelligent workflow automation
  • โ€”Scalable cloud inference

Model Architecture

PropertyValue
Model typeCausal Language Model
ArchitectureQwen3 Mixture of Experts
Total parametersApproximately 235B
Activated parametersApproximately 22B per token
Non-embedding parametersApproximately 234B
Number of layers94
Attention heads64 query heads and 4 key-value heads
Number of experts128
Activated experts8
Native context length262,144 tokens
Extended contextUp to approximately 1,010,000 tokens
Tensor typeBF16
LicenseApache 2.0
The parameter and architecture values above describe the underlying base architecture. They should not be interpreted as independently reproduced performance claims for vivo-c-v1.

Core Capabilities

Arabic and Regional Dialects

vivo-c-v1 is intended to improve interactions for Arabic-speaking users by focusing on:

  • โ€”Modern Standard Arabic
  • โ€”Saudi Arabic dialects
  • โ€”Gulf dialects
  • โ€”Context-aware Arabic responses
  • โ€”Reduced literal translation
  • โ€”Better regional language adaptation
  • โ€”Arabic instruction following

Long-Context Understanding

The underlying architecture supports a native context length of 262,144 tokens and can be extended to approximately 1 million tokens using supported long-context configurations.

This makes the model suitable for:

  • โ€”Long enterprise documents
  • โ€”Large knowledge bases
  • โ€”Extended conversations
  • โ€”Repository-level code analysis
  • โ€”Research and technical documents
  • โ€”Multi-step agent workflows

Enterprise and Agentic AI

vivo-c-v1 is designed for integration into:

  • โ€”AI customer-service platforms
  • โ€”Smart virtual assistants
  • โ€”Enterprise search
  • โ€”Knowledge management
  • โ€”AI agents
  • โ€”Tool-calling systems
  • โ€”RAG pipelines
  • โ€”Workflow automation
  • โ€”Government, education, and healthcare applications

Comparison with General Language Models

Capabilityvivo-c-v1General-purpose LLMs
Arabic-first deployment focusHigh priorityGeneral multilingual coverage
Saudi and Gulf dialect scenariosCore targetVaries by model
Conversational applicationsPrimary use caseGeneral text generation
Long-context workflowsSupportedDepends on model
Enterprise integrationAPIs, RAG, tools, knowledge basesRequires customization
AI-agent workflowsDesigned for tool integrationVaries by implementation
Cloud deploymentProduction-orientedDepends on infrastructure
Resource balanceMoE with 22B active parametersArchitecture dependent

Quick Start

Install the latest compatible libraries:

bash
pip install --upgrade "transformers>=4.51.0" accelerate torch

Load the model with Hugging Face Transformers:

python
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "wasmdashai/vivo-c-v1"

tokenizer = AutoTokenizer.from_pretrained(
    model_id,
    trust_remote_code=True,
)

model = AutoModelForCausalLM.from_pretrained(
    model_id,
    torch_dtype="auto",
    device_map="auto",
    trust_remote_code=True,
)

messages = [
    {
        "role": "system",
        "content": (
            "You are an enterprise AI assistant specialized in Arabic "
            "and Saudi conversational applications."
        ),
    },
    {
        "role": "user",
        "content": "ุตู…ู… ู…ุนู…ุงุฑูŠุฉ ู„ู…ู†ุตุฉ ู…ุณุงุนุฏ ุฐูƒูŠ ู…ุคุณุณูŠุฉ ู‚ุงุจู„ุฉ ู„ู„ุชูˆุณุน.",
    },
]

text = tokenizer.apply_chat_template(
    messages,
    tokenize=False,
    add_generation_prompt=True,
)

inputs = tokenizer(
    [text],
    return_tensors="pt",
).to(model.device)

with torch.inference_mode():
    generated_ids = model.generate(
        **inputs,
        max_new_tokens=2048,
        temperature=0.7,
        top_p=0.8,
        top_k=20,
        do_sample=True,
    )

output_ids = generated_ids[0][inputs.input_ids.shape[-1]:]

response = tokenizer.decode(
    output_ids,
    skip_special_tokens=True,
)

print(response)

Cloud Deployment

vLLM

bash
vllm serve wasmdashai/vivo-c-v1 \
  --tensor-parallel-size 8 \
  --max-model-len 262144

SGLang

bash
python -m sglang.launch_server \
  --model-path wasmdashai/vivo-c-v1 \
  --tp 8 \
  --context-length 262144

For environments with limited GPU memory, reduce the context length:

bash
--max-model-len 32768

or:

bash
--context-length 32768

Agentic Use

vivo-c-v1 can be integrated with:

  • โ€”Function calling
  • โ€”Model Context Protocol (MCP)
  • โ€”Code execution tools
  • โ€”Search and retrieval tools
  • โ€”RAG systems
  • โ€”Enterprise APIs
  • โ€”Workflow orchestration
  • โ€”Multi-agent applications

A typical production architecture may include:

text
User Interface
      โ”‚
      โ–ผ
API Gateway
      โ”‚
      โ–ผ
vivo-c-v1 Inference Service
      โ”‚
      โ”œโ”€โ”€ RAG and Vector Database
      โ”œโ”€โ”€ Enterprise Knowledge Bases
      โ”œโ”€โ”€ External APIs and Tools
      โ”œโ”€โ”€ Agent Orchestration
      โ””โ”€โ”€ Monitoring and Safety Layer

Long-Context Deployment

Processing contexts close to one million tokens requires substantial infrastructure for:

  • โ€”Model weights
  • โ€”KV cache
  • โ€”Activation memory
  • โ€”Tensor parallelism
  • โ€”High-bandwidth GPU communication

For production deployment, context size should be selected according to the actual workload rather than always enabling the maximum supported length.

Recommended starting values:

WorkloadSuggested context
Standard assistant16Kโ€“32K
Enterprise RAG32Kโ€“128K
Long-document analysis128Kโ€“256K
Specialized ultra-long contextAbove 256K with dedicated infrastructure

Recommended Generation Settings

A practical starting configuration is:

python
generation_config = {
    "temperature": 0.7,
    "top_p": 0.8,
    "top_k": 20,
    "max_new_tokens": 2048,
    "do_sample": True,
}

These values should be adjusted according to the application, latency target, output length, and factuality requirements.


Intended Uses

vivo-c-v1 is intended for:

  • โ€”Arabic conversational assistants
  • โ€”Saudi and Gulf customer-service applications
  • โ€”Enterprise copilots
  • โ€”AI agents and automation
  • โ€”Knowledge-base assistants
  • โ€”RAG systems
  • โ€”Long-document analysis
  • โ€”Code and technical assistance
  • โ€”Government digital services
  • โ€”Education and healthcare platforms
  • โ€”Cloud-native AI applications

Limitations

  • โ€”The model may generate inaccurate or unsupported information.
  • โ€”Arabic dialect quality may vary by topic and prompt.
  • โ€”Long-context support does not guarantee perfect recall of every detail.
  • โ€”Large-scale inference requires substantial GPU infrastructure.
  • โ€”Generated code and business recommendations should be reviewed.
  • โ€”Sensitive or high-stakes outputs require human validation.
  • โ€”Performance results of the base model should not be presented as independently reproduced vivo-c-v1 results unless separate evaluations are published.

Responsible Use

Users are responsible for:

  • โ€”Reviewing generated content
  • โ€”Protecting personal and confidential information
  • โ€”Applying appropriate access controls
  • โ€”Monitoring production outputs
  • โ€”Testing integrations before deployment
  • โ€”Complying with applicable laws and organizational policies

Platform Links

vivo-c-v1 on Hugging Face

https://huggingface.co/wasmdashai/vivo-c-v1

VIVO AI Platform

https://vivo.lahjai.net

Lahja AI

https://lahjai.net


Base Model and Attribution

vivo-c-v1 is based on:

Qwen3-235B-A22B-Instruct-2507

https://huggingface.co/Qwen/Qwen3-235B-A22B-Instruct-2507

Please follow the applicable base-model license and attribution requirements.


Citation

bibtex
@misc{qwen3technicalreport,
    title        = {Qwen3 Technical Report},
    author       = {Qwen Team},
    year         = {2025},
    eprint       = {2505.09388},
    archivePrefix= {arXiv},
    primaryClass = {cs.CL}
}

License

This repository uses the Apache License 2.0, subject to the applicable terms of the base model and included dependencies.