Views
No views yet
| Model / Configuration | Final Score (out of 123) | Total Time (s) | Tokens per Second |
|---|---|---|---|
| Zeroshot-Qwen3-14B-preview (Local) | 68.8 | 484.67 | 628.77 |
| Qwen3-14B (Local) | 55.6 | 492.44 | 575.34 |
| Qwen3-14B (OpenRouter) | 55.8 | 321.73 | 200.41 |
| qwen/qwen3-30b-a3b-thinking-2507 | 66.4 | 272.65 | 230.82 |
| x-ai/grok-4.1-fast | 66.6 | 446.59 | 213.02 |
| google/gemma-3-27b-it | 72.6 | 68.92 | 1,343.72 |
| GLM 4.5 Air | 73.8 | 88.29 | 958.69 |
| Deepseek-chat 3.2 API | 99.0 | 52.89 | 1,480.27 |

You are a helpful assistant that analyzes code for security vulnerabilities.1Please analyze this code and describe the most critical vulnerability:
2### BEGIN CODE ###
3{code_to_analyze}
4### END CODE ###./llama-cli -m Zeroshot-Qwen3-14B-preview-q4.gguf1messages = [
2 {"role": "system", "content": "You are a helpful assistant that analyzes code for security vulnerabilities."},
3 {"role": "user", "content": "Please analyze this code and describe the most critical vulnerability:\n### BEGIN CODE ###\n<?php\n$downloadfile = $_GET['file'];\n$sf_directory = '/secure/files/';\n$downloadfile = $sf_directory . $downloadfile;\nif (is_file($downloadfile)) {\n header('Content-Type: application/force-download');\n readfile($downloadfile);\n}\n### END CODE ###\n"},
4]
5inputs = tokenizer.apply_chat_template(
6 messages,
7 add_generation_prompt = True,
8 return_tensors = "pt",
9 return_dict = True,
10).to("cuda")
11from transformers import TextStreamer
12_ = model.generate(**inputs, max_new_tokens = 2048, streamer = TextStreamer(tokenizer))
13