Image-Text-to-Text
GGUF
German
English
llama.cpp
mtp
speculative-decoding
qwen3
multimodal
conversational
Instructions to use Davidmg0815/Qwen3.8-27B-MTP-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Davidmg0815/Qwen3.8-27B-MTP-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0 # Run inference directly in the terminal: llama cli -hf Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0 # Run inference directly in the terminal: llama cli -hf Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0
Use Docker
docker model run hf.co/Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0
- LM Studio
- Jan
- vLLM
How to use Davidmg0815/Qwen3.8-27B-MTP-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Davidmg0815/Qwen3.8-27B-MTP-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Davidmg0815/Qwen3.8-27B-MTP-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0
- Ollama
How to use Davidmg0815/Qwen3.8-27B-MTP-GGUF with Ollama:
ollama run hf.co/Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0
- Unsloth Desktop
- Pi
How to use Davidmg0815/Qwen3.8-27B-MTP-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use Davidmg0815/Qwen3.8-27B-MTP-GGUF with Docker Model Runner:
docker model run hf.co/Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0
- Lemonade
How to use Davidmg0815/Qwen3.8-27B-MTP-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0
Run and chat with the model
lemonade run user.Qwen3.8-27B-MTP-GGUF-Q8_0
List all available models
lemonade list
- Hermes Agent
How to use Davidmg0815/Qwen3.8-27B-MTP-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use Davidmg0815/Qwen3.8-27B-MTP-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "Davidmg0815/Qwen3.8-27B-MTP-GGUF:Q8_0" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
| { | |
| "modell": "Qwen3.6-27B Q5_K_M", | |
| "reasoning": false, | |
| "max_tokens": 900, | |
| "terminal": [ | |
| { | |
| "id": "term01", | |
| "titel": "Zeilen zaehlen", | |
| "ok": true, | |
| "grund": "", | |
| "antwort": "wc -l < log.txt", | |
| "tps": 34.47987114379584, | |
| "prompt_tps": 128.21813157476743, | |
| "tokens": 7, | |
| "prompt_tokens": 67, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 15, | |
| "abbruch": "stop", | |
| "ttft": 0.523, | |
| "sekunden": 0.77 | |
| }, | |
| { | |
| "id": "term02", | |
| "titel": "Muster mit Zeilennummer", | |
| "ok": true, | |
| "grund": "", | |
| "antwort": "grep -n \"WARN\" log.txt", | |
| "tps": 20.38860684649418, | |
| "prompt_tps": 363.8295660610541, | |
| "tokens": 9, | |
| "prompt_tokens": 63, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 22, | |
| "abbruch": "stop", | |
| "ttft": 0.173, | |
| "sekunden": 0.83 | |
| }, | |
| { | |
| "id": "term03", | |
| "titel": "Groesste Datei", | |
| "ok": true, | |
| "grund": "", | |
| "antwort": "ls -S | head -n 1", | |
| "tps": 20.343520690377716, | |
| "prompt_tps": 382.88170695626445, | |
| "tokens": 10, | |
| "prompt_tokens": 66, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 17, | |
| "abbruch": "stop", | |
| "ttft": 0.172, | |
| "sekunden": 0.9 | |
| }, | |
| { | |
| "id": "term04", | |
| "titel": "Spalte aus CSV", | |
| "ok": true, | |
| "grund": "", | |
| "antwort": "tail -n +2 messwerte.csv | cut -d ';' -f 1", | |
| "tps": 25.00729379402326, | |
| "prompt_tps": 357.90826336873613, | |
| "tokens": 18, | |
| "prompt_tokens": 83, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 42, | |
| "abbruch": "stop", | |
| "ttft": 0.232, | |
| "sekunden": 1.19 | |
| }, | |
| { | |
| "id": "term05", | |
| "titel": "Doppelte Zeilen", | |
| "ok": true, | |
| "grund": "", | |
| "antwort": "sort namen.txt | uniq -c | sort -rn", | |
| "tps": 23.020920261287444, | |
| "prompt_tps": 371.4540425629186, | |
| "tokens": 12, | |
| "prompt_tokens": 65, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 35, | |
| "abbruch": "stop", | |
| "ttft": 0.175, | |
| "sekunden": 0.92 | |
| }, | |
| { | |
| "id": "term06", | |
| "titel": "Summe einer Spalte", | |
| "ok": false, | |
| "grund": "Ausgabe falsch: '29'", | |
| "antwort": "awk -F';' 'NR>1{s+=$2}END{print s}' messwerte.csv", | |
| "tps": 26.959864966241557, | |
| "prompt_tps": 431.70388477430856, | |
| "tokens": 23, | |
| "prompt_tokens": 77, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 49, | |
| "abbruch": "stop", | |
| "ttft": 0.178, | |
| "sekunden": 1.3 | |
| }, | |
| { | |
| "id": "term07", | |
| "titel": "Numerisch sortieren", | |
| "ok": false, | |
| "grund": "Ausgabe falsch: 'pumpe;6;47.3;ok\\nmotor;6;231.5;ok\\nkompressor;6;18.7;warn\\nvent'", | |
| "antwort": "tail -n +2 messwerte.csv | sort -t ';' -k2 -rn", | |
| "tps": 32.70178723872993, | |
| "prompt_tps": 223.5276684557252, | |
| "tokens": 19, | |
| "prompt_tokens": 89, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 46, | |
| "abbruch": "stop", | |
| "ttft": 0.398, | |
| "sekunden": 1.2 | |
| }, | |
| { | |
| "id": "term08", | |
| "titel": "JSON-Feld lesen", | |
| "ok": true, | |
| "grund": "", | |
| "antwort": "jq -r '.port' config.json", | |
| "tps": 34.38474234366403, | |
| "prompt_tps": 355.5281667190083, | |
| "tokens": 9, | |
| "prompt_tokens": 60, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 25, | |
| "abbruch": "stop", | |
| "ttft": 0.169, | |
| "sekunden": 0.83 | |
| }, | |
| { | |
| "id": "term09", | |
| "titel": "Ersetzen in Datei", | |
| "ok": true, | |
| "grund": "", | |
| "antwort": "sed -i 's/WARN/ACHTUNG/g' log.txt", | |
| "tps": 32.9824821791526, | |
| "prompt_tps": 457.21932588028665, | |
| "tokens": 16, | |
| "prompt_tokens": 82, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 33, | |
| "abbruch": "stop", | |
| "ttft": 0.179, | |
| "sekunden": 1.07 | |
| }, | |
| { | |
| "id": "term10", | |
| "titel": "Gefiltert zaehlen", | |
| "ok": false, | |
| "grund": "Ausgabe falsch: ''", | |
| "antwort": "awk -F';' 'NR>1 && $1==6{c++}END{print c}' messwerte.csv", | |
| "tps": 26.976314795609454, | |
| "prompt_tps": 469.46176981928306, | |
| "tokens": 27, | |
| "prompt_tokens": 91, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 56, | |
| "abbruch": "stop", | |
| "ttft": 0.194, | |
| "sekunden": 1.64 | |
| } | |
| ], | |
| "code": [ | |
| { | |
| "id": "code01", | |
| "titel": "Intervalle zusammenfassen", | |
| "ok": true, | |
| "grund": "", | |
| "bestanden": 5, | |
| "gesamt": 5, | |
| "code": "def merge_intervalle(intervalle):\n if not intervalle:\n return []\n \n # Sortiere die Intervalle nach dem Startwert\n intervalle.sort(key=lambda x: x[0])\n \n merged = [intervalle[0]]\n \n for current_start, current_end in intervalle[1:]:\n last_start, last_end = merged[-1]\n \n # Wenn das aktuelle Intervall mit dem letzten zusammengefassten Intervall\n # ueberlappt oder direkt aneinander grenzt, fusioniere sie\n if current_start <= last_end:\n merged[-1] = (last_start, max(last_end, current_end))\n else:\n merged.a", | |
| "tps": 26.448082185351524, | |
| "prompt_tps": 301.79054276055604, | |
| "tokens": 173, | |
| "prompt_tokens": 124, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 672, | |
| "abbruch": "stop", | |
| "ttft": 0.411, | |
| "sekunden": 7.18 | |
| }, | |
| { | |
| "id": "code02", | |
| "titel": "Verschachteltes dict flach machen", | |
| "ok": true, | |
| "grund": "", | |
| "bestanden": 6, | |
| "gesamt": 6, | |
| "code": "def flatten(d, sep='.'):\n result = {}\n for key, value in d.items():\n if isinstance(value, dict):\n if not value:\n continue\n for k, v in flatten(value, sep).items():\n result[f\"{key}{sep}{k}\"] = v\n else:\n result[key] = value\n return result", | |
| "tps": 26.937230742481916, | |
| "prompt_tps": 272.61215205309196, | |
| "tokens": 88, | |
| "prompt_tokens": 93, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 336, | |
| "abbruch": "stop", | |
| "ttft": 0.341, | |
| "sekunden": 3.83 | |
| }, | |
| { | |
| "id": "code03", | |
| "titel": "Roemische Zahlen lesen", | |
| "ok": true, | |
| "grund": "", | |
| "bestanden": 6, | |
| "gesamt": 6, | |
| "code": "def roemisch_zu_int(s: str) -> int:\n romer_werte = {\n 'I': 1,\n 'V': 5,\n 'X': 10,\n 'L': 50,\n 'C': 100,\n 'D': 500,\n 'M': 1000\n }\n \n ergebnis = 0\n i = 0\n \n while i < len(s):\n # Wenn der aktuelle Wert kleiner ist als der nächste, subtrahieren\n if i + 1 < len(s) and romer_werte[s[i]] < romer_werte[s[i + 1]]:\n ergebnis += romer_werte[s[i + 1]] - romer_werte[s[i]]\n i += 2\n else:\n ergebnis += romer_werte[s[i]]\n i += 1\n \n return ergebnis", | |
| "tps": 25.533285361018528, | |
| "prompt_tps": 460.6855212365435, | |
| "tokens": 225, | |
| "prompt_tokens": 87, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 595, | |
| "abbruch": "stop", | |
| "ttft": 0.189, | |
| "sekunden": 9.22 | |
| }, | |
| { | |
| "id": "code04", | |
| "titel": "Wortfrequenz mit Gleichstand", | |
| "ok": true, | |
| "grund": "", | |
| "bestanden": 5, | |
| "gesamt": 5, | |
| "code": "import re\nfrom collections import Counter\n\ndef top_woerter(text, n):\n words = re.findall(r'[a-zA-Z0-9]+', text.lower())\n counts = Counter(words)\n sorted_words = sorted(counts.items(), key=lambda x: (-x[1], x[0]))\n return sorted_words[:n]", | |
| "tps": 26.513058841425728, | |
| "prompt_tps": 452.7722191902654, | |
| "tokens": 80, | |
| "prompt_tokens": 112, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 263, | |
| "abbruch": "stop", | |
| "ttft": 0.247, | |
| "sekunden": 3.65 | |
| }, | |
| { | |
| "id": "code05", | |
| "titel": "Klammern pruefen", | |
| "ok": true, | |
| "grund": "", | |
| "bestanden": 7, | |
| "gesamt": 7, | |
| "code": "def klammern_ok(s):\n stack = []\n matching = {')': '(', ']': '[', '}': '{'}\n for char in s:\n if char in matching.values():\n stack.append(char)\n elif char in matching:\n if not stack or stack[-1] != matching[char]:\n return False\n stack.pop()\n return not stack", | |
| "tps": 25.537400926811213, | |
| "prompt_tps": 465.3253311477143, | |
| "tokens": 91, | |
| "prompt_tokens": 88, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 344, | |
| "abbruch": "stop", | |
| "ttft": 0.189, | |
| "sekunden": 3.98 | |
| }, | |
| { | |
| "id": "code06", | |
| "titel": "Suche im rotierten Feld", | |
| "ok": true, | |
| "grund": "", | |
| "bestanden": 6, | |
| "gesamt": 6, | |
| "code": "def suche_rotiert(arr, ziel):\n if not arr:\n return -1\n \n links, rechts = 0, len(arr) - 1\n \n while links <= rechts:\n mitte = (links + rechts) // 2\n \n if arr[mitte] == ziel:\n return mitte\n \n # Prüfen, ob der linke Teil sortiert ist\n if arr[links] <= arr[mitte]:\n # Ziel liegt im linken sortierten Teil\n if arr[links] <= ziel < arr[mitte]:\n rechts = mitte - 1\n else:\n links = mitte + 1\n else:\n # Der rechte Teil ist sortiert\n if arr[mit", | |
| "tps": 26.017769616292536, | |
| "prompt_tps": 515.279256820089, | |
| "tokens": 200, | |
| "prompt_tokens": 105, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 746, | |
| "abbruch": "stop", | |
| "ttft": 0.204, | |
| "sekunden": 8.1 | |
| }, | |
| { | |
| "id": "code07", | |
| "titel": "Werktage zwischen zwei Daten", | |
| "ok": true, | |
| "grund": "", | |
| "bestanden": 5, | |
| "gesamt": 5, | |
| "code": "from datetime import datetime, timedelta\n\ndef werktage(von, bis):\n if von > bis:\n return 0\n \n start_date = datetime.strptime(von, '%Y-%m-%d')\n end_date = datetime.strptime(bis, '%Y-%m-%d')\n \n count = 0\n current_date = start_date\n \n while current_date <= end_date:\n if current_date.weekday() < 5: # Montag=0 bis Freitag=4\n count += 1\n current_date += timedelta(days=1)\n \n return count", | |
| "tps": 25.725076882900225, | |
| "prompt_tps": 249.19496183163832, | |
| "tokens": 132, | |
| "prompt_tokens": 90, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 463, | |
| "abbruch": "stop", | |
| "ttft": 0.361, | |
| "sekunden": 5.72 | |
| }, | |
| { | |
| "id": "code08", | |
| "titel": "LRU-Zwischenspeicher", | |
| "ok": true, | |
| "grund": "", | |
| "bestanden": 5, | |
| "gesamt": 5, | |
| "code": "class LRU:\n def __init__(self, groesse):\n self.groesse = groesse\n self.cache = {}\n self.order = []\n\n def _move_to_end(self, schluessel):\n if schluessel in self.order:\n self.order.remove(schluessel)\n self.order.append(schluessel)\n\n def get(self, schluessel):\n if schluessel in self.cache:\n self._move_to_end(schluessel)\n return self.cache[schluessel]\n return None\n\n def put(self, schluessel, wert):\n if schluessel in self.cache:\n self._move_to_end(schluessel)\n else:\n if ", | |
| "tps": 26.03375405208932, | |
| "prompt_tps": 526.9768566028615, | |
| "tokens": 222, | |
| "prompt_tokens": 133, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 808, | |
| "abbruch": "stop", | |
| "ttft": 0.252, | |
| "sekunden": 9.01 | |
| }, | |
| { | |
| "id": "code09", | |
| "titel": "Wiederholung nach Fehlschlag", | |
| "ok": true, | |
| "grund": "", | |
| "bestanden": 4, | |
| "gesamt": 4, | |
| "code": "def wiederhole(fn, versuche=3):\n for i in range(versuche):\n try:\n return fn()\n except Exception as e:\n if i == versuche - 1:\n raise", | |
| "tps": 23.801104371242825, | |
| "prompt_tps": 505.7107143879469, | |
| "tokens": 56, | |
| "prompt_tokens": 106, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 199, | |
| "abbruch": "stop", | |
| "ttft": 0.21, | |
| "sekunden": 2.8 | |
| }, | |
| { | |
| "id": "code10", | |
| "titel": "CSV sortieren und als JSON", | |
| "ok": true, | |
| "grund": "", | |
| "bestanden": 3, | |
| "gesamt": 3, | |
| "code": "import csv\nimport json\nimport io\n\ndef csv_nach_json(text, spalte):\n reader = csv.DictReader(io.StringIO(text), delimiter=';')\n rows = list(reader)\n \n if not rows:\n return json.dumps([])\n \n # Check if all values in the specified column are numeric\n all_numeric = True\n for row in rows:\n val = row[spalte].strip()\n if val == '':\n all_numeric = False\n break\n try:\n float(val)\n except ValueError:\n all_numeric = False\n break\n \n if all_numeric:\n rows.sort(key=lambda r: float(r[", | |
| "tps": 26.52216873431376, | |
| "prompt_tps": 579.7154373199801, | |
| "tokens": 192, | |
| "prompt_tokens": 127, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 745, | |
| "abbruch": "stop", | |
| "ttft": 0.219, | |
| "sekunden": 7.69 | |
| } | |
| ], | |
| "messungen": [ | |
| { | |
| "tps": 34.47987114379584, | |
| "prompt_tps": 128.21813157476743, | |
| "tokens": 7, | |
| "prompt_tokens": 67, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 15, | |
| "abbruch": "stop", | |
| "ttft": 0.523, | |
| "sekunden": 0.77 | |
| }, | |
| { | |
| "tps": 20.38860684649418, | |
| "prompt_tps": 363.8295660610541, | |
| "tokens": 9, | |
| "prompt_tokens": 63, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 22, | |
| "abbruch": "stop", | |
| "ttft": 0.173, | |
| "sekunden": 0.83 | |
| }, | |
| { | |
| "tps": 20.343520690377716, | |
| "prompt_tps": 382.88170695626445, | |
| "tokens": 10, | |
| "prompt_tokens": 66, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 17, | |
| "abbruch": "stop", | |
| "ttft": 0.172, | |
| "sekunden": 0.9 | |
| }, | |
| { | |
| "tps": 25.00729379402326, | |
| "prompt_tps": 357.90826336873613, | |
| "tokens": 18, | |
| "prompt_tokens": 83, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 42, | |
| "abbruch": "stop", | |
| "ttft": 0.232, | |
| "sekunden": 1.19 | |
| }, | |
| { | |
| "tps": 23.020920261287444, | |
| "prompt_tps": 371.4540425629186, | |
| "tokens": 12, | |
| "prompt_tokens": 65, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 35, | |
| "abbruch": "stop", | |
| "ttft": 0.175, | |
| "sekunden": 0.92 | |
| }, | |
| { | |
| "tps": 26.959864966241557, | |
| "prompt_tps": 431.70388477430856, | |
| "tokens": 23, | |
| "prompt_tokens": 77, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 49, | |
| "abbruch": "stop", | |
| "ttft": 0.178, | |
| "sekunden": 1.3 | |
| }, | |
| { | |
| "tps": 32.70178723872993, | |
| "prompt_tps": 223.5276684557252, | |
| "tokens": 19, | |
| "prompt_tokens": 89, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 46, | |
| "abbruch": "stop", | |
| "ttft": 0.398, | |
| "sekunden": 1.2 | |
| }, | |
| { | |
| "tps": 34.38474234366403, | |
| "prompt_tps": 355.5281667190083, | |
| "tokens": 9, | |
| "prompt_tokens": 60, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 25, | |
| "abbruch": "stop", | |
| "ttft": 0.169, | |
| "sekunden": 0.83 | |
| }, | |
| { | |
| "tps": 32.9824821791526, | |
| "prompt_tps": 457.21932588028665, | |
| "tokens": 16, | |
| "prompt_tokens": 82, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 33, | |
| "abbruch": "stop", | |
| "ttft": 0.179, | |
| "sekunden": 1.07 | |
| }, | |
| { | |
| "tps": 26.976314795609454, | |
| "prompt_tps": 469.46176981928306, | |
| "tokens": 27, | |
| "prompt_tokens": 91, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 56, | |
| "abbruch": "stop", | |
| "ttft": 0.194, | |
| "sekunden": 1.64 | |
| }, | |
| { | |
| "tps": 26.448082185351524, | |
| "prompt_tps": 301.79054276055604, | |
| "tokens": 173, | |
| "prompt_tokens": 124, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 672, | |
| "abbruch": "stop", | |
| "ttft": 0.411, | |
| "sekunden": 7.18 | |
| }, | |
| { | |
| "tps": 26.937230742481916, | |
| "prompt_tps": 272.61215205309196, | |
| "tokens": 88, | |
| "prompt_tokens": 93, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 336, | |
| "abbruch": "stop", | |
| "ttft": 0.341, | |
| "sekunden": 3.83 | |
| }, | |
| { | |
| "tps": 25.533285361018528, | |
| "prompt_tps": 460.6855212365435, | |
| "tokens": 225, | |
| "prompt_tokens": 87, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 595, | |
| "abbruch": "stop", | |
| "ttft": 0.189, | |
| "sekunden": 9.22 | |
| }, | |
| { | |
| "tps": 26.513058841425728, | |
| "prompt_tps": 452.7722191902654, | |
| "tokens": 80, | |
| "prompt_tokens": 112, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 263, | |
| "abbruch": "stop", | |
| "ttft": 0.247, | |
| "sekunden": 3.65 | |
| }, | |
| { | |
| "tps": 25.537400926811213, | |
| "prompt_tps": 465.3253311477143, | |
| "tokens": 91, | |
| "prompt_tokens": 88, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 344, | |
| "abbruch": "stop", | |
| "ttft": 0.189, | |
| "sekunden": 3.98 | |
| }, | |
| { | |
| "tps": 26.017769616292536, | |
| "prompt_tps": 515.279256820089, | |
| "tokens": 200, | |
| "prompt_tokens": 105, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 746, | |
| "abbruch": "stop", | |
| "ttft": 0.204, | |
| "sekunden": 8.1 | |
| }, | |
| { | |
| "tps": 25.725076882900225, | |
| "prompt_tps": 249.19496183163832, | |
| "tokens": 132, | |
| "prompt_tokens": 90, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 463, | |
| "abbruch": "stop", | |
| "ttft": 0.361, | |
| "sekunden": 5.72 | |
| }, | |
| { | |
| "tps": 26.03375405208932, | |
| "prompt_tps": 526.9768566028615, | |
| "tokens": 222, | |
| "prompt_tokens": 133, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 808, | |
| "abbruch": "stop", | |
| "ttft": 0.252, | |
| "sekunden": 9.01 | |
| }, | |
| { | |
| "tps": 23.801104371242825, | |
| "prompt_tps": 505.7107143879469, | |
| "tokens": 56, | |
| "prompt_tokens": 106, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 199, | |
| "abbruch": "stop", | |
| "ttft": 0.21, | |
| "sekunden": 2.8 | |
| }, | |
| { | |
| "tps": 26.52216873431376, | |
| "prompt_tps": 579.7154373199801, | |
| "tokens": 192, | |
| "prompt_tokens": 127, | |
| "denk_zeichen": 0, | |
| "antwort_zeichen": 745, | |
| "abbruch": "stop", | |
| "ttft": 0.219, | |
| "sekunden": 7.69 | |
| } | |
| ], | |
| "summe": { | |
| "terminal_ok": 7, | |
| "terminal_n": 10, | |
| "code_ok": 10, | |
| "code_n": 10, | |
| "code_testfaelle_ok": 52, | |
| "code_testfaelle_n": 52, | |
| "tps_median": 26.4, | |
| "tps_min": 20.3, | |
| "tps_max": 34.5, | |
| "prompt_tps_median": 431.7, | |
| "tokens_gesamt": 1609, | |
| "sekunden_gesamt": 71.8, | |
| "anfragen": 20, | |
| "tokens_je_aufgabe": 80.5, | |
| "denk_zeichen_gesamt": 0, | |
| "antwort_zeichen_gesamt": 5511, | |
| "am_limit": 0 | |
| } | |
| } |