I've been experimenting with a new quantization approach that selectively elevates the precision of key layers beyond what the default IMatrix configuration provides.
In my testing, standard IMatrix quantization underperforms at lower bit depths, especially with Mixture of Experts (MoE) models. To address this, I'm using the --tensor-type option in llama.cpp to manually "bump" important layers to higher precision. You can see the implementation here:
👉 Layer bumping with llama.cpp
While this does increase model file size, it significantly improves precision for a given quantization level.
I'd love your feedback—have you tried this? How does it perform for you?
We introduce InternVL3, an advanced multimodal large language model (MLLM) series that demonstrates superior overall performance.
Compared to InternVL 2.5, InternVL3 exhibits superior multimodal perception and reasoning capabilities, while further extending its multimodal capabilities to encompass tool usage, GUI agents, industrial image analysis, 3D vision perception, and more.
Additionally, we compare InternVL3 with Qwen2.5 Chat models, whose corresponding pre-trained base models are employed as the initialization of the langauge component in InternVL3. Benefitting from Native Multimodal Pre-Training, the InternVL3 series achieves even better overall text performance than the Qwen2.5 series.
image/png
InternVL3 Family
In the following table, we provide an overview of the InternVL3 series.
As shown in the following figure, InternVL3 retains the same model architecture as InternVL 2.5 and its predecessors, InternVL 1.5 and 2.0, following the "ViT-MLP-LLM" paradigm. In this new version, we integrate a newly incrementally pre-trained InternViT with various pre-trained LLMs, including InternLM 3 and Qwen 2.5, using a randomly initialized MLP projector.
image/png
As in the previous version, we applied a pixel unshuffle operation, reducing the number of visual tokens to one-quarter of the original. Besides, we adopted a similar dynamic resolution strategy as InternVL 1.5, dividing images into tiles of 448×448 pixels. The key difference, starting from InternVL 2.0, is that we additionally introduced support for multi-image and video data.
Notably, in InternVL3, we integrate the Variable Visual Position Encoding (V2PE), which utilizes smaller, more flexible position increments for visual tokens. Benefiting from V2PE, InternVL3 exhibits better long context understanding capabilities compared to its predecessors.
Training Strategy
Native Multimodal Pre-Training
We propose a Native Multimodal Pre-Training approach that consolidates language and vision learning into a single pre-training stage.
In contrast to standard paradigms that first train a language-only model and subsequently adapt it to handle additional modalities, our method interleaves multimodal data (e.g., image-text, video-text, or image-text interleaved sequences) with large-scale textual corpora. This unified training scheme allows the model to learn both linguistic and multimodal representations simultaneously, ultimately enhancing its capability to handle vision-language tasks without the need for separate alignment or bridging modules.
Please see our paper for more details.
Supervised Fine-Tuning
In this phase, the techniques of random JPEG compression, square loss re-weighting, and multimodal data packing proposed in InternVL2.5 are also employed in the InternVL3 series.
The main advancement of the SFT phase in InternVL3 compared to InternVL2.5 lies in the use of higher-quality and more diverse training data.
Specifically, we further extend training samples for tool use, 3D scene understanding, GUI operations, long context tasks, video understanding, scientific diagrams, creative writing, and multimodal reasoning.
Mixed Preference Optimization
During Pre-training and SFT, the model is trained to predict the next token conditioned on previous ground-truth tokens.
However, during inference, the model predicts each token based on its own prior outputs.
This discrepancy between ground-truth tokens and model-predicted tokens introduces a distribution shift, which can impair the model’s Chain-of-Thought (CoT) reasoning capabilities.
To mitigate this issue, we employ MPO, which introduces additional supervision from both positive and negative samples to align the model response distribution with the ground-truth distribution, thereby improving reasoning performance.
Specifically, the training objective of MPO is a combination of
preference loss \(\mathcal{L}{\text{p}}\),
quality loss \(\mathcal{L}{\text{q}}\),
and generation loss \(\mathcal{L}_{\text{g}}\),
which can be formulated as follows:
where \(w_{*}\) represents the weight assigned to each loss component. Please see our paper for more details about MPO.
Test-Time Scaling
Test-Time Scaling has been shown to be an effective method to enhance the reasoning abilities of LLMs and MLLMs.
In this work, we use the Best-of-N evaluation strategy and employ VisualPRM-8B as the critic model to select the best response for reasoning and mathematics evaluation.
We compare InternVL3 with Qwen2.5 Chat models, whose corresponding pre-trained base models are employed as the initialization of the langauge component in InternVL3.
Benefitting from Native Multimodal Pre-Training, the InternVL3 series achieves even better overall text performance than the Qwen2.5 series.
Please note that the evaluation scores of Qwen2.5 series may differ from those officially reported, as we have adopted the prompt versions provided in the table across all datasets for OpenCompass evaluation.
image/png
Ablation Study
Native Multimodal Pre-Training
We conduct experiments on the InternVL2-8B model while keeping its architecture, initialization parameters, and training data entirely unchanged. Traditionally, InternVL2-8B employs a training pipeline that begins with an MLP warmup phase for feature alignment followed by an Instruction Tuning stage. In our experiments, we substitute the conventional MLP warmup phase with a native multimodal pre-training process. This modification isolates the contribution of native multimodal pre-training to the overall multimodal capability of the model.
The evaluation results in the Figure below shows that the model with native multimodal pre-training exhibits performance on most benchmarks that is comparable to the fully multi-stage-trained InternVL2-8B baseline. Furthermore, when followed by instruction tuning on higher-quality data, the model demonstrates further performance gains across evaluated multimodal tasks. These findings underscore the efficiency of native multimodal pre-training in imparting powerful multimodal capabilities to MLLMs.
image/png
Mixed Preference Optimization
As shown in the table below, models fine-tuned with MPO demonstrate superior reasoning performance across seven multimodal reasoning benchmarks compared to their counterparts without MPO. Specifically, InternVL3-78B and InternVL3-38B outperform their counterparts by 4.1 and 4.5 points, respectively. Notably, the training data used for MPO is a subset of that used for SFT, indicating that the performance improvements primarily stem from the training algorithm rather than the training data.
image/png
Variable Visual Position Encoding
As reported in the table below, the introduction of V2PE leads to significant performance gains across most evaluation metrics. In addition, our ablation studies—by varying the positional increment \( \delta \)—reveal that even for tasks primarily involving conventional contexts, relatively small \( \delta \) values can achieve optimal performance. These findings provide important insights for future efforts aimed at refining position encoding strategies for visual tokens in MLLMs.
image/png
Quick Start
We provide an example code to run InternVL3-8B using transformers.
Please use transformers>=4.37.2 to ensure the model works normally.
The reason for writing the code this way is to avoid errors that occur during multi-GPU inference due to tensors not being on the same device. By ensuring that the first and last layers of the large language model (LLM) are on the same device, we prevent such errors.
python
1import math
2import torch
3from transformers import AutoTokenizer, AutoModel
45defsplit_model(model_name):6 device_map ={}7 world_size = torch.cuda.device_count()8 config = AutoConfig.from_pretrained(model_path, trust_remote_code=True)9 num_layers = config.llm_config.num_hidden_layers
10# Since the first GPU will be used for ViT, treat it as half a GPU.11 num_layers_per_gpu = math.ceil(num_layers /(world_size -0.5))12 num_layers_per_gpu =[num_layers_per_gpu]* world_size
13 num_layers_per_gpu[0]= math.ceil(num_layers_per_gpu[0]*0.5)14 layer_cnt =015for i, num_layer inenumerate(num_layers_per_gpu):16for j inrange(num_layer):17 device_map[f'language_model.model.layers.{layer_cnt}']= i
18 layer_cnt +=119 device_map['vision_model']=020 device_map['mlp1']=021 device_map['language_model.model.tok_embeddings']=022 device_map['language_model.model.embed_tokens']=023 device_map['language_model.output']=024 device_map['language_model.model.norm']=025 device_map['language_model.model.rotary_emb']=026 device_map['language_model.lm_head']=027 device_map[f'language_model.model.layers.{num_layers -1}']=02829return device_map
3031path ="OpenGVLab/InternVL3-8B"32device_map = split_model('InternVL3-8B')33model = AutoModel.from_pretrained(34 path,35 torch_dtype=torch.bfloat16,36 low_cpu_mem_usage=True,37 use_flash_attn=True,38 trust_remote_code=True,39 device_map=device_map).eval()
Inference with Transformers
python
1import math
2import numpy as np
3import torch
4import torchvision.transforms as T
5from decord import VideoReader, cpu
6from PIL import Image
7from torchvision.transforms.functional import InterpolationMode
8from transformers import AutoModel, AutoTokenizer
910IMAGENET_MEAN =(0.485,0.456,0.406)11IMAGENET_STD =(0.229,0.224,0.225)1213defbuild_transform(input_size):14 MEAN, STD = IMAGENET_MEAN, IMAGENET_STD
15 transform = T.Compose([16 T.Lambda(lambda img: img.convert('RGB')if img.mode !='RGB'else img),17 T.Resize((input_size, input_size), interpolation=InterpolationMode.BICUBIC),18 T.ToTensor(),19 T.Normalize(mean=MEAN, std=STD)20])21return transform
2223deffind_closest_aspect_ratio(aspect_ratio, target_ratios, width, height, image_size):24 best_ratio_diff =float('inf')25 best_ratio =(1,1)26 area = width * height
27for ratio in target_ratios:28 target_aspect_ratio = ratio[0]/ ratio[1]29 ratio_diff =abs(aspect_ratio - target_aspect_ratio)30if ratio_diff < best_ratio_diff:31 best_ratio_diff = ratio_diff
32 best_ratio = ratio
33elif ratio_diff == best_ratio_diff:34if area >0.5* image_size * image_size * ratio[0]* ratio[1]:35 best_ratio = ratio
36return best_ratio
3738defdynamic_preprocess(image, min_num=1, max_num=12, image_size=448, use_thumbnail=False):39 orig_width, orig_height = image.size
40 aspect_ratio = orig_width / orig_height
4142# calculate the existing image aspect ratio43 target_ratios =set(44(i, j)for n inrange(min_num, max_num +1)for i inrange(1, n +1)for j inrange(1, n +1)if45 i * j <= max_num and i * j >= min_num)46 target_ratios =sorted(target_ratios, key=lambda x: x[0]* x[1])4748# find the closest aspect ratio to the target49 target_aspect_ratio = find_closest_aspect_ratio(50 aspect_ratio, target_ratios, orig_width, orig_height, image_size)5152# calculate the target width and height53 target_width = image_size * target_aspect_ratio[0]54 target_height = image_size * target_aspect_ratio[1]55 blocks = target_aspect_ratio[0]* target_aspect_ratio[1]5657# resize the image58 resized_img = image.resize((target_width, target_height))59 processed_images =[]60for i inrange(blocks):61 box =(62(i %(target_width // image_size))* image_size,63(i //(target_width // image_size))* image_size,64((i %(target_width // image_size))+1)* image_size,65((i //(target_width // image_size))+1)* image_size
66)67# split the image68 split_img = resized_img.crop(box)69 processed_images.append(split_img)70assertlen(processed_images)== blocks
71if use_thumbnail andlen(processed_images)!=1:72 thumbnail_img = image.resize((image_size, image_size))73 processed_images.append(thumbnail_img)74return processed_images
7576defload_image(image_file, input_size=448, max_num=12):77 image = Image.open(image_file).convert('RGB')78 transform = build_transform(input_size=input_size)79 images = dynamic_preprocess(image, image_size=input_size, use_thumbnail=True, max_num=max_num)80 pixel_values =[transform(image)for image in images]81 pixel_values = torch.stack(pixel_values)82return pixel_values
8384defsplit_model(model_name):85 device_map ={}86 world_size = torch.cuda.device_count()87 config = AutoConfig.from_pretrained(model_path, trust_remote_code=True)88 num_layers = config.llm_config.num_hidden_layers
89# Since the first GPU will be used for ViT, treat it as half a GPU.90 num_layers_per_gpu = math.ceil(num_layers /(world_size -0.5))91 num_layers_per_gpu =[num_layers_per_gpu]* world_size
92 num_layers_per_gpu[0]= math.ceil(num_layers_per_gpu[0]*0.5)93 layer_cnt =094for i, num_layer inenumerate(num_layers_per_gpu):95for j inrange(num_layer):96 device_map[f'language_model.model.layers.{layer_cnt}']= i
97 layer_cnt +=198 device_map['vision_model']=099 device_map['mlp1']=0100 device_map['language_model.model.tok_embeddings']=0101 device_map['language_model.model.embed_tokens']=0102 device_map['language_model.output']=0103 device_map['language_model.model.norm']=0104 device_map['language_model.model.rotary_emb']=0105 device_map['language_model.lm_head']=0106 device_map[f'language_model.model.layers.{num_layers -1}']=0107108return device_map
109110# If you set `load_in_8bit=True`, you will need two 80GB GPUs.111# If you set `load_in_8bit=False`, you will need at least three 80GB GPUs.112path ='OpenGVLab/InternVL3-8B'113device_map = split_model('InternVL3-8B')114model = AutoModel.from_pretrained(115 path,116 torch_dtype=torch.bfloat16,117 load_in_8bit=False,118 low_cpu_mem_usage=True,119 use_flash_attn=True,120 trust_remote_code=True,121 device_map=device_map).eval()122tokenizer = AutoTokenizer.from_pretrained(path, trust_remote_code=True, use_fast=False)123124# set the max number of tiles in `max_num`125pixel_values = load_image('./examples/image1.jpg', max_num=12).to(torch.bfloat16).cuda()126generation_config =dict(max_new_tokens=1024, do_sample=True)127128# pure-text conversation (纯文本对话)129question ='Hello, who are you?'130response, history = model.chat(tokenizer,None, question, generation_config, history=None, return_history=True)131print(f'User: {question}\nAssistant: {response}')132133question ='Can you tell me a story?'134response, history = model.chat(tokenizer,None, question, generation_config, history=history, return_history=True)135print(f'User: {question}\nAssistant: {response}')136137# single-image single-round conversation (单图单轮对话)138question ='<image>\nPlease describe the image shortly.'139response = model.chat(tokenizer, pixel_values, question, generation_config)140print(f'User: {question}\nAssistant: {response}')141142# single-image multi-round conversation (单图多轮对话)143question ='<image>\nPlease describe the image in detail.'144response, history = model.chat(tokenizer, pixel_values, question, generation_config, history=None, return_history=True)145print(f'User: {question}\nAssistant: {response}')146147question ='Please write a poem according to the image.'148response, history = model.chat(tokenizer, pixel_values, question, generation_config, history=history, return_history=True)149print(f'User: {question}\nAssistant: {response}')150151# multi-image multi-round conversation, combined images (多图多轮对话,拼接图像)152pixel_values1 = load_image('./examples/image1.jpg', max_num=12).to(torch.bfloat16).cuda()153pixel_values2 = load_image('./examples/image2.jpg', max_num=12).to(torch.bfloat16).cuda()154pixel_values = torch.cat((pixel_values1, pixel_values2), dim=0)155156question ='<image>\nDescribe the two images in detail.'157response, history = model.chat(tokenizer, pixel_values, question, generation_config,158 history=None, return_history=True)159print(f'User: {question}\nAssistant: {response}')160161question ='What are the similarities and differences between these two images.'162response, history = model.chat(tokenizer, pixel_values, question, generation_config,163 history=history, return_history=True)164print(f'User: {question}\nAssistant: {response}')165166# multi-image multi-round conversation, separate images (多图多轮对话,独立图像)167pixel_values1 = load_image('./examples/image1.jpg', max_num=12).to(torch.bfloat16).cuda()168pixel_values2 = load_image('./examples/image2.jpg', max_num=12).to(torch.bfloat16).cuda()169pixel_values = torch.cat((pixel_values1, pixel_values2), dim=0)170num_patches_list =[pixel_values1.size(0), pixel_values2.size(0)]171172question ='Image-1: <image>\nImage-2: <image>\nDescribe the two images in detail.'173response, history = model.chat(tokenizer, pixel_values, question, generation_config,174 num_patches_list=num_patches_list,175 history=None, return_history=True)176print(f'User: {question}\nAssistant: {response}')177178question ='What are the similarities and differences between these two images.'179response, history = model.chat(tokenizer, pixel_values, question, generation_config,180 num_patches_list=num_patches_list,181 history=history, return_history=True)182print(f'User: {question}\nAssistant: {response}')183184# batch inference, single image per sample (单图批处理)185pixel_values1 = load_image('./examples/image1.jpg', max_num=12).to(torch.bfloat16).cuda()186pixel_values2 = load_image('./examples/image2.jpg', max_num=12).to(torch.bfloat16).cuda()187num_patches_list =[pixel_values1.size(0), pixel_values2.size(0)]188pixel_values = torch.cat((pixel_values1, pixel_values2), dim=0)189190questions =['<image>\nDescribe the image in detail.']*len(num_patches_list)191responses = model.batch_chat(tokenizer, pixel_values,192 num_patches_list=num_patches_list,193 questions=questions,194 generation_config=generation_config)195for question, response inzip(questions, responses):196print(f'User: {question}\nAssistant: {response}')197198# video multi-round conversation (视频多轮对话)199defget_index(bound, fps, max_frame, first_idx=0, num_segments=32):200if bound:201 start, end = bound[0], bound[1]202else:203 start, end =-100000,100000204 start_idx =max(first_idx,round(start * fps))205 end_idx =min(round(end * fps), max_frame)206 seg_size =float(end_idx - start_idx)/ num_segments
207 frame_indices = np.array([208int(start_idx +(seg_size /2)+ np.round(seg_size * idx))209for idx inrange(num_segments)210])211return frame_indices
212213defload_video(video_path, bound=None, input_size=448, max_num=1, num_segments=32):214 vr = VideoReader(video_path, ctx=cpu(0), num_threads=1)215 max_frame =len(vr)-1216 fps =float(vr.get_avg_fps())217218 pixel_values_list, num_patches_list =[],[]219 transform = build_transform(input_size=input_size)220 frame_indices = get_index(bound, fps, max_frame, first_idx=0, num_segments=num_segments)221for frame_index in frame_indices:222 img = Image.fromarray(vr[frame_index].asnumpy()).convert('RGB')223 img = dynamic_preprocess(img, image_size=input_size, use_thumbnail=True, max_num=max_num)224 pixel_values =[transform(tile)for tile in img]225 pixel_values = torch.stack(pixel_values)226 num_patches_list.append(pixel_values.shape[0])227 pixel_values_list.append(pixel_values)228 pixel_values = torch.cat(pixel_values_list)229return pixel_values, num_patches_list
230231video_path ='./examples/red-panda.mp4'232pixel_values, num_patches_list = load_video(video_path, num_segments=8, max_num=1)233pixel_values = pixel_values.to(torch.bfloat16).cuda()234video_prefix =''.join([f'Frame{i+1}: <image>\n'for i inrange(len(num_patches_list))])235question = video_prefix +'What is the red panda doing?'236# Frame1: <image>\nFrame2: <image>\n...\nFrame8: <image>\n{question}237response, history = model.chat(tokenizer, pixel_values, question, generation_config,238 num_patches_list=num_patches_list, history=None, return_history=True)239print(f'User: {question}\nAssistant: {response}')240241question ='Describe this video in detail.'242response, history = model.chat(tokenizer, pixel_values, question, generation_config,243 num_patches_list=num_patches_list, history=history, return_history=True)244print(f'User: {question}\nAssistant: {response}')
Streaming Output
Besides this method, you can also use the following code to get streamed output.
python
1from transformers import TextIteratorStreamer
2from threading import Thread
34# Initialize the streamer5streamer = TextIteratorStreamer(tokenizer, skip_prompt=True, skip_special_tokens=True, timeout=10)6# Define the generation configuration7generation_config =dict(max_new_tokens=1024, do_sample=False, streamer=streamer)8# Start the model chat in a separate thread9thread = Thread(target=model.chat, kwargs=dict(10 tokenizer=tokenizer, pixel_values=pixel_values, question=question,11 history=None, return_history=False, generation_config=generation_config,12))13thread.start()1415# Initialize an empty string to store the generated text16generated_text =''17# Loop through the streamer to get the new text as it is generated18for new_text in streamer:19if new_text == model.conv_template.sep:20break21 generated_text += new_text
22print(new_text, end='', flush=True)# Print each new chunk of generated text on the same line
Finetune
Many repositories now support fine-tuning of the InternVL series models, including InternVL, SWIFT, XTurner, and others. Please refer to their documentation for more details on fine-tuning.
Deployment
LMDeploy
LMDeploy is a toolkit for compressing, deploying, and serving LLMs & VLMs.
sh
1# if lmdeploy<0.7.3, you need to explicitly set chat_template_config=ChatTemplateConfig(model_name='internvl2_5')
2pip install lmdeploy>=0.7.3
LMDeploy abstracts the complex inference process of multi-modal Vision-Language Models (VLM) into an easy-to-use pipeline, similar to the Large Language Model (LLM) inference pipeline.
If ImportError occurs while executing this case, please install the required dependency packages as prompted.
Multi-images Inference
When dealing with multiple images, you can put them all in one list. Keep in mind that multiple images will lead to a higher number of input tokens, and as a result, the size of the context window typically needs to be increased.
There are two ways to do the multi-turn conversations with the pipeline. One is to construct messages according to the format of OpenAI and use above introduced method, the other is to use the pipeline.chat interface.
LMDeploy's api_server enables models to be easily packed into services with a single command. The provided RESTful APIs are compatible with OpenAI's interfaces. Below are an example of service startup:
This project is released under the MIT License. This project uses the pre-trained Qwen2.5 as a component, which is licensed under the Apache-2.0 License.
Citation
If you find this project useful in your research, please consider citing:
BibTeX
1@article{chen2024expanding,
2 title={Expanding Performance Boundaries of Open-Source Multimodal Models with Model, Data, and Test-Time Scaling},
3 author={Chen, Zhe and Wang, Weiyun and Cao, Yue and Liu, Yangzhou and Gao, Zhangwei and Cui, Erfei and Zhu, Jinguo and Ye, Shenglong and Tian, Hao and Liu, Zhaoyang and others},
4 journal={arXiv preprint arXiv:2412.05271},
5 year={2024}
6}
7@article{wang2024mpo,
8 title={Enhancing the Reasoning Ability of Multimodal Large Language Models via Mixed Preference Optimization},
9 author={Wang, Weiyun and Chen, Zhe and Wang, Wenhai and Cao, Yue and Liu, Yangzhou and Gao, Zhangwei and Zhu, Jinguo and Zhu, Xizhou and Lu, Lewei and Qiao, Yu and Dai, Jifeng},
10 journal={arXiv preprint arXiv:2411.10442},
11 year={2024}
12}
13@article{chen2024far,
14 title={How Far Are We to GPT-4V? Closing the Gap to Commercial Multimodal Models with Open-Source Suites},
15 author={Chen, Zhe and Wang, Weiyun and Tian, Hao and Ye, Shenglong and Gao, Zhangwei and Cui, Erfei and Tong, Wenwen and Hu, Kongzhi and Luo, Jiapeng and Ma, Zheng and others},
16 journal={arXiv preprint arXiv:2404.16821},
17 year={2024}
18}
19@inproceedings{chen2024internvl,
20 title={Internvl: Scaling up vision foundation models and aligning for generic visual-linguistic tasks},
21 author={Chen, Zhe and Wu, Jiannan and Wang, Wenhai and Su, Weijie and Chen, Guo and Xing, Sen and Zhong, Muyan and Zhang, Qinglong and Zhu, Xizhou and Lu, Lewei and others},
22 booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
23 pages={24185--24198},
24 year={2024}
25}
🚀 If you find these models useful
Help me test my AI-Powered Quantum Network Monitor Assistant with quantum-ready security checks:
The full Open Source Code for the Quantum Network Monitor Service available at my github repos ( repos with NetworkMonitor in the name) : Source Code Quantum Network Monitor. You will also find the code I use to quantize the models if you want to do it yourself GGUFModelBuilder
💬 How to test:
Choose an AI assistant type:
TurboLLM (GPT-4.1-mini)
HugLLM (Hugginface Open-source models)
TestLLM (Experimental CPU-only)
What I’m Testing
I’m pushing the limits of small open-source models for AI network monitoring, specifically:
Function calling against live network services
How small can a model go while still handling:
Automated Nmap security scans
Quantum-readiness checks
Network Monitoring tasks
🟡 TestLLM – Current experimental model (llama.cpp on 2 CPU threads on huggingface docker space):
✅ Zero-configuration setup
⏳ 30s load time (slow inference but no API costs) . No token limited as the cost is low.
🔧 Help wanted! If you’re into edge-device AI, let’s collaborate!
Other Assistants
🟢 TurboLLM – Uses gpt-4.1-mini :
**It performs very well but unfortunatly OpenAI charges per token. For this reason tokens usage is limited.
Create custom cmd processors to run .net code on Quantum Network Monitor Agents
Real-time network diagnostics and monitoring
Security Audits
Penetration testing (Nmap/Metasploit)
🔵 HugLLM – Latest Open-source models:
🌐 Runs on Hugging Face Inference API. Performs pretty well using the lastest models hosted on Novita.
💡 Example commands you could test:
"Give me info on my websites SSL certificate"
"Check if my server is using quantum safe encyption for communication"
"Run a comprehensive security audit on my server"
'"Create a cmd processor to .. (what ever you want)" Note you need to install a Quantum Network Monitor Agent to run the .net code on. This is a very flexible and powerful feature. Use with caution!
Final Word
I fund the servers used to create these model files, run the Quantum Network Monitor service, and pay for inference from Novita and OpenAI—all out of my own pocket. All the code behind the model creation and the Quantum Network Monitor project is open source. Feel free to use whatever you find helpful.
If you appreciate the work, please consider buying me a coffee ☕. Your support helps cover service costs and allows me to raise token limits for everyone.
I'm also open to job opportunities or sponsorship.