Spaces:
Running
Running
Upload 53 files
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- Dockerfile +15 -0
- README.md +4 -5
- app.py +41 -0
- demo/__init__.py +2 -0
- generated_images/.gitkeep +0 -0
- har_and_cookies/.gitkeep +0 -0
- har_and_cookies/.usage/2025-02-27.jsonl +99 -0
- logging/2025-02-20.jsonl +244 -0
- logging/2025-02-21.jsonl +0 -0
- logging/2025-02-22.jsonl +0 -0
- logging/2025-02-23.jsonl +0 -0
- logging/2025-02-24.jsonl +359 -0
- logging/2025-02-27.jsonl +0 -0
- logging/2025-02-28.jsonl +0 -0
- logging/2025-03-01.jsonl +0 -0
- logging/2025-03-02.jsonl +0 -0
- logging/2025-03-09.jsonl +0 -0
- logging/2025-03-10.jsonl +0 -0
- logging/2025-03-11.jsonl +0 -0
- logging/2025-03-12.jsonl +0 -0
- logging/2025-03-13.jsonl +0 -0
- logging/2025-03-14.jsonl +0 -0
- logging/2025-03-15.jsonl +0 -0
- logging/2025-03-16.jsonl +0 -0
- logging/2025-03-17.jsonl +0 -0
- logging/2025-03-18.jsonl +0 -0
- logging/2025-03-19.jsonl +0 -0
- logging/2025-03-20.jsonl +0 -0
- logging/2025-03-21.jsonl +287 -0
- requirements.txt +19 -0
- save.py +27 -0
- start +3 -0
- usage/2025-02-20.jsonl +13 -0
- usage/2025-02-21.jsonl +382 -0
- usage/2025-02-22.jsonl +464 -0
- usage/2025-02-23.jsonl +313 -0
- usage/2025-02-24.jsonl +82 -0
- usage/2025-02-27.jsonl +99 -0
- usage/2025-02-28.jsonl +379 -0
- usage/2025-03-02.jsonl +221 -0
- usage/2025-03-09.jsonl +142 -0
- usage/2025-03-10.jsonl +319 -0
- usage/2025-03-11.jsonl +378 -0
- usage/2025-03-12.jsonl +204 -0
- usage/2025-03-13.jsonl +331 -0
- usage/2025-03-14.jsonl +383 -0
- usage/2025-03-15.jsonl +152 -0
- usage/2025-03-16.jsonl +277 -0
- usage/2025-03-17.jsonl +343 -0
- usage/2025-03-18.jsonl +159 -0
Dockerfile
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.9
|
2 |
+
|
3 |
+
RUN useradd -m -u 1000 user
|
4 |
+
USER user
|
5 |
+
ENV PATH="/home/user/.local/bin:$PATH"
|
6 |
+
# ^ when run as `user`, pip installs executables there
|
7 |
+
|
8 |
+
WORKDIR /app
|
9 |
+
|
10 |
+
COPY --chown=user ./requirements.txt requirements.txt
|
11 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
12 |
+
|
13 |
+
COPY --chown=user . /app
|
14 |
+
|
15 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860", "--no-access-log"]
|
README.md
CHANGED
@@ -1,11 +1,10 @@
|
|
1 |
---
|
2 |
-
title: G4f
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: docker
|
7 |
pinned: false
|
8 |
-
license: mit
|
9 |
---
|
10 |
|
11 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
+
title: G4f Dev2
|
3 |
+
emoji: 🌍
|
4 |
+
colorFrom: yellow
|
5 |
+
colorTo: green
|
6 |
sdk: docker
|
7 |
pinned: false
|
|
|
8 |
---
|
9 |
|
10 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from fastapi import FastAPI
|
2 |
+
|
3 |
+
import demo
|
4 |
+
import g4f.api
|
5 |
+
import g4f.Provider
|
6 |
+
from g4f.Provider import BackendApi
|
7 |
+
|
8 |
+
BackendApi.working = True
|
9 |
+
BackendApi.url = demo.url
|
10 |
+
BackendApi.headers = demo.headers
|
11 |
+
|
12 |
+
g4f.Provider.__map__["Feature"] = g4f.Provider.BackendApi
|
13 |
+
|
14 |
+
def create_app():
|
15 |
+
g4f.debug.logging = True
|
16 |
+
g4f.api.AppConfig.gui = True
|
17 |
+
g4f.api.AppConfig.demo = True
|
18 |
+
|
19 |
+
app = FastAPI()
|
20 |
+
|
21 |
+
# Add CORS middleware
|
22 |
+
app.add_middleware(
|
23 |
+
g4f.api.CORSMiddleware,
|
24 |
+
allow_origin_regex=".*",
|
25 |
+
allow_credentials=True,
|
26 |
+
allow_methods=["*"],
|
27 |
+
allow_headers=["*"],
|
28 |
+
)
|
29 |
+
|
30 |
+
api = g4f.api.Api(app)
|
31 |
+
|
32 |
+
api.register_routes()
|
33 |
+
api.register_authorization()
|
34 |
+
api.register_validation_exception_handler()
|
35 |
+
|
36 |
+
gui_app = g4f.api.WSGIMiddleware(g4f.api.get_gui_app(g4f.api.AppConfig.demo))
|
37 |
+
app.mount("/", gui_app)
|
38 |
+
|
39 |
+
return app
|
40 |
+
|
41 |
+
app = create_app()
|
demo/__init__.py
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
url = "https://ahe.hopto.org"
|
2 |
+
headers = {"Authorization": "Basic Z2dnOmc0Zl8="}
|
generated_images/.gitkeep
ADDED
File without changes
|
har_and_cookies/.gitkeep
ADDED
File without changes
|
har_and_cookies/.usage/2025-02-27.jsonl
ADDED
@@ -0,0 +1,99 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"user": "Soska5242", "model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
2 |
+
{"user": "Soska5242", "model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 47, "completion_tokens": 0, "total_tokens": 47}
|
3 |
+
{"user": "Soska5242", "model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 113, "completion_tokens": 0, "total_tokens": 113}
|
4 |
+
{"user": "Soska5242", "model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
5 |
+
{"user": "Soska5242", "model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 94, "completion_tokens": 0, "total_tokens": 94}
|
6 |
+
{"user": "Soska5242", "model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
7 |
+
{"user": "Soska5242", "model": "janus-pro-7b", "provider": "HuggingSpace", "prompt_tokens": 73, "completion_tokens": 0, "total_tokens": 73}
|
8 |
+
{"user": "zigblayck", "model": "flux", "provider": "G4F", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
9 |
+
{"user": "ming-520", "model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 46, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 156, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 202}
|
10 |
+
{"user": "ming-520", "model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 18, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 224, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 242}
|
11 |
+
{"user": "ming-520", "model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 23, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 253, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 276}
|
12 |
+
{"user": "ming-520", "model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 93, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 635, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 728}
|
13 |
+
{"user": "ming-520", "model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 227, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 712, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 939}
|
14 |
+
{"user": "ming-520", "model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 63, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 258, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 321}
|
15 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 464, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 9530, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 9994}
|
16 |
+
{"user": "roxky", "provider": "Gemini", "prompt_tokens": 22, "completion_tokens": 0, "total_tokens": 22}
|
17 |
+
{"user": "roxky", "model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingChat", "prompt_tokens": 508, "completion_tokens": 0, "total_tokens": 508}
|
18 |
+
{"user": "roxky", "model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingChat"}
|
19 |
+
{"user": "roxky", "model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingChat"}
|
20 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 140, "completion_tokens": 17, "total_tokens": 157}
|
21 |
+
{"user": "roxky", "model": "voodoohop-flux-1-schnell", "provider": "HuggingSpace"}
|
22 |
+
{"user": "roxky", "model": "stabilityai-stable-diffusion-3-5-large", "provider": "HuggingSpace"}
|
23 |
+
{"user": "roxky", "model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace"}
|
24 |
+
{"user": "roxky", "model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace"}
|
25 |
+
{"user": "roxky", "provider": "Gemini"}
|
26 |
+
{"user": "JulfyCode", "model": "deepseek-r1", "provider": "DeepSeekAPI"}
|
27 |
+
{"user": "JulfyCode", "model": "gemini-2.0-flash-thinking", "provider": "Gemini"}
|
28 |
+
{"user": "roxky", "model": "qwen-qvq-72b-preview", "provider": "HuggingSpace"}
|
29 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 442, "total_tokens": 457, "completion_tokens": 15, "prompt_tokens_details": null}
|
30 |
+
{"user": "roxky", "model": "openai", "provider": "PollinationsAI", "completion_tokens": 38, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 279, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 317}
|
31 |
+
{"user": "roxky", "model": "openai", "provider": "PollinationsAI", "completion_tokens": 88, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 941, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1029}
|
32 |
+
{"user": "roxky", "model": "deepseek-v3", "provider": "DeepSeekAPI"}
|
33 |
+
{"user": "roxky", "model": "openai", "provider": "PollinationsAI", "completion_tokens": 41, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 825, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 866}
|
34 |
+
{"user": "roxky", "model": "openai", "provider": "PollinationsAI", "completion_tokens": 58, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 879, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 937}
|
35 |
+
{"user": "roxky", "model": "qwen-qvq-72b-preview", "provider": "HuggingSpace"}
|
36 |
+
{"user": "roxky", "model": "auto", "provider": "OpenaiChat"}
|
37 |
+
{"user": "DeLtA456", "model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 353, "completion_tokens": 0, "total_tokens": 353}
|
38 |
+
{"user": "DeLtA456", "model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 771, "completion_tokens": 0, "total_tokens": 771}
|
39 |
+
{"user": "DeLtA456", "model": "deepseek-v3", "provider": "DeepSeekAPI", "prompt_tokens": 266, "completion_tokens": 0, "total_tokens": 266}
|
40 |
+
{"user": "DeLtA456", "model": "deepseek-v3", "provider": "DeepSeekAPI", "prompt_tokens": 918, "completion_tokens": 0, "total_tokens": 918}
|
41 |
+
{"user": "DeLtA456", "model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 1128, "completion_tokens": 0, "total_tokens": 1128}
|
42 |
+
{"user": "roxky", "model": "o3-mini", "provider": "OpenaiChat"}
|
43 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 29, "completion_tokens": 828, "total_tokens": 857}
|
44 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 1031, "completion_tokens": 806, "total_tokens": 1837}
|
45 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 29, "completion_tokens": 0, "total_tokens": 29}
|
46 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 543, "completion_tokens": 1002, "total_tokens": 1545}
|
47 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 543, "completion_tokens": 852, "total_tokens": 1395}
|
48 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 1618, "completion_tokens": 1421, "total_tokens": 3039}
|
49 |
+
{"user": "avanpost20", "model": "deepseek-v3", "provider": "DeepSeekAPI", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
50 |
+
{"user": "avanpost20", "model": "deepseek-v3", "provider": "DeepSeekAPI", "prompt_tokens": 60, "completion_tokens": 0, "total_tokens": 60}
|
51 |
+
{"user": "avanpost20", "model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 202, "completion_tokens": 264, "total_tokens": 466}
|
52 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 2689, "completion_tokens": 853, "total_tokens": 3542}
|
53 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 3795, "completion_tokens": 1465, "total_tokens": 5260}
|
54 |
+
{"user": "roxky", "model": "o3-mini", "provider": "OpenaiChat"}
|
55 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 715, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2701, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3416}
|
56 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 733, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3451, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 4184}
|
57 |
+
{"user": "roxky", "model": "auto", "provider": "OpenaiChat"}
|
58 |
+
{"user": "jhordanjw123", "model": "o3-mini", "provider": "OpenaiChat", "prompt_tokens": 328, "completion_tokens": 0, "total_tokens": 328}
|
59 |
+
{"user": "jhordanjw123", "model": "claude", "provider": "PollinationsAI", "completion_tokens": 242, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 423, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 665}
|
60 |
+
{"user": "roxky", "model": "auto", "provider": "OpenaiChat"}
|
61 |
+
{"user": "Mickeii", "model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
62 |
+
{"user": "roxky", "model": "auto", "provider": "OpenaiChat"}
|
63 |
+
{"user": "roxky", "model": "auto", "provider": "OpenaiChat"}
|
64 |
+
{"user": "roxky", "model": "auto", "provider": "OpenaiChat"}
|
65 |
+
{"user": "roxky", "model": "auto", "provider": "OpenaiChat"}
|
66 |
+
{"user": "venderu", "model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 35, "completion_tokens": 0, "total_tokens": 35}
|
67 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 10, "completion_tokens": 28, "total_tokens": 38}
|
68 |
+
{"user": "roxky", "model": "auto", "provider": "OpenaiChat"}
|
69 |
+
{"user": "roxky", "model": "auto", "provider": "OpenaiChat"}
|
70 |
+
{"user": "roxky", "model": "auto", "provider": "OpenaiChat"}
|
71 |
+
{"model": "gpt-4o-mini", "provider": "PollinationsAI", "completion_tokens": 30, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 142, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 172}
|
72 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 50, "completion_tokens": 10, "total_tokens": 60}
|
73 |
+
{"model": "gpt-4o-mini", "provider": "PollinationsAI", "completion_tokens": 15, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 188, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 203}
|
74 |
+
{"model": "gpt-4o-mini", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 213, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 223}
|
75 |
+
{"model": "gpt-4o-mini", "provider": "Liaobots", "prompt_tokens": 126, "completion_tokens": 87, "total_tokens": 213}
|
76 |
+
{"model": "gpt-4o-mini", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 330, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 340}
|
77 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 512, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 164, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 676}
|
78 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 12, "completion_tokens": 10, "total_tokens": 22}
|
79 |
+
{"user": "Emrik420", "model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
80 |
+
{"user": "Emrik420", "model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 35, "completion_tokens": 0, "total_tokens": 35}
|
81 |
+
{"user": "roxky", "model": "llama-3", "provider": "HuggingFace"}
|
82 |
+
{"user": "roxky", "model": "llama-3", "provider": "HuggingFace"}
|
83 |
+
{"user": "roxky", "model": "gemini-2.0", "provider": "PollinationsAI", "completion_tokens": 11, "prompt_tokens": 38, "total_tokens": 49}
|
84 |
+
{"user": "roxky", "model": "gemini-thinking", "provider": "PollinationsAI", "completion_tokens": 21, "prompt_tokens": 50, "total_tokens": 71}
|
85 |
+
{"user": "roxky", "model": "auto", "provider": "OpenaiChat"}
|
86 |
+
{"user": "WoxC", "model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
87 |
+
{"user": "Alex679", "model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 1, "total_tokens": 9}
|
88 |
+
{"user": "Alex679", "model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 9, "completion_tokens": 0, "total_tokens": 9}
|
89 |
+
{"user": "Alex679", "model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
90 |
+
{"user": "AstroChan", "model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 270, "completion_tokens": 0, "total_tokens": 270}
|
91 |
+
{"user": "AstroChan", "model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 112, "completion_tokens": 0, "total_tokens": 112}
|
92 |
+
{"user": "AstroChan", "model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 315, "completion_tokens": 0, "total_tokens": 315}
|
93 |
+
{"user": "AstroChan", "model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 511, "completion_tokens": 0, "total_tokens": 511}
|
94 |
+
{"user": "AstroChan", "model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 668, "completion_tokens": 0, "total_tokens": 668}
|
95 |
+
{"user": "AstroChan", "model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 823, "completion_tokens": 0, "total_tokens": 823}
|
96 |
+
{"user": "AstroChan", "model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 905, "completion_tokens": 0, "total_tokens": 905}
|
97 |
+
{"user": "AstroChan", "model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 1070, "completion_tokens": 0, "total_tokens": 1070}
|
98 |
+
{"user": "AstroChan", "model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 1308, "completion_tokens": 0, "total_tokens": 1308}
|
99 |
+
{"user": "thingthatis", "model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 86, "completion_tokens": 0, "total_tokens": 86}
|
logging/2025-02-20.jsonl
ADDED
@@ -0,0 +1,244 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 429: Rate limit", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4"}}
|
2 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
3 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: You have reached your request limit for the day.", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "gpt-4o"}}
|
4 |
+
{"type": "message", "message": "ResponseStatusError: Response 403: ", "error": "ResponseStatusError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "gpt-4o"}}
|
5 |
+
{"type": "message", "message": "NameError: name 'items' is not defined", "error": "NameError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
6 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: You have reached your request limit for the day.", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "o3-mini"}}
|
7 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: You have reached your request limit for the day.", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "o3-mini"}}
|
8 |
+
{"type": "message", "message": "AttributeError: 'SimpleCookie' object has no attribute 'jar'", "error": "AttributeError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
9 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: ", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "flux"}}
|
10 |
+
{"type": "message", "message": "NotImplementedError: ", "error": "NotImplementedError", "provider": {"name": "OpenaiAccount", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "dall-e-3"}}
|
11 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "midjourney"}}
|
12 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-r1"}}
|
13 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
14 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-r1"}}
|
15 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-r1"}}
|
16 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "deepseek-r1"}}
|
17 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-r1"}}
|
18 |
+
{"type": "message", "message": "ResponseStatusError: Response 401: {\"error\":\"Invalid username or password.\"}", "error": "ResponseStatusError", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "flux-schnell"}}
|
19 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
20 |
+
{"type": "message", "message": "NotImplementedError: ", "error": "NotImplementedError", "provider": {"name": "HuggingChat", "url": "https://huggingface.co/chat", "label": null, "model": "flux-schnell"}}
|
21 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
22 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
23 |
+
{"type": "error", "error": "CloudflareError", "message": "CloudflareError: Response 403: Cloudflare detected", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "r1-1776"}}
|
24 |
+
{"type": "message", "message": "ClientConnectorError: Cannot connect to host www.blackbox.ai:443 ssl:default [The semaphore timeout period has expired]", "error": "ClientConnectorError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "deepseek-v3"}}
|
25 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
26 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: {\"error\":\"DeepSeek API error: 402 Payment Required - {\\\"error\\\":{\\\"message\\\":\\\"Insufficient Balance\\\",\\\"type\\\":\\\"unknown_error\\\",\\\"param\\\":null,\\\"code\\\":\\\"invalid_request_error\\\"}}\",\"status\":500}", "error": "ResponseStatusError", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "deepseek-r1"}}
|
27 |
+
{"type": "message", "message": "MissingRequirementsError: Install \"nodriver\" and \"platformdirs\" package | pip install -U nodriver platformdirs", "error": "MissingRequirementsError", "provider": {"name": "HuggingChat", "url": "https://huggingface.co/chat", "label": null, "model": "deepseek-r1"}}
|
28 |
+
{"type": "message", "message": "NotImplementedError: ", "error": "NotImplementedError", "provider": {"name": "HuggingChat", "url": "https://huggingface.co/chat", "label": null, "model": "flux-schnell"}}
|
29 |
+
{"type": "message", "message": "ClientConnectorError: Cannot connect to host glider.so:443 ssl:default [The semaphore timeout period has expired]", "error": "ClientConnectorError", "provider": {"name": "Glider", "url": "https://glider.so", "label": "Glider", "model": "deepseek-r1"}}
|
30 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-r1"}}
|
31 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: {\"error\":\"DeepSeek API error: 402 Payment Required - {\\\"error\\\":{\\\"message\\\":\\\"Insufficient Balance\\\",\\\"type\\\":\\\"unknown_error\\\",\\\"param\\\":null,\\\"code\\\":\\\"invalid_request_error\\\"}}\",\"status\":500}", "error": "ResponseStatusError", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "deepseek-r1"}}
|
32 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
33 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4o"}}
|
34 |
+
{"type": "message", "message": "NotImplementedError: ", "error": "NotImplementedError", "provider": {"name": "CopilotAccount", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "dall-e-3"}}
|
35 |
+
{"type": "message", "message": "MissingAuthError: Missing \"_U\" cookie", "error": "MissingAuthError", "provider": {"name": "BingCreateImages", "url": "https://www.bing.com/images/create", "label": "Microsoft Designer in Bing", "model": "dall-e-3"}}
|
36 |
+
{"type": "error", "error": "CloudflareError", "message": "CloudflareError: Response 403: Cloudflare detected", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "r1-1776"}}
|
37 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (28) Failed to connect to jmuz.me port 443 after 21101 ms: Couldn't connect to server. See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
38 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
39 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nJmuz: RequestException: Failed to perform, curl: (28) Failed to connect to jmuz.me port 443 after 21101 ms: Couldn't connect to server. See https://curl.se/libcurl/c/libcurl-errors.html first for more details.\nLiaobots: ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
40 |
+
{"type": "error", "error": "CloudflareError", "message": "CloudflareError: Response 403: Cloudflare detected", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "r1-1776"}}
|
41 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (28) Failed to connect to jmuz.me port 443 after 21013 ms: Couldn't connect to server. See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
42 |
+
{"type": "error", "error": "AttributeError", "message": "AttributeError: 'AsyncWebSocket' object has no attribute 'aclose'", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "r1-1776"}}
|
43 |
+
{"type": "error", "error": "ConnectionRefusedError", "message": "ConnectionRefusedError: [Errno 111] Connect call failed ('127.0.0.1', 38843)", "provider": {"name": "HailuoAI", "url": "https://www.hailuo.ai", "label": "Hailuo AI", "model": "MiniMax"}}
|
44 |
+
{"type": "error", "error": "AttributeError", "message": "AttributeError: 'AsyncWebSocket' object has no attribute 'asend'", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "r1-1776"}}
|
45 |
+
{"type": "error", "error": "RuntimeError", "message": "RuntimeError: Unknown error", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "r1-1776"}}
|
46 |
+
{"type": "error", "error": "RuntimeError", "message": "RuntimeError: Unknown error", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "r1-1776"}}
|
47 |
+
{"type": "error", "error": "RuntimeError", "message": "RuntimeError: Unknown error", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "r1-1776"}}
|
48 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gemini-2.0-flash"}}
|
49 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: You have reached your request limit for the day.", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "o3-mini"}}
|
50 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: {\"action\":\"error\",\"status\":429,\"type\":\"ERR_INPUT_LIMIT\"}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "o3-mini"}}
|
51 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nBlackbox: ResponseStatusError: Response 429: You have reached your request limit for the day.\nDDG: ResponseStatusError: Response 429: {\"action\":\"error\",\"status\":429,\"type\":\"ERR_INPUT_LIMIT\"}", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "o3-mini"}}
|
52 |
+
{"type": "error", "error": "RuntimeError", "message": "RuntimeError: Unknown error", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "r1-1776"}}
|
53 |
+
{"type": "error", "error": "CloudflareError", "message": "CloudflareError: Response 403: Cloudflare detected", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "r1-1776"}}
|
54 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: {\"action\":\"error\",\"status\":429,\"type\":\"ERR_INPUT_LIMIT\"}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "o3-mini"}}
|
55 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: You have reached your request limit for the day.", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "o3-mini"}}
|
56 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nDDG: ResponseStatusError: Response 429: {\"action\":\"error\",\"status\":429,\"type\":\"ERR_INPUT_LIMIT\"}\nBlackbox: ResponseStatusError: Response 429: You have reached your request limit for the day.", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "o3-mini"}}
|
57 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: {\"action\":\"error\",\"status\":429,\"type\":\"ERR_INPUT_LIMIT\"}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "o3-mini"}}
|
58 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: You have reached your request limit for the day.", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "o3-mini"}}
|
59 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nDDG: ResponseStatusError: Response 429: {\"action\":\"error\",\"status\":429,\"type\":\"ERR_INPUT_LIMIT\"}\nBlackbox: ResponseStatusError: Response 429: You have reached your request limit for the day.", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "o3-mini"}}
|
60 |
+
{"type": "error", "error": "RuntimeError", "message": "RuntimeError: Unknown error", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "r1-1776"}}
|
61 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
62 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "o3-mini-high"}}
|
63 |
+
{"type": "error", "error": "MissingAuthError", "message": "MissingAuthError: Add a \"api_key\"", "provider": {"name": "xAI", "url": "https://console.x.ai", "label": null, "model": "o3-mini"}}
|
64 |
+
{"type": "error", "error": "MissingAuthError", "message": "MissingAuthError: Add a \"api_key\"", "provider": {"name": "xAI", "url": "https://console.x.ai", "label": null, "model": "grok3"}}
|
65 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
66 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
67 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
68 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
69 |
+
{"type": "error", "error": "AttributeError", "message": "AttributeError: 'coroutine' object has no attribute 'startswith'", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "r1-1776"}}
|
70 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "CablyAI", "url": "https://cablyai.com/chat", "label": null, "model": "Flux Pro Ultra Raw"}}
|
71 |
+
{"type": "error", "error": "AssertionError", "message": "AssertionError: ", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "r1-1776"}}
|
72 |
+
{"type": "error", "error": "ConnectionRefusedError", "message": "ConnectionRefusedError: [Errno 111] Connect call failed ('127.0.0.1', 52835)", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "stabilityai/stable-diffusion-xl-base-1.0"}}
|
73 |
+
{"type": "error", "error": "ConnectionRefusedError", "message": "ConnectionRefusedError: [Errno 111] Connect call failed ('127.0.0.1', 35217)", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "stabilityai/stable-diffusion-xl-base-1.0"}}
|
74 |
+
{"type": "error", "error": "AssertionError", "message": "AssertionError: ", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "r1-1776"}}
|
75 |
+
{"type": "error", "error": "CloudflareError", "message": "CloudflareError: Response 403: Cloudflare detected", "provider": {"name": "RubiksAI", "url": "https://rubiks.ai", "label": "Rubiks AI", "model": "grok-beta"}}
|
76 |
+
{"type": "error", "error": "ConnectionRefusedError", "message": "ConnectionRefusedError: [Errno 111] Connect call failed ('127.0.0.1', 47071)", "provider": {"name": "You", "url": "https://you.com", "label": "You.com", "model": "agent"}}
|
77 |
+
{"type": "error", "error": "CloudflareError", "message": "CloudflareError: Response 403: Cloudflare detected", "provider": {"name": "RubiksAI", "url": "https://rubiks.ai", "label": "Rubiks AI", "model": "grok-beta"}}
|
78 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 400: \"Invalid transport\"", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "r1-1776"}}
|
79 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: Error generating image: b'null\\n\\n'", "provider": {"name": "VoodoohopFlux1Schnell", "url": "https://voodoohop-flux-1-schnell.hf.space", "label": null, "model": "voodoohop-flux-1-schnell"}}
|
80 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "sonar-pro"}}
|
81 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "CablyAI", "url": "https://cablyai.com/chat", "label": null, "model": "Flux Pro Ultra Raw"}}
|
82 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "CablyAI", "url": "https://cablyai.com/chat", "label": null, "model": "Flux Pro Ultra"}}
|
83 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
84 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "CablyAI", "url": "https://cablyai.com/chat", "label": null, "model": "Flux Schnell"}}
|
85 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "o3-mini-high"}}
|
86 |
+
{"type": "error", "error": "ClientResponseError", "message": "ClientResponseError: 404, message='Not Found', url='https://api.prodia.com/generate?new=true&prompt=generate+photo+of+rain+of+buns&model=absolutereality_v181.safetensors+%5B3d9d4d2b%5D&negative_prompt=&steps=20&cfg=7&seed=5227&sampler=DPM%2B%2B+2M+Karras&aspect_ratio=square'", "provider": {"name": "Prodia", "url": "https://app.prodia.com", "label": null, "model": "absolutereality_v181.safetensors [3d9d4d2b]"}}
|
87 |
+
{"type": "error", "error": "MissingRequirementsError", "message": "MissingRequirementsError: Install \"gpt4all\" package | pip install -U g4f[local]", "provider": {"name": "Local", "url": null, "label": "GPT4All", "model": "Llama-3"}}
|
88 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "You", "url": "https://you.com", "label": "You.com", "model": "gpt-4o-mini"}}
|
89 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: Message: 42[\"r1-1776_query_progress\",{\"output\":\"Okay, the user\",\"citations\":[],\"chunks\":[],\"final\":false,\"elapsed_time\":4.0209852159023285e-07,\"tokens_streamed\":4}]", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "r1-1776"}}
|
90 |
+
{"type": "message", "message": "AttributeError: 'SimpleCookie' object has no attribute 'jar'", "error": "AttributeError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
91 |
+
{"type": "message", "message": "ResponseError: Invalid response: {\"detail\": {\"error\": \"Not authenticated\"}}", "error": "ResponseError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "meta-llama/Llama-3.3-70B-Instruct-Turbo"}}
|
92 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "flux-pro"}}
|
93 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "dall-e-3"}}
|
94 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: Message: 42[\"sonar-reasoning-pro_query_progress\",{\"output\":\"<think>\\nOkay, I need to answer the query \\\"hello\\\" by providing various ways to say hello in English, both formal and informal, based on the given search results. Let me start by looking through the sources to gather all the greetings mentioned.\\n\\nFrom Source 1, there's a long list of informal greetings like \\\"Howdy, partner!\\\", \\\"What\\u2019s cookin\\u2019, good lookin\\u2019?\\\", and some cultural greetings like \\\"Aloha\\\" and \\\"Hola\\\". It also mentions classy ways such as \\\"Pleasure to see you\\\" and formal settings examples.\\n\\nSource 2 discusses informal greetings like \\\"How's it going?\\\" and responses. It includes phrases like \\\"What's up?\\\" and \\\"Howdy\\\", which is regional. There are also greetings for when you haven't seen someone in a while, like \\\"It\\u2019s been ages!\\\".\\n\\nSource 3 lists both informal and formal greetings. Informal ones include \\\"Hi!\\\", \\\"Hey!\\\", \\\"Morning!\\\", while formal ones are \\\"Good morning\\\", \\\"Good afternoon\\\", etc. It also mentions responses to these greetings.\\n\\nSource 4 focuses on American English greetings, emphasizing pronunciation and common phrases like \\\"Hey! How are ya?\\\" with example dialogues. It provides different responses based on how someone is feeling.\\n\\nSource 5 is about email greetings, both formal and informal. It suggests starting with \\\"Hi [Name]\\\" or \\\"Dear [Name]\\\" for formal contexts and gives examples like \\\"Good morning\\\" and \\\"Greetings\\\".\\n\\nSource 6 adds more regional variations like \\\"Oi!\\\" in Australia and other colloquial terms.\\n\\nSource 7 reinforces email salutations similar to Source 5.\\n\\nSource 8 is a video about greetings but since it's a video link, maybe the transcript isn't available, but from the title, it might cover both informal and professional greetings.\\n\\nNow, I need to organize these into sections: informal, formal, email greetings, cultural/regional variations, and responses. Make sure to cite sources properly after each example. Avoid duplications and ensure examples are categorized correctly. Also, include some responses where relevant, especially from Sources 2 and 4.\\n\\nCheck for any unique greetings from each source. For example, Source 1 has creative ones like \\\"Hello Queen!\\\" while Source 6 mentions Australian terms like \\\"How ya goin?\\\". Source 5's email greetings should be a separate section. Cultural greetings from Source 1 include nose bumping in Yemen or Tibet's tongue greeting\\u2014maybe mention those under cultural variations.\\n\\nEnsure that each example has the correct source citation. For instance, if a greeting appears in multiple sources, cite all relevant ones but prioritize the most relevant source. Also, note that some sources have overlapping examples; need to present them cohesively without repetition.\\n\\nFinally, structure the answer with headers for each section (Informal, Formal, Email Greetings, Cultural/Regional Variations) using markdown level 2 headers. Use bullet points for lists and bold where necessary. Make sure the introduction summarizes the answer and the conclusion wraps it up neatly.\\n</think>\\n\\nHere are diverse ways to greet someone in English across casual, formal, digital, and cultural contexts:\\n\\n## Informal Greetings \\n- **Casual phrases**: Hi!, Hey!, Yo!, What\\u2019s up?, How\\u2019s it going?, Howdy (Southern U.S.), G\\u2019day (Australia), Sup? [1][2][3][4][6] \\n- **Playful/affectionate terms**: Hello sunshine!, Howdy partner!, What\\u2019s cookin\\u2019, good lookin\\u2019?, Hello Queen!, Hey munchkin! [1] \\n- **Reconnecting**: Long time no see!, Where have you been hiding?, It\\u2019s been ages! [2][3] \\n- **Responses**: Not much., Good, thanks., Can\\u2019t complain., Hangin\\u2019 in there. [2][4] \\n\\n## Formal Greetings \\n- **Polite/respectful**: Good morning/afternoon/evening, Pleasure to see you, Warmest regards, How is the world treating you? [1][3][5] \\n- **First-time meetings**: It\\u2019s nice to meet you, The pleasure is mine [3][5] \\n\\n## Email Greetings \\n- **Formal**: Dear [Name], Good morning [Team], To Whom It May Concern [5][7] \\n- **Semi-formal**: Hello [Name], Greetings [5][7] \\n- **Casual**: Hi [Name], Hi there!, Hey everyone [5][7] \\n\\n## Cultural/Regional Variations \\n- **Gestures**: Bumping noses (Yemen/UAE), Sticking out tongues (Tibet), Pressing palms together (India/Cambodia) [1] \\n- **Language-specific**: Aloha (Hawaiian), Hola (Spanish), Bonjour (French), Konnichiwa (Japanese) [1][6] \\n- **Local slang**: Wagwan? (Jamaican), How ya goin? (Australia), You right? (New Zealand) [1][6] \\n\\n## Key Tips \\n- Match formality to context: Use playful greetings only with close friends/peers [1][4]. \\n- In emails, default to \\u201cHi [Name]\\u201d unless addressing superiors (\\u201cDear\\u201d) or groups (\\u201cGreetings\\u201d) [5][7]. \\n- Adjust tone based on regional norms (e.g., \\u201cHowdy\\u201d in Texas vs. \\u201cG\\u2019day\\u201d in Australia) [3][6]. \\n\\nWhether saying \\u201cHey!\\u201d to a friend or \\u201cGood afternoon\\u201d in a meeting, tailoring your greeting enhances connection and professionalism.\",\"citations\":[\"https://www.stylecraze.com/articles/ways-to-say-hello/\",\"https://www.speakconfidentenglish.com/greetings-for-every-situation/\",\"https://tandem.net/blog/20-greetings-in-english\",\"https://www.clearenglishcorner.com/blog/64\",\"https://www.indeed.com/career-advice/career-development/greeting-from-email\",\"https://www.berlitz.com/blog/hello-in-english\",\"https://www.mail.com/blog/posts/email-greetings/118/\",\"https://www.youtube.com/watch?v=Z4p2mL7m8Lc\"],\"chunks\":[\"<think>\\nOkay, I need to answer the query \\\"hello\\\" by providing various ways to say hello in English, both formal and informal, based on the\",\" given search\",\" results. Let\",\" me start by looking through\",\" the sources to\",\" gather all the\",\" greetings mentioned.\",\"\\n\\nFrom Source \",\"1, there's a long list of\",\" informal greetings\",\" like \\\"Howdy, partner!\\\", \\\"\",\"What\\u2019s cookin\\u2019,\",\" good lookin\\u2019?\\\", and\",\" some cultural\",\" greetings like \\\"\",\"Aloha\\\" and \\\"Hola\",\"\\\". It also mentions class\",\"y ways such as\",\" \\\"Pleasure to see\",\" you\\\" and formal settings\",\" examples.\\n\\nSource 2 discusses\",\" informal greetings like \\\"\",\"How's it going?\\\"\",\" and responses.\",\" It includes phrases\",\" like \\\"What's\",\" up?\\\" and \\\"Howdy\",\"\\\", which is regional\",\". There are also\",\" greetings for when\",\" you haven't seen someone in\",\" a while, like \\\"It\",\"\\u2019s been ages!\\\".\\n\\nSource 3 lists both\",\" informal and formal\",\" greetings. Informal\",\" ones include\",\" \\\"Hi!\\\", \\\"Hey!\\\",\",\" \\\"Morning!\\\", while formal\",\" ones are \\\"Good morning\",\"\\\", \\\"Good afternoon\",\"\\\", etc. It also mentions\",\" responses to\",\" these greetings.\\n\\nSource 4 focuses\",\" on American English\",\" greetings, emphasizing\",\" pronunciation and\",\" common phrases\",\" like \\\"Hey! How are ya\",\"?\\\" with example\",\" dialogues. It provides different\",\" responses based on\",\" how someone is\",\" feeling.\\n\\nSource 5 is about\",\" email greetings,\",\" both formal and\",\" informal. It suggests starting\",\" with \\\"Hi [Name]\\\" or \\\"Dear [Name]\\\" for formal contexts and\",\" gives examples\",\" like \\\"Good morning\",\"\\\" and \\\"Greetings\\\".\\n\\nSource 6 adds more\",\" regional variations\",\" like \\\"Oi!\\\" in Australia and\",\" other colloqu\",\"ial terms.\\n\\nSource 7 reinforces email\",\" salutations similar to\",\" Source 5.\\n\\nSource 8 is a video about\",\" greetings but\",\" since it's a video link\",\", maybe the transcript isn\",\"'t available,\",\" but from the\",\" title, it might cover\",\" both informal and\",\" professional greetings.\\n\\nNow, I\",\" need to organize these\",\" into sections:\",\" informal, formal\",\", email greetings\",\", cultural/regional variations, and\",\" responses. Make\",\" sure to cite\",\" sources properly\",\" after each example.\",\" Avoid duplications and ensure\",\" examples are\",\" categorized correctly\",\". Also, include some responses\",\" where relevant\",\", especially from\",\" Sources 2 and 4.\\n\\nCheck for any unique\",\" greetings from each\",\" source. For example, Source\",\" 1 has creative ones\",\" like \\\"Hello Queen\",\"!\\\" while Source\",\" 6 mentions Australian terms\",\" like \\\"How ya go\",\"in?\\\". Source 5's email\",\" greetings should be\",\" a separate section. Cultural\",\" greetings from Source\",\" 1 include nose bump\",\"ing in Yemen or\",\" Tibet's tongue\",\" greeting\\u2014maybe\",\" mention those under\",\" cultural variations\",\".\\n\\nEnsure that\",\" each example\",\" has the correct\",\" source citation\",\". For instance\",\", if a greeting\",\" appears in multiple sources,\",\" cite all relevant\",\" ones but prioritize\",\" the most relevant\",\" source. Also,\",\" note that some sources have\",\" overlapping examples\",\"; need to present them\",\" cohesively without repetition\",\".\\n\\nFinally, structure the\",\" answer with headers for\",\" each section\",\" (Informal, Formal\",\", Email Greetings,\",\" Cultural/Regional Variations) using markdown level 2 headers. Use bullet points for lists and bold where necessary. Make sure the introduction\",\" summarizes the\",\" answer and the conclusion\",\" wraps it up neatly.\\n</think>\",\"\\n\\nHere are diverse ways\",\" to greet someone\",\" in English across casual\",\", formal, digital\",\", and cultural contexts\",\":\\n\\n## Informal\",\" Greetings \\n- **Casual phrases**:\",\" Hi!, Hey!, Yo\",\"!, What\\u2019s up?, How\",\"\\u2019s it going?, How\",\"dy (Southern U\",\".S.), G\\u2019day (Australia\",\"), Sup? [1][2][3][4][6] \\n- **Playful\",\"/affectionate terms\",\"**: Hello sunshine\",\"!, Howdy partner!,\",\" What\\u2019s cookin\\u2019, good\",\" lookin\\u2019?, Hello\",\" Queen!, Hey munch\",\"kin! [1] \\n- **Reconnecting**:\",\" Long time no see\",\"!, Where have\",\" you been hiding\",\"?, It\\u2019s been ages!\",\" [2][3] \\n- **Responses\",\"**: Not much., Good\",\", thanks., Can\",\"\\u2019t complain.,\",\" Hangin\\u2019 in there\",\". [2][4] \\n\\n## Formal Gre\",\"etings \\n- **Polite\",\"/respectful**: Good morning\",\"/afternoon/evening, Ple\",\"asure to see you\",\", Warmest regards,\",\" How is the world treating you\",\"? [1][3][5] \\n- **First-time meetings**:\",\" It\\u2019s nice to\",\" meet you, The pleasure\",\" is mine [3][5] \\n\\n## Email Gre\",\"etings \\n- **Formal\",\"**: Dear [Name], Good morning\",\" [Team], To Wh\",\"om It May Concern [5][7] \\n- **Semi\",\"-formal**: Hello [Name], Greetings [5][7] \\n- **Casual\",\"**: Hi [Name], Hi there!, Hey\",\" everyone [5][7] \\n\\n## Cultural/\",\"Regional Variations \\n- **Gestures**: B\",\"umping noses (Yemen/UAE), Sticking\",\" out tongues (Tibet), Pressing palms together\",\" (India/Cambodia) [1] \\n- **Language\",\"-specific**: Aloha\",\" (Hawaiian), Hola (Spanish), Bonjour\",\" (French), Konn\",\"ichiwa (Japanese) [1][6] \\n- **Local slang\",\"**: Wagwan? (Jamaican), How ya go\",\"in? (Australia), You right?\",\" (New Zealand\",\") [1][6] \\n\\n## Key Tips\",\" \\n- Match form\",\"ality to context:\",\" Use playful greetings\",\" only with close friends\",\"/peers [1][4]. \\n- In emails\",\", default to \\u201cHi\",\" [Name]\\u201d unless addressing\",\" superiors (\\u201cDear\\u201d) or groups\",\" (\\u201cGreetings\\u201d) [5][7]. \\n- Adjust tone\",\" based on regional norms\",\" (e.g., \\u201cHowdy\\u201d in Texas vs\",\". \\u201cG\\u2019day\\u201d in Australia) [3][6]. \\n\\nWhether saying\",\" \\u201cHey!\\u201d to a friend or\",\" \\u201cGood afternoon\",\"\\u201d in a meeting,\",\" tailoring your\",\" greeting enhances connection\",\" and professionalism\",\".\"],\"final\":true,\"elapsed_time\":39.65950366621837,\"tokens_streamed\":1154}]", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "sonar-reasoning-pro"}}
|
95 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nLiaobots: ResponseStatusError: Response 402: Error\nJmuz: NameError: name 'CurlMime' is not defined", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
96 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
97 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
98 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
99 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nJmuz: NameError: name 'CurlMime' is not defined\nLiaobots: ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
100 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
101 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: Message: 42[\"sonar-reasoning-pro_query_progress\",{\"output\":\"<think>\\nAlright, the user just said \\\"hello\\\". I need to provide a comprehensive answer on different ways to say hello, using the search results given. Let me start by looking at the sources.\\n\\nFrom [1], there's a long list of informal and creative greetings like \\\"Howdy, partner!\\\" and \\\"What\\u2019s cookin\\u2019, good lookin\\u2019?\\\". There's also some cultural greetings like \\\"Aloha\\\" and \\\"Bonjour\\\". [2] mentions informal phrases like \\\"How's it going?\\\" and responses. [3] lists both informal and formal greetings, including \\\"Hi\\\" and \\\"Good morning\\\". [4] focuses on American English greetings and their pronunciation. [5] and [7] talk about email greetings, both formal and informal. [6] adds more international variations. [8] is a video but seems to cover professional vs informal greetings.\\n\\nThe user probably wants a variety of greetings for different contexts. I should categorize them into sections like informal, formal, cultural, email, etc. Make sure to cite sources properly. Also, check if there are any unique greetings or tips on usage from each source. For example, [1] has creative ones, [5] gives email examples. Need to avoid repetition and present the info clearly with markdown formatting as per the rules.\\n</think>\\n\\nGreetings vary widely depending on context, formality, and cultural norms. Here\\u2019s a breakdown of common and creative ways to say \\u201chello\\u201d in English:\\n\\n---\\n\\n## **Informal Greetings** \\nUsed with friends, family, or in casual settings: \\n- **Hi! / Hey! / Yo!** \\u2013 Simple and universal[2][3][4]. \\n- **How\\u2019s it going? / What\\u2019s up?** \\u2013 Often paired with short responses like *\\u201cGood, thanks!\\u201d* or *\\u201cNot much!\\u201d*[2][4]. \\n- **Morning! / Howdy!** \\u2013 Regional variations (e.g., *Howdy* in the southern U.S.)[3][4]. \\n- **What\\u2019s cracking? / What\\u2019s good in the hood?** \\u2013 Slang for friendly check-ins[1]. \\n- **Long time no see! / Where have you been hiding?** \\u2013 For reconnecting after a while[2]. \\n\\n**Creative & Playful Examples**: \\n- *\\u201cWhat\\u2019s cookin\\u2019, good lookin\\u2019?\\u201d*[1] \\n- *\\u201cHey there, sunshine!\\u201d*[1] \\n- *\\u201cTough day? Need a hug?\\u201d*[1] \\n\\n---\\n\\n## **Formal Greetings** \\nSuitable for professional or respectful interactions: \\n- **Hello! / Good morning/afternoon/evening.** \\u2013 Classic and versatile[3][5][7]. \\n- **Dear [Name],** \\u2013 Common in emails (e.g., cover letters)[5][7]. \\n- **It\\u2019s a pleasure to meet you.** \\u2013 For first introductions[3]. \\n- **Greetings.** \\u2013 Neutral and polite for groups or unknown recipients[5]. \\n\\n**Email-Specific Examples**: \\n- *\\u201cHi [Name], I hope this email finds you well.\\u201d*[5] \\n- *\\u201cGood morning, team.\\u201d*[7] \\n\\n---\\n\\n## **Cultural & International Variations** \\nExamples from other languages or traditions: \\n- **Aloha! (Hawaiian)** \\u2013 Also means \\u201clove\\u201d or \\u201cpeace\\u201d[1][6]. \\n- **Bonjour! (French) / Hola! (Spanish)** \\u2013 Common in multilingual settings[1][3]. \\n- **Konnichiwa! (Japanese)** \\u2013 Used during daytime[1]. \\n- **Namaste! (Hindi)** \\u2013 Accompanied by a slight bow with palms together[1]. \\n\\n**Unique Physical Gestures**: \\n- **Bumping noses** (Yemen, UAE)[1]. \\n- **Sticking out tongues** (Tibet)[1]. \\n\\n---\\n\\n## **Situational Tips** \\n- **In emails**: Use *\\u201cHi [Name],\\u201d* for most cases; *\\u201cDear [Name],\\u201d* for formal contexts[5][7]. Avoid overly casual greetings like *\\u201cHey!\\u201d* in professional emails. \\n- **Responses**: Keep replies brief unless deeper conversation is expected (e.g., *\\u201cI\\u2019ve been better\\u201d* signals a need to talk)[4]. \\n\\n---\\n\\nWhether you\\u2019re greeting a friend, colleague, or someone from another culture, tailoring your hello to the context ensures warmth and respect. For more nuanced scenarios, observe local customs or default to polite simplicity.\",\"citations\":[\"https://www.stylecraze.com/articles/ways-to-say-hello/\",\"https://www.speakconfidentenglish.com/greetings-for-every-situation/\",\"https://tandem.net/blog/20-greetings-in-english\",\"https://www.clearenglishcorner.com/blog/64\",\"https://www.indeed.com/career-advice/career-development/greeting-from-email\",\"https://www.berlitz.com/blog/hello-in-english\",\"https://www.mail.com/blog/posts/email-greetings/118/\",\"https://www.youtube.com/watch?v=Z4p2mL7m8Lc\"],\"chunks\":[\"<think>\\nAlright, the user\",\" just said \\\"hello\\\". I\",\" need to provide\",\" a comprehensive answer\",\" on different\",\" ways to say hello\",\", using the search\",\" results given.\",\" Let me start\",\" by looking at\",\" the sources.\\n\\nFrom [1], there's a long\",\" list of informal\",\" and creative\",\" greetings like\",\" \\\"Howdy, partner!\\\"\",\" and \\\"What\\u2019s cookin\\u2019,\",\" good lookin\\u2019?\\\". There\",\"'s also some cultural\",\" greetings like \\\"\",\"Aloha\\\" and \\\"Bonjour\\\". [2] mentions informal\",\" phrases like\",\" \\\"How's it going?\\\"\",\" and responses.\",\" [3] lists both\",\" informal and formal\",\" greetings, including\",\" \\\"Hi\\\" and \\\"Good\",\" morning\\\". [4] focuses\",\" on American English\",\" greetings and their\",\" pronunciation.\",\" [5] and [7] talk about\",\" email greetings,\",\" both formal and informal.\",\" [6] adds more\",\" international variations\",\". [8] is a video but\",\" seems to cover\",\" professional vs\",\" informal greetings\",\".\\n\\nThe user probably wants\",\" a variety of\",\" greetings for\",\" different contexts. I\",\" should categorize\",\" them into sections like\",\" informal, formal\",\", cultural, email,\",\" etc. Make sure to cite\",\" sources properly.\",\" Also, check if there\",\" are any unique greetings\",\" or tips on usage\",\" from each source\",\". For example\",\", [1] has creative\",\" ones, [5] gives email\",\" examples. Need\",\" to avoid repetition\",\" and present the\",\" info clearly\",\" with markdown formatting as\",\" per the rules.\\n</think>\\n\\nGreetings vary widely\",\" depending on\",\" context, formality\",\", and cultural\",\" norms. Here\\u2019s\",\" a breakdown of common and\",\" creative ways to\",\" say \\u201chello\\u201d in English\",\":\\n\\n---\\n\\n## **Inform\",\"al Greetings** \\nUsed with\",\" friends, family,\",\" or in casual\",\" settings: \\n- **Hi! / Hey\",\"! / Yo!** \\u2013 Simple\",\" and universal[2][3][4]. \\n- **How\",\"\\u2019s it going? /\",\" What\\u2019s up?**\",\" \\u2013 Often paired with short\",\" responses like *\\u201c\",\"Good, thanks!\\u201d*\",\" or *\\u201cNot much\",\"!\\u201d*[2][4]. \\n- **Morning!\",\" / Howdy!** \\u2013 Regional variations\",\" (e.g., *Howdy* in the\",\" southern U.S\",\".)[3][4]. \\n- **What\",\"\\u2019s cracking? / What\",\"\\u2019s good in the\",\" hood?** \\u2013 Slang\",\" for friendly\",\" check-ins[1]. \\n- **Long time\",\" no see! / Where\",\" have you been\",\" hiding?** \\u2013 For re\",\"connecting after a\",\" while[2]. \\n\\n**Creative & Play\",\"ful Examples**:\",\" \\n- *\\u201cWhat\\u2019s cook\",\"in\\u2019, good lookin\\u2019\",\"?\\u201d*[1] \\n- *\\u201cHey there,\",\" sunshine!\\u201d*[1] \\n- *\\u201cTough\",\" day? Need a hug?\\u201d*[1] \\n\\n---\\n\\n## **Formal Greetings** \\nSuitable for professional or respectful interactions: \\n- **Hello! / Good morning/\",\"afternoon/evening.** \\u2013 Classic and\",\" versatile[3][5][7]. \\n- **Dear [Name],** \\u2013 Common in\",\" emails (e.g., cover\",\" letters)[5][7]. \\n- **It\\u2019\",\"s a pleasure to meet you\",\".** \\u2013 For first introductions\",\"[3]. \\n- **Greetings\",\".** \\u2013 Neutral and\",\" polite for groups\",\" or unknown recipients[5]. \\n\\n**Email\",\"-Specific Examples**:\",\" \\n- *\\u201cHi [Name], I hope\",\" this email finds you well\",\".\\u201d*[5] \\n- *\\u201cGood morning\",\", team.\\u201d*[7] \\n\\n---\\n\\n## **Cultural &\",\" International Variations\",\"** \\nExamples from\",\" other languages\",\" or traditions\",\": \\n- **Aloha! (Hawaiian)** \\u2013 Also\",\" means \\u201clove\\u201d or \\u201c\",\"peace\\u201d[1][6]. \\n- **Bonjour! (French) / Hola!\",\" (Spanish)** \\u2013 Common in\",\" multilingual settings\",\"[1][3]. \\n- **Konn\",\"ichiwa! (Japanese)** \\u2013 Used during\",\" daytime[1]. \\n- **Namaste\",\"! (Hindi)** \\u2013 Accompan\",\"ied by a slight bow\",\" with palms together[1]. \\n\\n**Unique\",\" Physical Gestures\",\"**: \\n- **Bumping\",\" noses** (Yemen, UAE)[1]. \\n- **Sticking\",\" out tongues** (Tibet)[1]. \\n\\n---\\n\\n## **\",\"Situational Tips**\",\" \\n- **In emails**:\",\" Use *\\u201cHi [Name],\\u201d* for most cases\",\"; *\\u201cDear [Name],\\u201d* for formal\",\" contexts[5][7]. Avoid overly\",\" casual greetings like *\",\"\\u201cHey!\\u201d* in professional\",\" emails. \\n- **Respons\",\"es**: Keep replies brief\",\" unless deeper\",\" conversation\",\" is expected (e.g., *\\u201cI\",\"\\u2019ve been better\\u201d\",\"* signals a need to talk\",\")[4]. \\n\\n---\\n\\nWhether you\",\"\\u2019re greeting a friend,\",\" colleague, or someone from\",\" another culture\",\", tailoring your\",\" hello to the context\",\" ensures warmth and\",\" respect. For\",\" more nuanced scenarios\",\", observe local\",\" customs or default to\",\" polite simplicity\",\".\"],\"final\":true,\"elapsed_time\":36.30259839305654,\"tokens_streamed\":944}]", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "sonar-reasoning-pro"}}
|
102 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: GPU token limit exceeded: data: null\n", "provider": {"name": "StableDiffusion35Large", "url": "https://stabilityai-stable-diffusion-3-5-large.hf.space", "label": null, "model": "stabilityai-stable-diffusion-3-5-large"}}
|
103 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: GPU token limit exceeded: data: null\n", "provider": {"name": "StableDiffusion35Large", "url": "https://stabilityai-stable-diffusion-3-5-large.hf.space", "label": null, "model": "stabilityai-stable-diffusion-3-5-large"}}
|
104 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-chat"}}
|
105 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-chat"}}
|
106 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-chat"}}
|
107 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-chat"}}
|
108 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-r1"}}
|
109 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-r1"}}
|
110 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
111 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3-haiku"}}
|
112 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "meta-llama/Llama-3.3-70B-Instruct-Turbo"}}
|
113 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
114 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "meta-llama/Llama-3.3-70B-Instruct-Turbo"}}
|
115 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
116 |
+
{"type": "error", "error": "MissingAuthError", "message": "MissingAuthError: ('Missing or invalid \"__Secure-1PSID\" cookie', RuntimeError('coroutine raised StopIteration'))", "provider": {"name": "Gemini", "url": "https://gemini.google.com", "label": "Google Gemini", "model": "gemini"}}
|
117 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
118 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
119 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: You have reached your request limit for the day.", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "gpt-4o"}}
|
120 |
+
{"type": "message", "message": "ResponseStatusError: Response 403: ", "error": "ResponseStatusError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "gpt-4o"}}
|
121 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
122 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
123 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: You have reached your request limit for the day.", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "gpt-4o"}}
|
124 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
125 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "Custom", "url": null, "label": "Custom Provider", "model": "blackboxai"}}
|
126 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nCustom: NameError: name 'CurlMime' is not defined", "provider": {"name": "Custom", "url": null, "label": "Custom Provider", "model": "blackboxai"}}
|
127 |
+
{"type": "error", "error": "MissingAuthError", "message": "MissingAuthError: Add a \"api_key\"", "provider": {"name": "Groq", "url": "https://console.groq.com/playground", "label": null, "model": "mixtral-8x7b-32768"}}
|
128 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "sonar-pro"}}
|
129 |
+
{"type": "error", "error": "MissingAuthError", "message": "MissingAuthError: Add a \"api_key\"", "provider": {"name": "PerplexityApi", "url": "https://www.perplexity.ai", "label": "Perplexity API", "model": "llama-3-sonar-large-32k-online"}}
|
130 |
+
{"type": "message", "message": "MissingRequirementsError: Install or update \"curl_cffi\" package | pip install -U curl_cffi", "error": "MissingRequirementsError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "Copilot"}}
|
131 |
+
{"type": "message", "message": "ResponseError: Invalid response: {\"detail\": {\"error\": \"Not authenticated\"}}", "error": "ResponseError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "meta-llama/Llama-3.3-70B-Instruct-Turbo"}}
|
132 |
+
{"type": "message", "message": "MissingRequirementsError: Install or update \"curl_cffi\" package | pip install -U curl_cffi", "error": "MissingRequirementsError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "Copilot"}}
|
133 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
134 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
135 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: {\"action\":\"error\",\"status\":429,\"type\":\"ERR_INPUT_LIMIT\"}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
136 |
+
{"type": "message", "message": "ClientPayloadError: Response payload is not completed: <ContentLengthError: 400, message='Not enough data for satisfy content length header.'>", "error": "ClientPayloadError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
137 |
+
{"type": "message", "message": "ClientPayloadError: Response payload is not completed: <ContentLengthError: 400, message='Not enough data for satisfy content length header.'>", "error": "ClientPayloadError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
138 |
+
{"type": "message", "message": "ResponseError: Invalid response: {\"detail\": {\"error\": \"Not authenticated\"}}", "error": "ResponseError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "meta-llama/Llama-3.3-70B-Instruct-Turbo"}}
|
139 |
+
{"type": "message", "message": "ClientPayloadError: Response payload is not completed: <ContentLengthError: 400, message='Not enough data for satisfy content length header.'>", "error": "ClientPayloadError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
140 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: {\"error\":\"DeepSeek API error: 402 Payment Required - {\\\"error\\\":{\\\"message\\\":\\\"Insufficient Balance\\\",\\\"type\\\":\\\"unknown_error\\\",\\\"param\\\":null,\\\"code\\\":\\\"invalid_request_error\\\"}}\",\"status\":500}", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "deepseek-reasoner"}}
|
141 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
142 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
143 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "sonar-reasoning-pro"}}
|
144 |
+
{"type": "error", "error": "TimeoutError", "message": "TimeoutError: ", "provider": {"name": "Qwen_QVQ_72B", "url": "https://qwen-qvq-72b-preview.hf.space", "label": null, "model": "qwen-qvq-72b-preview"}}
|
145 |
+
{"type": "message", "message": "MissingRequirementsError: Install or update \"curl_cffi\" package | pip install -U curl_cffi", "error": "MissingRequirementsError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "Copilot"}}
|
146 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: {\"action\":\"error\",\"status\":429,\"type\":\"ERR_INPUT_LIMIT\"}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
147 |
+
{"type": "message", "message": "ResponseError: Invalid response: {\"detail\": {\"error\": \"Not authenticated\"}}", "error": "ResponseError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "meta-llama/Llama-3.3-70B-Instruct-Turbo"}}
|
148 |
+
{"type": "message", "message": "AttributeError: 'SimpleCookie' object has no attribute 'jar'", "error": "AttributeError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
149 |
+
{"type": "message", "message": "ClientPayloadError: Response payload is not completed: <ContentLengthError: 400, message='Not enough data for satisfy content length header.'>", "error": "ClientPayloadError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
150 |
+
{"type": "message", "message": "ClientPayloadError: Response payload is not completed: <ContentLengthError: 400, message='Not enough data for satisfy content length header.'>", "error": "ClientPayloadError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
151 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-r1"}}
|
152 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: {\"error\":\"DeepSeek API error: 402 Payment Required - {\\\"error\\\":{\\\"message\\\":\\\"Insufficient Balance\\\",\\\"type\\\":\\\"unknown_error\\\",\\\"param\\\":null,\\\"code\\\":\\\"invalid_request_error\\\"}}\",\"status\":500}", "error": "ResponseStatusError", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "deepseek-r1"}}
|
153 |
+
{"type": "message", "message": "CloudflareError: Response 403: Cloudflare detected", "error": "CloudflareError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
154 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
155 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: {\"action\":\"error\",\"status\":429,\"type\":\"ERR_INPUT_LIMIT\"}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
156 |
+
{"type": "message", "message": "MissingRequirementsError: Install or update \"curl_cffi\" package | pip install -U curl_cffi", "error": "MissingRequirementsError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "Copilot"}}
|
157 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
158 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
159 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: You have reached your request limit for the day.", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "o3-mini"}}
|
160 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "grok-2"}}
|
161 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "PerplexityLabs", "url": "https://labs.perplexity.ai", "label": null, "model": "sonar-reasoning-pro"}}
|
162 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
163 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
164 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nLiaobots: ResponseStatusError: Response 402: Error\nJmuz: NameError: name 'CurlMime' is not defined", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
165 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: You have reached your request limit for the day.", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "o3-mini"}}
|
166 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o-mini"}}
|
167 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "o1-preview"}}
|
168 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "llama-3.1-405b"}}
|
169 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: {\"error\":\"400 status code (no body)\",\"status\":500}", "error": "ResponseStatusError", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "mistral-nemo"}}
|
170 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "hermes-2-dpo"}}
|
171 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gemini-2.0-flash-thinking"}}
|
172 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gemini-2.0-flash"}}
|
173 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini"}}
|
174 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
175 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
176 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
177 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nLiaobots: ResponseStatusError: Response 402: Error\nJmuz: ResponseStatusError: Response 429: Rate limit", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
178 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "grok-2"}}
|
179 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
180 |
+
{"type": "error", "error": "ConnectionRefusedError", "message": "ConnectionRefusedError: [WinError 1225] O computador remoto recusou a conex\u00e3o de rede", "provider": {"name": "HailuoAI", "url": "https://www.hailuo.ai", "label": "Hailuo AI", "model": "MiniMax"}}
|
181 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
182 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
183 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
184 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
185 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
186 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
187 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
188 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
189 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "meta-llama/Llama-3.3-70B-Instruct-Turbo"}}
|
190 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
191 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/blackbox.json'", "error": "PermissionError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "blackboxai"}}
|
192 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: {\"error\":\"400 Invalid type for 'messages[1].content[1].text': expected a string, but got an array instead.\",\"status\":500}", "error": "ResponseStatusError", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "openai"}}
|
193 |
+
{"type": "message", "message": "MissingAuthError: Add a \"api_key\"", "error": "MissingAuthError", "provider": {"name": "GeminiPro", "url": "https://ai.google.dev", "label": "Google Gemini API", "model": "gemini-1.5-pro"}}
|
194 |
+
{"type": "message", "message": "ResponseError: GPU token limit exceeded: data: null\n", "error": "ResponseError", "provider": {"name": "HuggingSpace", "url": "https://huggingface.co/spaces", "label": null, "model": "qwen-qwen2-72b-instruct"}}
|
195 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "HuggingFaceAPI", "url": "https://api-inference.huggingface.com", "label": "HuggingFace (Inference API)", "model": "meta-llama/Llama-3.2-11B-Vision-Instruct"}}
|
196 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/auth_Copilot.json'", "error": "PermissionError", "provider": {"name": "CopilotAccount", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "Copilot"}}
|
197 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/auth_OpenaiChat.json'", "error": "PermissionError", "provider": {"name": "OpenaiAccount", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
198 |
+
{"type": "message", "message": "MissingAuthError: ('Missing or invalid \"__Secure-1PSID\" cookie', PermissionError(13, 'Permission denied'))", "error": "MissingAuthError", "provider": {"name": "Gemini", "url": "https://gemini.google.com", "label": "Google Gemini", "model": "gemini"}}
|
199 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nBlackbox: PermissionError: [Errno 13] Permission denied: 'har_and_cookies/blackbox.json'\nOIVSCode: NameError: name 'CurlMime' is not defined\nDeepInfraChat: NameError: name 'CurlMime' is not defined\nPollinationsAI: ResponseStatusError: Response 500: {\"error\":\"400 Invalid type for 'messages[1].content[1].text': expected a string, but got an array instead.\",\"status\":500}\nHuggingSpace: ResponseError: GPU token limit exceeded: data: null\n\nGeminiPro: MissingAuthError: Add a \"api_key\"\nHuggingFaceAPI: NameError: name 'CurlMime' is not defined\nCopilotAccount: PermissionError: [Errno 13] Permission denied: 'har_and_cookies/auth_Copilot.json'\nOpenaiAccount: PermissionError: [Errno 13] Permission denied: 'har_and_cookies/auth_OpenaiChat.json'\nGemini: MissingAuthError: ('Missing or invalid \"__Secure-1PSID\" cookie', PermissionError(13, 'Permission denied'))", "provider": {"name": "Gemini", "url": "https://gemini.google.com", "label": "Google Gemini", "model": "gemini"}}
|
200 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/blackbox.json'", "error": "PermissionError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "blackboxai"}}
|
201 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
202 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "meta-llama/Llama-3.3-70B-Instruct-Turbo"}}
|
203 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: {\"error\":\"400 Invalid type for 'messages[2].content[1].text': expected a string, but got an array instead.\",\"status\":500}", "error": "ResponseStatusError", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "openai"}}
|
204 |
+
{"type": "message", "message": "ResponseError: GPU token limit exceeded: data: null\n", "error": "ResponseError", "provider": {"name": "HuggingSpace", "url": "https://huggingface.co/spaces", "label": null, "model": "qwen-qwen2-72b-instruct"}}
|
205 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "HuggingFaceAPI", "url": "https://api-inference.huggingface.com", "label": "HuggingFace (Inference API)", "model": "meta-llama/Llama-3.2-11B-Vision-Instruct"}}
|
206 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/auth_OpenaiChat.json'", "error": "PermissionError", "provider": {"name": "OpenaiAccount", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
207 |
+
{"type": "message", "message": "MissingAuthError: Add a \"api_key\"", "error": "MissingAuthError", "provider": {"name": "GeminiPro", "url": "https://ai.google.dev", "label": "Google Gemini API", "model": "gemini-1.5-pro"}}
|
208 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/auth_Copilot.json'", "error": "PermissionError", "provider": {"name": "CopilotAccount", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "Copilot"}}
|
209 |
+
{"type": "message", "message": "MissingAuthError: ('Missing or invalid \"__Secure-1PSID\" cookie', PermissionError(13, 'Permission denied'))", "error": "MissingAuthError", "provider": {"name": "Gemini", "url": "https://gemini.google.com", "label": "Google Gemini", "model": "gemini"}}
|
210 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nBlackbox: PermissionError: [Errno 13] Permission denied: 'har_and_cookies/blackbox.json'\nOIVSCode: NameError: name 'CurlMime' is not defined\nDeepInfraChat: NameError: name 'CurlMime' is not defined\nPollinationsAI: ResponseStatusError: Response 500: {\"error\":\"400 Invalid type for 'messages[2].content[1].text': expected a string, but got an array instead.\",\"status\":500}\nHuggingSpace: ResponseError: GPU token limit exceeded: data: null\n\nGeminiPro: MissingAuthError: Add a \"api_key\"\nHuggingFaceAPI: NameError: name 'CurlMime' is not defined\nCopilotAccount: PermissionError: [Errno 13] Permission denied: 'har_and_cookies/auth_Copilot.json'\nOpenaiAccount: PermissionError: [Errno 13] Permission denied: 'har_and_cookies/auth_OpenaiChat.json'\nGemini: MissingAuthError: ('Missing or invalid \"__Secure-1PSID\" cookie', PermissionError(13, 'Permission denied'))", "provider": {"name": "Gemini", "url": "https://gemini.google.com", "label": "Google Gemini", "model": "gemini"}}
|
211 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (28) Failed to connect to oi-vscode-server.onrender.com port 443 after 42309 ms: Couldn't connect to server. See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini"}}
|
212 |
+
{"type": "error", "error": "PermissionError", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "Copilot"}}
|
213 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "CablyAI", "url": "https://cablyai.com/chat", "label": null, "model": "0x-lite"}}
|
214 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 503: HTML content", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-ai/DeepSeek-V3"}}
|
215 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "CablyAI", "url": "https://cablyai.com/chat", "label": null, "model": "chatgpt-4o-latest"}}
|
216 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "CablyAI", "url": "https://cablyai.com/chat", "label": null, "model": "deepseek-v3"}}
|
217 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
218 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "CablyAI", "url": "https://cablyai.com/chat", "label": null, "model": "deepseek-v3"}}
|
219 |
+
{"type": "error", "error": "NameError", "message": "NameError: name 'CurlMime' is not defined", "provider": {"name": "CablyAI", "url": "https://cablyai.com/chat", "label": null, "model": "FLUX.1 [dev]"}}
|
220 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
221 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
222 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "DeepSeek-V3"}}
|
223 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
224 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
225 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nLiaobots: ResponseStatusError: Response 402: Error\nJmuz: ResponseStatusError: Response 429: Rate limit", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
226 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
227 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
228 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nJmuz: ResponseStatusError: Response 429: Rate limit\nLiaobots: ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
229 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
230 |
+
{"type": "message", "message": "CloudflareError: Response 403: Cloudflare detected", "error": "CloudflareError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
231 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
232 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
233 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "meta-llama/Llama-3.3-70B-Instruct-Turbo"}}
|
234 |
+
{"type": "message", "message": "ClientConnectorCertificateError: Cannot connect to host duckduckgo.com:443 ssl:True [SSLCertVerificationError: (1, \"[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'duckduckgo.com'. (_ssl.c:1011)\")]", "error": "ClientConnectorCertificateError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
235 |
+
{"type": "message", "message": "FileNotFoundError: could not find a valid chrome browser binary. please make sure chrome is installed.or use the keyword argument 'browser_executable_path=/path/to/your/browser' ", "error": "FileNotFoundError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
236 |
+
{"type": "message", "message": "AttributeError: 'SimpleCookie' object has no attribute 'jar'", "error": "AttributeError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
237 |
+
{"type": "message", "message": "FileNotFoundError: could not find a valid chrome browser binary. please make sure chrome is installed.or use the keyword argument 'browser_executable_path=/path/to/your/browser' ", "error": "FileNotFoundError", "provider": {"name": "CopilotAccount", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "dall-e-3"}}
|
238 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: {\"error\":\"400 status code (no body)\",\"status\":500}", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "evil"}}
|
239 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
240 |
+
{"type": "message", "message": "FileNotFoundError: could not find a valid chrome browser binary. please make sure chrome is installed.or use the keyword argument 'browser_executable_path=/path/to/your/browser' ", "error": "FileNotFoundError", "provider": {"name": "MicrosoftDesigner", "url": "https://designer.microsoft.com", "label": "Microsoft Designer", "model": "dall-e-3"}}
|
241 |
+
{"type": "message", "message": "MissingAuthError: Missing \"_U\" cookie", "error": "MissingAuthError", "provider": {"name": "BingCreateImages", "url": "https://www.bing.com/images/create", "label": "Microsoft Designer in Bing", "model": "dall-e-3"}}
|
242 |
+
{"type": "error", "error": "KeyError", "message": "KeyError: 'event_id'", "provider": {"name": "HuggingSpace", "url": "https://huggingface.co/spaces", "label": null, "model": "qwen-2.5-1m-demo"}}
|
243 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
244 |
+
{"type": "message", "message": "AttributeError: 'SimpleCookie' object has no attribute 'jar'", "error": "AttributeError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
logging/2025-02-21.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-02-22.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-02-23.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-02-24.jsonl
ADDED
@@ -0,0 +1,359 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
2 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
3 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
4 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
5 |
+
{"type": "message", "message": "ResponseStatusError: Response 403: ", "error": "ResponseStatusError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "gpt-4"}}
|
6 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: \u6587\u5b57\u8fc7\u957f\uff0c\u8bf7\u5220\u51cf\u540e\u91cd\u8bd5\u3002", "error": "ResponseStatusError", "provider": {"name": "Yqcloud", "url": "https://chat9.yqcloud.top", "label": null, "model": "gpt-4"}}
|
7 |
+
{"type": "message", "message": "ResponseStatusError: Response 403: ", "error": "ResponseStatusError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "gpt-4"}}
|
8 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: \u6587\u5b57\u8fc7\u957f\uff0c\u8bf7\u5220\u51cf\u540e\u91cd\u8bd5\u3002", "error": "ResponseStatusError", "provider": {"name": "Yqcloud", "url": "https://chat9.yqcloud.top", "label": null, "model": "gpt-4"}}
|
9 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4"}}
|
10 |
+
{"type": "message", "message": "ResponseStatusError: Response 522: HTML content", "error": "ResponseStatusError", "provider": {"name": "Mhystical", "url": "https://mhystical.cc", "label": null, "model": "gpt-4"}}
|
11 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4"}}
|
12 |
+
{"type": "message", "message": "ResponseStatusError: Response 522: HTML content", "error": "ResponseStatusError", "provider": {"name": "Mhystical", "url": "https://mhystical.cc", "label": null, "model": "gpt-4"}}
|
13 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4"}}
|
14 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: \u6587\u5b57\u8fc7\u957f\uff0c\u8bf7\u5220\u51cf\u540e\u91cd\u8bd5\u3002", "error": "ResponseStatusError", "provider": {"name": "Yqcloud", "url": "https://chat9.yqcloud.top", "label": null, "model": "gpt-4"}}
|
15 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4"}}
|
16 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
17 |
+
{"type": "message", "message": "Timeout: Failed to perform, curl: (28) Failed to connect to copilot.microsoft.com port 443 after 42092 ms: Couldn't connect to server. See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "Timeout", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "gpt-4"}}
|
18 |
+
{"type": "message", "message": "RuntimeError: coroutine raised StopIteration", "error": "RuntimeError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
19 |
+
{"type": "message", "message": "ConnectionRefusedError: [WinError 1225] \u0423\u0434\u0430\u043b\u0435\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440 \u043e\u0442\u043a\u043b\u043e\u043d\u0438\u043b \u044d\u0442\u043e \u0441\u0435\u0442\u0435\u0432\u043e\u0435 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435", "error": "ConnectionRefusedError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4"}}
|
20 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4"}}
|
21 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: \u6587\u5b57\u8fc7\u957f\uff0c\u8bf7\u5220\u51cf\u540e\u91cd\u8bd5\u3002", "error": "ResponseStatusError", "provider": {"name": "Yqcloud", "url": "https://chat9.yqcloud.top", "label": null, "model": "gpt-4"}}
|
22 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4"}}
|
23 |
+
{"type": "message", "message": "ResponseStatusError: Response 403: ", "error": "ResponseStatusError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "gpt-4"}}
|
24 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4"}}
|
25 |
+
{"type": "message", "message": "ClientOSError: [Errno 104] Connection reset by peer", "error": "ClientOSError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
26 |
+
{"type": "message", "message": "ClientConnectorError: Cannot connect to host liaobots.work:443 ssl:False [Connection reset by peer]", "error": "ClientConnectorError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
27 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
28 |
+
{"type": "error", "error": "UnicodeDecodeError", "message": "UnicodeDecodeError: 'utf-8' codec can't decode bytes in position 15-16: unexpected end of data", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "deepseek-v3"}}
|
29 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
30 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
31 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
32 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
33 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
34 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
35 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
36 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
37 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
38 |
+
{"type": "message", "message": "ClientOSError: [Errno 104] Connection reset by peer", "error": "ClientOSError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
39 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
40 |
+
{"type": "message", "message": "ClientConnectorError: Cannot connect to host liaobots.work:443 ssl:False [Connection reset by peer]", "error": "ClientConnectorError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
41 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
42 |
+
{"type": "message", "message": "ResponseError: Model busy, retry later", "error": "ResponseError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "meta-llama/Llama-3.3-70B-Instruct-Turbo"}}
|
43 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
44 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
45 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
46 |
+
{"type": "message", "message": "ClientOSError: [Errno 104] Connection reset by peer", "error": "ClientOSError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
47 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
48 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
49 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
50 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
51 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
52 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
53 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
54 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
55 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
56 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
57 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
58 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
59 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
60 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
61 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
62 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: {\"action\":\"error\",\"status\":429,\"type\":\"ERR_INPUT_LIMIT\"}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
63 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
64 |
+
{"type": "message", "message": "ClientConnectorError: Cannot connect to host liaobots.work:443 ssl:False [Connection reset by peer]", "error": "ClientConnectorError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
65 |
+
{"type": "message", "message": "ClientOSError: [Errno 104] Connection reset by peer", "error": "ClientOSError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
66 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
67 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "sdxl-turbo"}}
|
68 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "sdxl-turbo"}}
|
69 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: GPU token limit exceeded: data: null\n", "provider": {"name": "HuggingSpace", "url": "https://huggingface.co/spaces", "label": null, "model": "sd-3.5"}}
|
70 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
71 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
72 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "dall-e-3"}}
|
73 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
74 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "sdxl-turbo"}}
|
75 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
76 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
77 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: {\"action\":\"error\",\"status\":429,\"type\":\"ERR_CONVERSATION_LIMIT\"}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
78 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
79 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "midjourney"}}
|
80 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "sdxl-turbo"}}
|
81 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: GPU token limit exceeded: data: null\n", "provider": {"name": "HuggingSpace", "url": "https://huggingface.co/spaces", "label": null, "model": "sd-3.5"}}
|
82 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "flux"}}
|
83 |
+
{"type": "message", "message": "MissingAuthError: Missing \"_U\" cookie", "error": "MissingAuthError", "provider": {"name": "BingCreateImages", "url": "https://www.bing.com/images/create", "label": "Microsoft Designer in Bing", "model": "dall-e-3"}}
|
84 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "dall-e-3"}}
|
85 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "midjourney"}}
|
86 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "midjourney"}}
|
87 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "midjourney"}}
|
88 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
89 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
90 |
+
{"type": "message", "message": "ClientOSError: [Errno 104] Connection reset by peer", "error": "ClientOSError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
91 |
+
{"type": "message", "message": "ClientOSError: [Errno 104] Connection reset by peer", "error": "ClientOSError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
92 |
+
{"type": "message", "message": "ClientConnectorError: Cannot connect to host liaobots.work:443 ssl:False [Connection reset by peer]", "error": "ClientConnectorError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
93 |
+
{"type": "error", "error": "TimeoutError", "message": "TimeoutError: ", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
94 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "sdxl-turbo"}}
|
95 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
96 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
97 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "sdxl-turbo"}}
|
98 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "flux-schnell"}}
|
99 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "midjourney"}}
|
100 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
101 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: {\"action\":\"error\",\"status\":429,\"type\":\"ERR_CONVERSATION_LIMIT\"}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
102 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
103 |
+
{"type": "error", "error": "error", "message": "error: bad character range \\w-= at position 17", "provider": {"name": "Gemini", "url": "https://gemini.google.com", "label": "Google Gemini", "model": "gemini-2.0-flash-thinking-with-apps"}}
|
104 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
105 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
106 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
107 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
108 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
109 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
110 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
111 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
112 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
113 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
114 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
115 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
116 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: You have exceeded your GPU quota (75s requested vs. 64s left).", "provider": {"name": "G4F", "url": "https://huggingface.co/spaces/roxky/g4f-space", "label": "G4F framework", "model": "flux"}}
|
117 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: Your auth method doesn't allow you to make inference requests", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "llama-3.2-11b"}}
|
118 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: Input validation error: `inputs` tokens + `max_new_tokens` must be <= 4096. Given: 2548 `inputs` tokens and 2048 `max_new_tokens`", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "llama-3.2-11b"}}
|
119 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "grok-2"}}
|
120 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
121 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
122 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 429: {\"detail\":{\"message\":\"You have sent too many messages to the model. Please try again later.\",\"code\":\"model_cap_exceeded\",\"clears_in\":0}}", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
123 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
124 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
125 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
126 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
127 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
128 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
129 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
130 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
131 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
132 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
133 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
134 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4"}}
|
135 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: \u6587\u5b57\u8fc7\u957f\uff0c\u8bf7\u5220\u51cf\u540e\u91cd\u8bd5\u3002", "error": "ResponseStatusError", "provider": {"name": "Yqcloud", "url": "https://chat9.yqcloud.top", "label": null, "model": "gpt-4"}}
|
136 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4"}}
|
137 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4"}}
|
138 |
+
{"type": "message", "message": "ResponseStatusError: Response 522: HTML content", "error": "ResponseStatusError", "provider": {"name": "Mhystical", "url": "https://mhystical.cc", "label": null, "model": "gpt-4"}}
|
139 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4"}}
|
140 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4"}}
|
141 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
142 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
143 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nJmuz: ResponseStatusError: Response 429: Rate limit\nLiaobots: ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
144 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
145 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
146 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nLiaobots: ResponseStatusError: Response 402: Error\nJmuz: ResponseStatusError: Response 429: Rate limit", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
147 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
148 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
149 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nLiaobots: ResponseStatusError: Response 402: Error\nJmuz: ResponseStatusError: Response 429: Rate limit", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
150 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
151 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
152 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nLiaobots: ResponseStatusError: Response 402: Error\nJmuz: ResponseStatusError: Response 429: Rate limit", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
153 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4o-mini"}}
|
154 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o-mini"}}
|
155 |
+
{"type": "message", "message": "ClientConnectorError: Cannot connect to host chatgpt.es:443 ssl:default [Connection reset by peer]", "error": "ClientConnectorError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o-mini"}}
|
156 |
+
{"type": "message", "message": "ClientConnectorError: Cannot connect to host jmuz.me:443 ssl:default [Connection reset by peer]", "error": "ClientConnectorError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o-mini"}}
|
157 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini"}}
|
158 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
159 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
160 |
+
{"type": "message", "message": "ClientConnectorError: Cannot connect to host liaobots.work:443 ssl:False [Connection reset by peer]", "error": "ClientConnectorError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4o-mini"}}
|
161 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o-mini"}}
|
162 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o-mini"}}
|
163 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini"}}
|
164 |
+
{"type": "message", "message": "TimeoutError: Request timed out: ", "error": "TimeoutError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
165 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
166 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
167 |
+
{"type": "message", "message": "RuntimeError: Error: {'event': 'error', 'id': '0', 'errorCode': 'empty-text'}", "error": "RuntimeError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "Copilot"}}
|
168 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 403: Query blocked", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "blackboxai"}}
|
169 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
170 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
171 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
172 |
+
{"type": "error", "error": "IndexError", "message": "IndexError: list index out of range", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "o3-mini-high"}}
|
173 |
+
{"type": "error", "error": "IndexError", "message": "IndexError: list index out of range", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o-mini"}}
|
174 |
+
{"type": "error", "error": "IndexError", "message": "IndexError: list index out of range", "provider": {"name": "OpenaiAccount", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
175 |
+
{"type": "message", "message": "TimeoutError: Request timed out: ", "error": "TimeoutError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
176 |
+
{"type": "message", "message": "SSLError: Failed to perform, curl: (35) Recv failure: Connection reset by peer. See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "SSLError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "Copilot"}}
|
177 |
+
{"type": "error", "error": "RuntimeError", "message": "RuntimeError: coroutine raised StopIteration", "provider": {"name": "You", "url": "https://you.com", "label": "You.com", "model": "claude-3.5-sonnet"}}
|
178 |
+
{"type": "message", "message": "TimeoutError: Request timed out: ", "error": "TimeoutError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
179 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
180 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
181 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: GPU token limit exceeded: data: null\n", "provider": {"name": "HuggingSpace", "url": "https://huggingface.co/spaces", "label": null, "model": "sd-3.5"}}
|
182 |
+
{"type": "message", "message": "MissingAuthError: Missing \"_U\" cookie", "error": "MissingAuthError", "provider": {"name": "BingCreateImages", "url": "https://www.bing.com/images/create", "label": "Microsoft Designer in Bing", "model": "dall-e-3"}}
|
183 |
+
{"type": "message", "message": "RuntimeError: coroutine raised StopIteration", "error": "RuntimeError", "provider": {"name": "MicrosoftDesigner", "url": "https://designer.microsoft.com", "label": "Microsoft Designer", "model": "dall-e-3"}}
|
184 |
+
{"type": "message", "message": "MissingAuthError: Missing \"_U\" cookie", "error": "MissingAuthError", "provider": {"name": "BingCreateImages", "url": "https://www.bing.com/images/create", "label": "Microsoft Designer in Bing", "model": "dall-e-3"}}
|
185 |
+
{"type": "message", "message": "RuntimeError: coroutine raised StopIteration", "error": "RuntimeError", "provider": {"name": "CopilotAccount", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "dall-e-3"}}
|
186 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "OpenaiAccount", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "dall-e-3"}}
|
187 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 503: HTML content", "provider": {"name": "HuggingFaceAPI", "url": "https://api-inference.huggingface.com", "label": "HuggingFace (Inference API)", "model": "qwen-2-vl-7b"}}
|
188 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: {\"error\":\"DeepSeek API error: 402 Payment Required - {\\\"error\\\":{\\\"message\\\":\\\"Insufficient Balance\\\",\\\"type\\\":\\\"unknown_error\\\",\\\"param\\\":null,\\\"code\\\":\\\"invalid_request_error\\\"}}\",\"status\":500}", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "deepseek-r1"}}
|
189 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
190 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
191 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
192 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
193 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
194 |
+
{"type": "message", "message": "NameError: name 'CurlMime' is not defined", "error": "NameError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-r1"}}
|
195 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: {\"error\":\"DeepSeek API error: 402 Payment Required - {\\\"error\\\":{\\\"message\\\":\\\"Insufficient Balance\\\",\\\"type\\\":\\\"unknown_error\\\",\\\"param\\\":null,\\\"code\\\":\\\"invalid_request_error\\\"}}\",\"status\":500}", "error": "ResponseStatusError", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "deepseek-r1"}}
|
196 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: Model Qwen/Qwen2-VL-7B-Instruct is currently loading", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "Qwen/Qwen2-VL-7B-Instruct"}}
|
197 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: Model Qwen/Qwen2-VL-7B-Instruct is currently loading", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "Qwen/Qwen2-VL-7B-Instruct"}}
|
198 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
199 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
200 |
+
{"type": "error", "error": "MissingAuthError", "message": "MissingAuthError: Add a \"api_key\"", "provider": {"name": "DeepSeek", "url": "https://platform.deepseek.com", "label": "DeepSeek", "model": "deepseek-chat"}}
|
201 |
+
{"type": "error", "error": "MissingAuthError", "message": "MissingAuthError: Add a \"api_key\"", "provider": {"name": "DeepSeek", "url": "https://platform.deepseek.com", "label": "DeepSeek", "model": "deepseek-chat"}}
|
202 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
203 |
+
{"type": "message", "message": "ClientPayloadError: Response payload is not completed: <ContentLengthError: 400, message='Not enough data for satisfy content length header.'>", "error": "ClientPayloadError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
204 |
+
{"type": "message", "message": "AttributeError: 'SimpleCookie' object has no attribute 'jar'", "error": "AttributeError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
205 |
+
{"type": "message", "message": "TimeoutError: Request timed out: ", "error": "TimeoutError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
206 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: You have exceeded your GPU quota (75s requested vs. 48s left).", "provider": {"name": "G4F", "url": "https://huggingface.co/spaces/roxky/g4f-space", "label": "G4F framework", "model": "flux-dev"}}
|
207 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
208 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-r1"}}
|
209 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: You have exceeded your GPU quota (75s requested vs. 50s left).", "provider": {"name": "G4F", "url": "https://huggingface.co/spaces/roxky/g4f-space", "label": "G4F framework", "model": "flux-dev"}}
|
210 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
211 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
212 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "midjourney"}}
|
213 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "flux-pro"}}
|
214 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiAccount", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "dall-e-3"}}
|
215 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "dall-e-3"}}
|
216 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "sdxl-turbo"}}
|
217 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: You have exceeded your GPU quota (75s requested vs. 52s left).", "provider": {"name": "HuggingSpace", "url": "https://huggingface.co/spaces", "label": null, "model": "black-forest-labs-flux-1-dev"}}
|
218 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI (Image)", "model": "sdxl-turbo"}}
|
219 |
+
{"type": "error", "error": "RetryNoProviderError", "message": "RetryNoProviderError: No provider found"}
|
220 |
+
{"type": "error", "error": "RetryNoProviderError", "message": "RetryNoProviderError: No provider found"}
|
221 |
+
{"type": "error", "error": "RetryNoProviderError", "message": "RetryNoProviderError: No provider found"}
|
222 |
+
{"type": "error", "error": "RetryNoProviderError", "message": "RetryNoProviderError: No provider found"}
|
223 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
224 |
+
{"type": "message", "message": "ClientOSError: [Errno 104] Connection reset by peer", "error": "ClientOSError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
225 |
+
{"type": "error", "error": "RetryNoProviderError", "message": "RetryNoProviderError: No provider found"}
|
226 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
227 |
+
{"type": "message", "message": "ClientOSError: [Errno 104] Connection reset by peer", "error": "ClientOSError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
228 |
+
{"type": "message", "message": "ClientConnectorError: Cannot connect to host liaobots.work:443 ssl:False [Connection reset by peer]", "error": "ClientConnectorError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
229 |
+
{"type": "message", "message": "ClientConnectorError: Cannot connect to host liaobots.work:443 ssl:False [Connection reset by peer]", "error": "ClientConnectorError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
230 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
231 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
232 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o-mini"}}
|
233 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o-mini"}}
|
234 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini"}}
|
235 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o-mini"}}
|
236 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o-mini"}}
|
237 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o-mini"}}
|
238 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini"}}
|
239 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gemini-2.0-flash-thinking"}}
|
240 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gemini-2.0-flash-thinking"}}
|
241 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "grok-2"}}
|
242 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "grok-2"}}
|
243 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
244 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
245 |
+
{"type": "message", "message": "ClientOSError: [Errno 104] Connection reset by peer", "error": "ClientOSError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
246 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
247 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
248 |
+
{"type": "message", "message": "ClientConnectorError: Cannot connect to host liaobots.work:443 ssl:False [Connection reset by peer]", "error": "ClientConnectorError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
249 |
+
{"type": "message", "message": "ClientOSError: [Errno 104] Connection reset by peer", "error": "ClientOSError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
250 |
+
{"type": "message", "message": "ConnectionRefusedError: [WinError 1225] \u0423\u0434\u0430\u043b\u0435\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440 \u043e\u0442\u043a\u043b\u043e\u043d\u0438\u043b \u044d\u0442\u043e \u0441\u0435\u0442\u0435\u0432\u043e\u0435 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435", "error": "ConnectionRefusedError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
251 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
252 |
+
{"type": "message", "message": "ConnectionRefusedError: [WinError 1225] \u0423\u0434\u0430\u043b\u0435\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440 \u043e\u0442\u043a\u043b\u043e\u043d\u0438\u043b \u044d\u0442\u043e \u0441\u0435\u0442\u0435\u0432\u043e\u0435 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435", "error": "ConnectionRefusedError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
253 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
254 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
255 |
+
{"type": "message", "message": "ResponseStatusError: Response 403: ", "error": "ResponseStatusError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "Copilot"}}
|
256 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
257 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: {\"error\":\"DeepSeek API error: 402 Payment Required - {\\\"error\\\":{\\\"message\\\":\\\"Insufficient Balance\\\",\\\"type\\\":\\\"unknown_error\\\",\\\"param\\\":null,\\\"code\\\":\\\"invalid_request_error\\\"}}\",\"status\":500}", "error": "ResponseStatusError", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "deepseek-r1"}}
|
258 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
259 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: {\"error\":\"DeepSeek API error: 402 Payment Required - {\\\"error\\\":{\\\"message\\\":\\\"Insufficient Balance\\\",\\\"type\\\":\\\"unknown_error\\\",\\\"param\\\":null,\\\"code\\\":\\\"invalid_request_error\\\"}}\",\"status\":500}", "error": "ResponseStatusError", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "deepseek-r1"}}
|
260 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-r1"}}
|
261 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-r1"}}
|
262 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-r1"}}
|
263 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
264 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
265 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: {\"error\":\"DeepSeek API error: 402 Payment Required - {\\\"error\\\":{\\\"message\\\":\\\"Insufficient Balance\\\",\\\"type\\\":\\\"unknown_error\\\",\\\"param\\\":null,\\\"code\\\":\\\"invalid_request_error\\\"}}\",\"status\":500}", "error": "ResponseStatusError", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "deepseek-r1"}}
|
266 |
+
{"type": "message", "message": "ResponseStatusError: Response 401: {\"error\":\"Invalid username or password.\"}", "error": "ResponseStatusError", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "deepseek-r1"}}
|
267 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
268 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
269 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nJmuz: ResponseStatusError: Response 429: Rate limit\nLiaobots: ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
270 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
271 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
272 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nLiaobots: ResponseStatusError: Response 402: Error\nJmuz: ResponseStatusError: Response 429: Rate limit", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
273 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gemini-2.0-flash-thinking"}}
|
274 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gemini-2.0-flash-thinking"}}
|
275 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gemini-2.0-flash-thinking"}}
|
276 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
277 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
278 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nJmuz: ResponseStatusError: Response 429: Rate limit\nLiaobots: ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
279 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
280 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
281 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nJmuz: ResponseStatusError: Response 429: Rate limit\nLiaobots: ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
282 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
283 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
284 |
+
{"type": "message", "message": "ClientConnectorError: Cannot connect to host liaobots.work:443 ssl:False [Connection reset by peer]", "error": "ClientConnectorError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
285 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
286 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
287 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
288 |
+
{"type": "message", "message": "ClientConnectorError: Cannot connect to host liaobots.work:443 ssl:False [Connection reset by peer]", "error": "ClientConnectorError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
289 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 429: {\"detail\":{\"message\":\"You have sent too many messages to the model. Please try again later.\",\"code\":\"model_cap_exceeded\",\"clears_in\":0}}", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
290 |
+
{"type": "message", "message": "ClientOSError: [Errno 104] Connection reset by peer", "error": "ClientOSError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
291 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
292 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
293 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
294 |
+
{"type": "error", "error": "RetryNoProviderError", "message": "RetryNoProviderError: No provider found"}
|
295 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
296 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
297 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
298 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
299 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
300 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
301 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
302 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
303 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-v3"}}
|
304 |
+
{"type": "message", "message": "ClientOSError: [Errno 104] Connection reset by peer", "error": "ClientOSError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
305 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: {\"action\":\"error\",\"status\":429,\"type\":\"ERR_INPUT_LIMIT\"}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
306 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
307 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
308 |
+
{"type": "message", "message": "ClientOSError: [Errno 104] Connection reset by peer", "error": "ClientOSError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
309 |
+
{"type": "message", "message": "ClientOSError: [Errno 104] Connection reset by peer", "error": "ClientOSError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
310 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-chat"}}
|
311 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-chat"}}
|
312 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: GPU token limit exceeded: data: null\n", "provider": {"name": "HuggingSpace", "url": "https://huggingface.co/spaces", "label": null, "model": "sd-3.5"}}
|
313 |
+
{"type": "error", "error": "RetryNoProviderError", "message": "RetryNoProviderError: No provider found"}
|
314 |
+
{"type": "error", "error": "RetryNoProviderError", "message": "RetryNoProviderError: No provider found"}
|
315 |
+
{"type": "error", "error": "RetryNoProviderError", "message": "RetryNoProviderError: No provider found"}
|
316 |
+
{"type": "error", "error": "RetryNoProviderError", "message": "RetryNoProviderError: No provider found"}
|
317 |
+
{"type": "error", "error": "RetryNoProviderError", "message": "RetryNoProviderError: No provider found"}
|
318 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: ", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "flux"}}
|
319 |
+
{"type": "message", "message": "ResponseError: Error generating image: null\n\n", "error": "ResponseError", "provider": {"name": "HuggingSpace", "url": "https://huggingface.co/spaces", "label": null, "model": "flux"}}
|
320 |
+
{"type": "message", "message": "InvalidStatus: server rejected WebSocket connection: HTTP 500", "error": "InvalidStatus", "provider": {"name": "OpenaiAccount", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "dall-e-3"}}
|
321 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 431: ", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "dall-e-3"}}
|
322 |
+
{"type": "message", "message": "ConnectionError: HTTPSConnectionPool(host='huggingface.co', port=443): Max retries exceeded with url: /api/models?inference=warm&pipeline_tag=text-generation (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0c397d3390>: Failed to establish a new connection: [Errno 101] Network is unreachable'))", "error": "ConnectionError", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "deepseek-r1"}}
|
323 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "grok-2"}}
|
324 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "grok-2"}}
|
325 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
326 |
+
{"type": "error", "error": "MissingAuthError", "message": "MissingAuthError: ('Missing or invalid \"__Secure-1PSID\" cookie', RuntimeError('coroutine raised StopIteration'))", "provider": {"name": "Gemini", "url": "https://gemini.google.com", "label": "Google Gemini", "model": "gemini-2.0"}}
|
327 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: GPU token limit exceeded: data: null\n", "provider": {"name": "G4F", "url": "https://huggingface.co/spaces/roxky/g4f-space", "label": "G4F framework", "model": "flux"}}
|
328 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 503: HTML content", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
329 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 503: HTML content", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
330 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 400: {\"error\":\"Model requires a Pro subscription; check out hf.co/pricing to learn more. Make sure to include your HF token in your query.\"}", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "CohereForAI/c4ai-command-r-plus-08-2024"}}
|
331 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 400: {\"error\":\"Model requires a Pro subscription; check out hf.co/pricing to learn more. Make sure to include your HF token in your query.\"}", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "meta-llama/Llama-3.3-70B-Instruct"}}
|
332 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
333 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
334 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nLiaobots: ResponseStatusError: Response 402: Error\nJmuz: ResponseStatusError: Response 429: Rate limit", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
335 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
336 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
337 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nLiaobots: ResponseStatusError: Response 402: Error\nJmuz: ResponseStatusError: Response 429: Rate limit", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
338 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
339 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
340 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nJmuz: ResponseStatusError: Response 429: Rate limit\nLiaobots: ResponseStatusError: Response 402: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
341 |
+
{"type": "message", "message": "MissingRequirementsError: Install or update \"curl_cffi\" package | pip install -U curl_cffi", "error": "MissingRequirementsError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "gpt-4o"}}
|
342 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 400: {\"error\":\"Model requires a Pro subscription; check out hf.co/pricing to learn more. Make sure to include your HF token in your query.\"}", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "meta-llama/Llama-2-13b-chat-hf"}}
|
343 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: {\"error\":\"HfApiJson(Deserialize(Error(\\\"unknown variant `gguf`, expected one of `text-generation-inference`, `transformers`, `allennlp`, `flair`, `espnet`, `asteroid`, `speechbrain`, `timm`, `sentence-transformers`, `spacy`, `sklearn`, `stanza`, `adapter-transformers`, `fasttext`, `fairseq`, `pyannote-audio`, `doctr`, `nemo`, `fastai`, `k2`, `diffusers`, `paddlenlp`, `mindspore`, `open_clip`, `span-marker`, `bertopic`, `peft`, `setfit`\\\", line: 1, column: 132)))\"}", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "city96/FLUX.1-dev-gguf"}}
|
344 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
345 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptt", "url": "https://chatgptt.me", "label": null, "model": "gpt-4o"}}
|
346 |
+
{"type": "message", "message": "ConnectionRefusedError: [WinError 1225] \u0423\u0434\u0430\u043b\u0435\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440 \u043e\u0442\u043a\u043b\u043e\u043d\u0438\u043b \u044d\u0442\u043e \u0441\u0435\u0442\u0435\u0432\u043e\u0435 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435", "error": "ConnectionRefusedError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
347 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini"}}
|
348 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: HTML content", "error": "ResponseStatusError", "provider": {"name": "CablyAI", "url": "https://cablyai.com", "label": "CablyAI", "model": "gpt-4o-mini"}}
|
349 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
350 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
351 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
352 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
353 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 400: {\"error\":\"Authorization header is correct, but the token seems invalid\"}", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "sd-3.5"}}
|
354 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: Authorization header is correct, but the token seems invalid", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "llama-3.2-11b"}}
|
355 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: Your auth method doesn't allow you to make inference requests", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "llama-3.2-11b"}}
|
356 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
357 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
358 |
+
{"type": "message", "message": "RuntimeError: Error: {'event': 'error', 'id': '0', 'errorCode': 'text-too-long'}", "error": "RuntimeError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "Copilot"}}
|
359 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
logging/2025-02-27.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-02-28.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-03-01.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-03-02.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-03-09.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-03-10.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-03-11.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-03-12.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-03-13.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-03-14.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-03-15.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-03-16.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-03-17.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-03-18.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-03-19.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-03-20.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|
logging/2025-03-21.jsonl
ADDED
@@ -0,0 +1,287 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet"}}
|
2 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet"}}
|
3 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 422: {\"detail\":\"Invalid conversation body\"}", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "dall-e-3"}}
|
4 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4"}}
|
5 |
+
{"type": "message", "message": "ResponseStatusError: Response 422: {\"detail\":\"Invalid conversation body\"}", "error": "ResponseStatusError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4"}}
|
6 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4"}}
|
7 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
8 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nLiaobots: ResponseStatusError: Response 500: Error\nJmuz: ResponseStatusError: Response 503: HTML content", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
9 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
10 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4"}}
|
11 |
+
{"type": "error", "error": "TypeError", "message": "TypeError: object StreamResponse can't be used in 'await' expression", "provider": {"name": "Grok", "url": "https://grok.com", "label": "Grok AI", "model": "grok-3"}}
|
12 |
+
{"type": "error", "error": "TypeError", "message": "TypeError: argument of type 'NoneType' is not iterable", "provider": {"name": "Grok", "url": "https://grok.com", "label": "Grok AI", "model": "grok-3"}}
|
13 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "qwen-2.5-coder-32b"}}
|
14 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet"}}
|
15 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet"}}
|
16 |
+
{"type": "message", "message": "ConnectionRefusedError: [Errno 111] Connect call failed ('', 48575)", "error": "ConnectionRefusedError", "provider": {"name": "OpenaiAccount", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "dall-e-3"}}
|
17 |
+
{"type": "message", "message": "ConnectionRefusedError: [Errno 111] Connect call failed ('', 59501)", "error": "ConnectionRefusedError", "provider": {"name": "CopilotAccount", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "dall-e-3"}}
|
18 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "claude-sonnet-3.7"}}
|
19 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "claude-sonnet-3.7"}}
|
20 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "claude-sonnet-3.7"}}
|
21 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 404: {\"code\":5,\"message\":\"Not Found\",\"details\":[]}", "provider": {"name": "Grok", "url": "https://grok.com", "label": "Grok AI", "model": "grok-3-thinking"}}
|
22 |
+
{"type": "message", "message": "ResponseStatusError: Response 418: {\"action\":\"error\",\"status\":418,\"type\":\"ERR_CHALLENGE\",\"overrideCode\":\"e1b9\",\"cd\":{\"cc\":\"duckchat\",\"e\":0,\"er\":null,\"gk\":0,\"i\":\"3\",\"iadb\":1,\"o\":\"zMEkoUajjY1k%2FklP5RsCYbp1fTIET5EK%2F%2FStqQgilJc%3D%0A\",\"p\":\"d1870b4156834f9ebcc8d221cb953700-51f86f8f3efa42048c9fd4a42cbcd66d-5e6714da571b4c8895e1d949f47cedc2-23c429c4781b4da5b088543d2d25f960-2016dfd648594ed283018b71e9f1d02f-bb8d1549a30d4cada43b31146ebfc7ba-d13828125211402eaef44405520c4080-f15259dcefb043b1b951960d8091901b-eb6456d117ec4961974f20d674215b88\",\"q\":\"\",\"r\":\"euw\",\"s\":\"aichat\",\"sc\":1}}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4"}}
|
23 |
+
{"type": "message", "message": "ResponseStatusError: Response 422: {\"detail\":\"Invalid conversation body\"}", "error": "ResponseStatusError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4"}}
|
24 |
+
{"type": "message", "message": "ResponseStatusError: Response 418: {\"action\":\"error\",\"status\":418,\"type\":\"ERR_CHALLENGE\",\"overrideCode\":\"e1b9\",\"cd\":{\"cc\":\"duckchat\",\"e\":0,\"er\":null,\"gk\":0,\"i\":\"3\",\"iadb\":1,\"o\":\"GVz7p4bZW%2BY39yoN2SQtAdX33vtWeXWmIQ8epGq4tiA%3D%0A\",\"p\":\"d1870b4156834f9ebcc8d221cb953700-51f86f8f3efa42048c9fd4a42cbcd66d-5e6714da571b4c8895e1d949f47cedc2-23c429c4781b4da5b088543d2d25f960-2016dfd648594ed283018b71e9f1d02f-bb8d1549a30d4cada43b31146ebfc7ba-d13828125211402eaef44405520c4080-f15259dcefb043b1b951960d8091901b-eb6456d117ec4961974f20d674215b88\",\"q\":\"\",\"r\":\"euw\",\"s\":\"aichat\",\"sc\":1}}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4"}}
|
25 |
+
{"type": "error", "error": "RuntimeError", "message": "RuntimeError: Invalid response: {'event': 'done', 'messageId': 'jokVed6LfyAGQStzESnpn', 'id': '3'}", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "gpt-4"}}
|
26 |
+
{"type": "message", "message": "ResponseStatusError: Response 418: {\"action\":\"error\",\"status\":418,\"type\":\"ERR_CHALLENGE\",\"overrideCode\":\"e1b9\",\"cd\":{\"cc\":\"duckchat\",\"e\":0,\"er\":null,\"gk\":0,\"i\":\"3\",\"iadb\":1,\"o\":\"xPsm67xEEA3XRRW8LKVpPfRfGxMOBYZiDBjRUQ3u%2FqA%3D%0A\",\"p\":\"bf251f89910240249a5344f45aa32a20-f493adb7e9cf4467850ff6dc886ade3e-91f6999ebca44cf0be88b04b9955d71f-fd265a876512415fa841435c7ef39b35-356b22fd3959465da7d35ffd07972efa-920b8219d7384a55b67e07c00077965c-bf533c68153f4d3db74d31b33a9d1707-eb6456d117ec4961974f20d674215b88-80b5b5bf2cf8443181078ae984664279\",\"q\":\"\",\"r\":\"euw\",\"s\":\"aichat\",\"sc\":1}}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "o3-mini"}}
|
27 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "o3-mini"}}
|
28 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "o3-mini"}}
|
29 |
+
{"type": "message", "message": "ResponseStatusError: Response 418: {\"action\":\"error\",\"status\":418,\"type\":\"ERR_CHALLENGE\",\"overrideCode\":\"e1b9\",\"cd\":{\"cc\":\"duckchat\",\"e\":0,\"er\":null,\"gk\":0,\"i\":\"3\",\"iadb\":1,\"o\":\"GM5aokV97YJ1KBJBdhcaIVzIHSZUP%2BeIe3AVZgmBp5A%3D%0A\",\"p\":\"bf251f89910240249a5344f45aa32a20-f493adb7e9cf4467850ff6dc886ade3e-91f6999ebca44cf0be88b04b9955d71f-fd265a876512415fa841435c7ef39b35-356b22fd3959465da7d35ffd07972efa-920b8219d7384a55b67e07c00077965c-bf533c68153f4d3db74d31b33a9d1707-eb6456d117ec4961974f20d674215b88-80b5b5bf2cf8443181078ae984664279\",\"q\":\"\",\"r\":\"euw\",\"s\":\"aichat\",\"sc\":1}}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "o3-mini"}}
|
30 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet"}}
|
31 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-r1"}}
|
32 |
+
{"type": "message", "message": "ResponseStatusError: Response 401: {\"error\":\"Invalid username or password.\"}", "error": "ResponseStatusError", "provider": {"name": "HuggingFaceAPI", "url": "https://api-inference.huggingface.com", "label": "HuggingFace (hf-inference)", "model": "deepseek-r1"}}
|
33 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
34 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
35 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nLiaobots: ResponseStatusError: Response 500: Error\nJmuz: ResponseStatusError: Response 503: HTML content", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
36 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
37 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
38 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nLiaobots: ResponseStatusError: Response 500: Error\nJmuz: ResponseStatusError: Response 503: HTML content", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
39 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
40 |
+
{"type": "message", "message": "ModuleNotFoundError: No module named '_ctypes'", "error": "ModuleNotFoundError", "provider": {"name": "OpenaiAccount", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "o1"}}
|
41 |
+
{"type": "message", "message": "ResponseStatusError: Response 418: {\"action\":\"error\",\"status\":418,\"type\":\"ERR_CHALLENGE\",\"overrideCode\":\"e1b9\",\"cd\":{\"cc\":\"duckchat\",\"e\":0,\"er\":null,\"gk\":0,\"i\":\"3\",\"iadb\":1,\"o\":\"Fc802acHsc8S%2FFms%2FbaJyOG7FvNLvfu%2BOLj98LZ4xE8%3D%0A\",\"p\":\"0bbae195b8d54e0dba0eb6a1de2a4647-b41bd0ef5bd24f7696d8716664fc3e3c-81d2944ab2c24601b9e065f1d20cb3ea-91f6999ebca44cf0be88b04b9955d71f-c58f101fe6524efab6627c74b552fe29-51d285667b0b40e48533feb239f0164a-09c9bfdf475d4916b4c8a47b292878e6-4e8e16c05404429093737c694b94d622-bba533ee6f214de5913ef897380987bd\",\"q\":\"\",\"r\":\"inc\",\"s\":\"aichat\",\"sc\":1}}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "o3-mini"}}
|
42 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "o3-mini"}}
|
43 |
+
{"type": "error", "error": "ModuleNotFoundError", "message": "ModuleNotFoundError: No module named '_ctypes'", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
44 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
45 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
46 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nJmuz: ResponseStatusError: Response 503: HTML content\nLiaobots: ResponseStatusError: Response 500: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
47 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet"}}
|
48 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "PollinationsImage", "model": "midjourney"}}
|
49 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "PollinationsImage", "model": "midjourney"}}
|
50 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "PollinationsImage", "model": "midjourney"}}
|
51 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 503: HTML content", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "qwen-2.5-72b"}}
|
52 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 429: Rate limit", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "qwen-2.5-72b"}}
|
53 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 429: Rate limit", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "qwen-2.5-72b"}}
|
54 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 429: Rate limit", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "qwen-2.5-72b"}}
|
55 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "qwen-2.5-coder-32b"}}
|
56 |
+
{"type": "message", "message": "ModuleNotFoundError: No module named '_ctypes'", "error": "ModuleNotFoundError", "provider": {"name": "CopilotAccount", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "dall-e-3"}}
|
57 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: GPU token limit exceeded: data: null\n", "provider": {"name": "HuggingSpace", "url": "https://huggingface.co/spaces", "label": null, "model": "sd-3.5"}}
|
58 |
+
{"type": "message", "message": "ModuleNotFoundError: No module named '_ctypes'", "error": "ModuleNotFoundError", "provider": {"name": "OpenaiAccount", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "dall-e-3"}}
|
59 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet"}}
|
60 |
+
{"type": "message", "message": "ClientPayloadError: Response payload is not completed: <ContentLengthError: 400, message='Not enough data for satisfy content length header.'>", "error": "ClientPayloadError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "qwen-2.5-coder-32b"}}
|
61 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet-thinking"}}
|
62 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet-thinking"}}
|
63 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
64 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
65 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nJmuz: ResponseStatusError: Response 503: HTML content\nLiaobots: ResponseStatusError: Response 500: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
66 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gemini-2.0-flash-thinking"}}
|
67 |
+
{"type": "message", "message": "MissingRequirementsError: Install or update \"curl_cffi\" package | pip install -U curl_cffi", "error": "MissingRequirementsError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "gpt-4o"}}
|
68 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
69 |
+
{"type": "message", "message": "ResponseStatusError: Response 400: {\"error\": {\"code\": 400, \"message\": \"Invalid model/host combination Llama-3-1-Tulu-3-70B/inferd\"}}", "error": "ResponseStatusError", "provider": {"name": "AllenAI", "url": "https://playground.allenai.org", "label": "Ai2 Playground", "model": "llama-3.1-405b"}}
|
70 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "llama-3.1-405b"}}
|
71 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nAllenAI: ResponseStatusError: Response 400: {\"error\": {\"code\": 400, \"message\": \"Invalid model/host combination Llama-3-1-Tulu-3-70B/inferd\"}}\nJmuz: ResponseStatusError: Response 503: HTML content", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "llama-3.1-405b"}}
|
72 |
+
{"type": "message", "message": "MissingRequirementsError: Install or update \"curl_cffi\" package | pip install -U curl_cffi", "error": "MissingRequirementsError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
73 |
+
{"type": "message", "message": "MissingRequirementsError: Install or update \"curl_cffi\" package | pip install -U curl_cffi", "error": "MissingRequirementsError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "gpt-4o"}}
|
74 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
75 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4o"}}
|
76 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
77 |
+
{"type": "message", "message": "ClientPayloadError: Response payload is not completed: <ContentLengthError: 400, message='Not enough data for satisfy content length header.'>", "error": "ClientPayloadError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
78 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4o"}}
|
79 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4o"}}
|
80 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
81 |
+
{"type": "message", "message": "MissingRequirementsError: Install or update \"curl_cffi\" package | pip install -U curl_cffi", "error": "MissingRequirementsError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
82 |
+
{"type": "message", "message": "ClientPayloadError: Response payload is not completed: <ContentLengthError: 400, message='Not enough data for satisfy content length header.'>", "error": "ClientPayloadError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
83 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
84 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4o"}}
|
85 |
+
{"type": "message", "message": "MissingRequirementsError: Install or update \"curl_cffi\" package | pip install -U curl_cffi", "error": "MissingRequirementsError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "gpt-4o"}}
|
86 |
+
{"type": "message", "message": "MissingRequirementsError: Install or update \"curl_cffi\" package | pip install -U curl_cffi", "error": "MissingRequirementsError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
87 |
+
{"type": "message", "message": "ClientPayloadError: Response payload is not completed: <ContentLengthError: 400, message='Not enough data for satisfy content length header.'>", "error": "ClientPayloadError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
88 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiAccount", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "o1"}}
|
89 |
+
{"type": "error", "error": "ValueError", "message": "ValueError: I/O operation on closed file.", "provider": {"name": "HuggingFaceAPI", "url": "https://api-inference.huggingface.com", "label": "HuggingFace (fireworks-ai)", "model": "meta-llama/Llama-3.2-11B-Vision-Instruct"}}
|
90 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiAccount", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "o1"}}
|
91 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet-thinking"}}
|
92 |
+
{"type": "message", "message": "ResponseStatusError: Response 400: {\"error\": {\"code\": 400, \"message\": \"inappropriate_prompt\"}}", "error": "ResponseStatusError", "provider": {"name": "AllenAI", "url": "https://playground.allenai.org", "label": "Ai2 Playground", "model": "tulu3-405b"}}
|
93 |
+
{"type": "message", "message": "ResponseStatusError: Response 401: {\"error\":\"Invalid username or password.\"}", "error": "ResponseStatusError", "provider": {"name": "HuggingFaceAPI", "url": "https://api-inference.huggingface.com", "label": "HuggingFace (hf-inference)", "model": "deepseek-r1"}}
|
94 |
+
{"type": "message", "message": "ResponseError: Model busy, retry later", "error": "ResponseError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-r1"}}
|
95 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
96 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiAccount", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "o1"}}
|
97 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gemini-2.0-pro"}}
|
98 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
99 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gemini-2.0-pro"}}
|
100 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gemini-2.0-pro"}}
|
101 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
102 |
+
{"type": "message", "message": "MissingRequirementsError: Install or update \"curl_cffi\" package | pip install -U curl_cffi", "error": "MissingRequirementsError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
103 |
+
{"type": "message", "message": "ClientPayloadError: Response payload is not completed: <ContentLengthError: 400, message='Not enough data for satisfy content length header.'>", "error": "ClientPayloadError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
104 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
105 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nLiaobots: ResponseStatusError: Response 500: Error\nJmuz: ClientPayloadError: Response payload is not completed: <ContentLengthError: 400, message='Not enough data for satisfy content length header.'>", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
106 |
+
{"type": "message", "message": "ClientPayloadError: Response payload is not completed: <ContentLengthError: 400, message='Not enough data for satisfy content length header.'>", "error": "ClientPayloadError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
107 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
108 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
109 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nLiaobots: ResponseStatusError: Response 500: Error\nJmuz: ResponseStatusError: Response 429: Rate limit", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
110 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
111 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nJmuz: ResponseStatusError: Response 429: Rate limit\nLiaobots: ResponseStatusError: Response 500: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
112 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
113 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet"}}
|
114 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet"}}
|
115 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "qwen-2.5-coder-32b"}}
|
116 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet"}}
|
117 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet"}}
|
118 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: You have reached your request limit for the day.", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "gpt-4o"}}
|
119 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
120 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
121 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
122 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
123 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4o"}}
|
124 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: You have reached your request limit for the day.", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "gpt-4o"}}
|
125 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
126 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4o"}}
|
127 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
128 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: You have reached your request limit for the day.", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "gpt-4o"}}
|
129 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
130 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet-thinking"}}
|
131 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet"}}
|
132 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet"}}
|
133 |
+
{"type": "error", "error": "JSONDecodeError", "message": "JSONDecodeError: Unterminated string starting at: line 1 column 7 (char 6)", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "qwen-2.5-coder-32b"}}
|
134 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
135 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 431: ", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "PollinationsImage", "model": "midjourney"}}
|
136 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 431: ", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "PollinationsImage", "model": "midjourney"}}
|
137 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 431: ", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "PollinationsImage", "model": "midjourney"}}
|
138 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 431: ", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "PollinationsImage", "model": "midjourney"}}
|
139 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 431: ", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "PollinationsImage", "model": "midjourney"}}
|
140 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 431: ", "provider": {"name": "PollinationsImage", "url": "https://pollinations.ai", "label": "PollinationsImage", "model": "flux-pro"}}
|
141 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "grok-3"}}
|
142 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "grok-3"}}
|
143 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.7-sonnet-thinking"}}
|
144 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "qwen-2.5-coder-32b"}}
|
145 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: {\"error\":\"Portkey Gateway API error: 400 Bad Request\",\"status\":500,\"details\":{\"object\":\"error\",\"message\":\"This model's maximum context length is 32768 tokens. However, you requested 33068 tokens (25068 in the messages, 8000 in the completion). Please reduce the length of the messages or completion.\",\"type\":\"BadRequestError\",\"param\":null,\"code\":400}}", "error": "ResponseStatusError", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "qwen-2.5-coder-32b"}}
|
146 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nJmuz: RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.\nPollinationsAI: ResponseStatusError: Response 500: {\"error\":\"Portkey Gateway API error: 400 Bad Request\",\"status\":500,\"details\":{\"object\":\"error\",\"message\":\"This model's maximum context length is 32768 tokens. However, you requested 33068 tokens (25068 in the messages, 8000 in the completion). Please reduce the length of the messages or completion.\",\"type\":\"BadRequestError\",\"param\":null,\"code\":400}}", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "qwen-2.5-coder-32b"}}
|
147 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-r1"}}
|
148 |
+
{"type": "message", "message": "ResponseStatusError: Response 401: {\"error\":\"Invalid username or password.\"}", "error": "ResponseStatusError", "provider": {"name": "HuggingFaceAPI", "url": "https://api-inference.huggingface.com", "label": "HuggingFace (hf-inference)", "model": "deepseek-r1"}}
|
149 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: {\"error\":\"Portkey Gateway API error: 400 Bad Request\",\"status\":500,\"details\":{\"object\":\"error\",\"message\":\"This model's maximum context length is 32768 tokens. However, you requested 33198 tokens (25198 in the messages, 8000 in the completion). Please reduce the length of the messages or completion.\",\"type\":\"BadRequestError\",\"param\":null,\"code\":400}}", "error": "ResponseStatusError", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "qwen-2.5-coder-32b"}}
|
150 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "qwen-2.5-coder-32b"}}
|
151 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nPollinationsAI: ResponseStatusError: Response 500: {\"error\":\"Portkey Gateway API error: 400 Bad Request\",\"status\":500,\"details\":{\"object\":\"error\",\"message\":\"This model's maximum context length is 32768 tokens. However, you requested 33198 tokens (25198 in the messages, 8000 in the completion). Please reduce the length of the messages or completion.\",\"type\":\"BadRequestError\",\"param\":null,\"code\":400}}\nJmuz: RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "qwen-2.5-coder-32b"}}
|
152 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "qwen-2.5-coder-32b"}}
|
153 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiAccount", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "o1"}}
|
154 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "o3-mini"}}
|
155 |
+
{"type": "message", "message": "ResponseStatusError: Response 418: {\"action\":\"error\",\"status\":418,\"type\":\"ERR_CHALLENGE\",\"overrideCode\":\"e1b9\",\"cd\":{\"cc\":\"duckchat\",\"e\":0,\"er\":null,\"gk\":0,\"i\":\"3\",\"iadb\":1,\"o\":\"oKGoyCWTIxyEdzr7v9kVppVkd4Io0fGTIYMqR6LpvXc%3D%0A\",\"p\":\"aebb65a94a5b4ed2a8dbc50042fc1880-23c429c4781b4da5b088543d2d25f960-6edeb7c5ae37487e9fde1142c638ac86-802420946f70483ba409c4e84923099d-01dbdff0fda649e6a2d0933d89e97ed0-bba533ee6f214de5913ef897380987bd-add7b648cfc942adb11d01537af68fc0-001cd0fb25f64e9bb9edbf0a0555907c-c61a914174fe471e97cf73d775122874\",\"q\":\"\",\"r\":\"eun\",\"s\":\"aichat\",\"sc\":1}}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "o3-mini"}}
|
156 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "o3-mini"}}
|
157 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
158 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-r1"}}
|
159 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "claude-3.5-sonnet"}}
|
160 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
161 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nLiaobots: ResponseStatusError: Response 500: Error\nJmuz: ResponseStatusError: Response 503: HTML content", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "claude-3.5-sonnet"}}
|
162 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4o"}}
|
163 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
164 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
165 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-r1"}}
|
166 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
167 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "o3-mini"}}
|
168 |
+
{"type": "message", "message": "ResponseStatusError: Response 418: {\"action\":\"error\",\"status\":418,\"type\":\"ERR_CHALLENGE\",\"overrideCode\":\"e1b9\",\"cd\":{\"cc\":\"duckchat\",\"e\":0,\"er\":null,\"gk\":0,\"i\":\"3\",\"iadb\":1,\"o\":\"lhDN%2FgaZVGc%2FYtIVOJ4q3Hir%2BWbM5RyY%2BUCVGnTOZ6M%3D%0A\",\"p\":\"93b789a32f0b4455a865ad6c7ae9c55f-23c1e3ae8ce8443183e624800acf2f47-d13828125211402eaef44405520c4080-9c458349512d424aaabac38c83bb9d40-ef272dc2f44e48f0b01c8ed8f716253d-02545726cc6e438d9a38dbac4e27d28d-81590901a89b4c9c94ca8c531431999c-6a81689333ee47aa98d18023a3928edf-0b5ff38c50a448868e72183482fa8df4\",\"q\":\"\",\"r\":\"eun\",\"s\":\"aichat\",\"sc\":1}}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "o3-mini"}}
|
169 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
170 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: You have reached your request limit for the day.", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "gpt-4o"}}
|
171 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
172 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
173 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
174 |
+
{"type": "message", "message": "ResponseStatusError: Response 418: {\"action\":\"error\",\"status\":418,\"type\":\"ERR_CHALLENGE\",\"overrideCode\":\"e1b9\",\"cd\":{\"cc\":\"duckchat\",\"e\":0,\"er\":null,\"gk\":0,\"i\":\"3\",\"iadb\":1,\"o\":\"OCmPvSe6b%2BFw4iXO78A7yYJPLNOyDKtdSBf8QOEnf68%3D%0A\",\"p\":\"fb2fad6b1c4f4b7587a3201c6aec817f-cbde47337b1642ffb87a097633bd95f5-e2d9f8fda1494035bde0c01149bad26a-d9a34a82af2f40b2b09e501ff8fe8bf4-0fff91de64104639b1d0626a5708fb1b-c6e75320917346aeb1a1ca1d2276da47-7214b7e37ba3470a80a60db40c289c0e-5039083e9bd3433b9704c899e412bfa3-fabfd2781758419faf17aba9fbf4d8bd\",\"q\":\"\",\"r\":\"inc\",\"s\":\"aichat\",\"sc\":1}}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
175 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
176 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
177 |
+
{"type": "message", "message": "ResponseError: Model busy, retry later", "error": "ResponseError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-r1"}}
|
178 |
+
{"type": "message", "message": "TimeoutError: Request timed out: ", "error": "TimeoutError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
179 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o-mini"}}
|
180 |
+
{"type": "message", "message": "TimeoutError: Request timed out: ", "error": "TimeoutError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
181 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-r1"}}
|
182 |
+
{"type": "message", "message": "ResponseError: Model busy, retry later", "error": "ResponseError", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-r1"}}
|
183 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
184 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
185 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
186 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (60) SSL certificate problem: unable to get local issuer certificate. See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "CablyAI", "url": "https://cablyai.com/chat", "label": null, "model": "gpt-4o-mini"}}
|
187 |
+
{"type": "message", "message": "ResponseStatusError: Response 418: {\"action\":\"error\",\"status\":418,\"type\":\"ERR_CHALLENGE\",\"overrideCode\":\"e1b9\",\"cd\":{\"cc\":\"duckchat\",\"e\":0,\"er\":null,\"gk\":0,\"i\":\"3\",\"iadb\":1,\"o\":\"CnAnoGjq2Zsrqxga1seDn5qGIhGiqQVlGP9cye8ux2I%3D%0A\",\"p\":\"908e7a62259b466d968f86609f278a65-f995a278bd4a46c2a890ae835ece5195-10966ec7dcc34ec7a149c80e1912a953-8cc25a0e564044b5a365a542caf766c1-2a9a9c7a331445f3a37a76c389419263-a3ec151498ae45aa845c5dda2f14a862-b41bd0ef5bd24f7696d8716664fc3e3c-b2c90cfab323423088634f2c2762e3a6-bb8d1549a30d4cada43b31146ebfc7ba\",\"q\":\"\",\"r\":\"inc\",\"s\":\"aichat\",\"sc\":1}}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
188 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
189 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 418: {\"action\":\"error\",\"status\":418,\"type\":\"ERR_CHALLENGE\",\"overrideCode\":\"e1b9\",\"cd\":{\"cc\":\"duckchat\",\"e\":0,\"er\":null,\"gk\":0,\"i\":\"3\",\"iadb\":1,\"o\":\"%2BiLO6giU9e5RKa9mEGI2BmUOhBn2vbVsYYkIMN291KE%3D%0A\",\"p\":\"aa87423535154d4f8f2a1cfff1de7a8b-8950ccf4e47548c8acf6b48fd473d015-bf251f89910240249a5344f45aa32a20-76d87dd6289f4f4ea6e0252673c52477-d72c36ab4cb24f49969ecef4b2b88ad1-e28200a617194d44930c9efb7843446f-428c4ec336b44a46a4166e85359dc173-f91da6f596f44514b008a089c2091437-7b9e6c0806b840fe8b427def216567ed\",\"q\":\"\",\"r\":\"euw\",\"s\":\"aichat\",\"sc\":1}}", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "o3-mini"}}
|
190 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 418: {\"action\":\"error\",\"status\":418,\"type\":\"ERR_CHALLENGE\",\"overrideCode\":\"e1b9\",\"cd\":{\"cc\":\"duckchat\",\"e\":0,\"er\":null,\"gk\":0,\"i\":\"3\",\"iadb\":1,\"o\":\"bzuCCWKKSsA7PSJ4yp%2FFJ8fn1uzyiwXna3cDnI73VTk%3D%0A\",\"p\":\"aa87423535154d4f8f2a1cfff1de7a8b-8950ccf4e47548c8acf6b48fd473d015-bf251f89910240249a5344f45aa32a20-76d87dd6289f4f4ea6e0252673c52477-d72c36ab4cb24f49969ecef4b2b88ad1-e28200a617194d44930c9efb7843446f-428c4ec336b44a46a4166e85359dc173-f91da6f596f44514b008a089c2091437-7b9e6c0806b840fe8b427def216567ed\",\"q\":\"\",\"r\":\"euw\",\"s\":\"aichat\",\"sc\":1}}", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "o3-mini"}}
|
191 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-r1"}}
|
192 |
+
{"type": "message", "message": "ClientPayloadError: Response payload is not completed: <ContentLengthError: 400, message='Not enough data for satisfy content length header.'>", "error": "ClientPayloadError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
193 |
+
{"type": "message", "message": "AttributeError: 'SimpleCookie' object has no attribute 'jar'", "error": "AttributeError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast"}}
|
194 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
195 |
+
{"type": "message", "message": "ClientPayloadError: Response payload is not completed: <ContentLengthError: 400, message='Not enough data for satisfy content length header.'>", "error": "ClientPayloadError", "provider": {"name": "BlackboxAPI", "url": "https://api.blackbox.ai", "label": "Blackbox AI API", "model": "deepseek-r1"}}
|
196 |
+
{"type": "error", "error": "NoValidHarFileError", "message": "NoValidHarFileError: No .har file found", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
197 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: Error", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gemini-2.0-flash-thinking"}}
|
198 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 503: HTML content", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gemini-exp"}}
|
199 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: Rate limit", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o-mini"}}
|
200 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o-mini"}}
|
201 |
+
{"type": "error", "error": "MissingAuthError", "message": "MissingAuthError: Missing \"__Secure-1PSID\" cookie", "provider": {"name": "Gemini", "url": "https://gemini.google.com", "label": "Google Gemini", "model": "gemini-1.5-pro-research"}}
|
202 |
+
{"type": "error", "error": "MissingAuthError", "message": "MissingAuthError: Missing \"__Secure-1PSID\" cookie", "provider": {"name": "Gemini", "url": "https://gemini.google.com", "label": "Google Gemini", "model": "gemini-1.5-pro-research"}}
|
203 |
+
{"type": "error", "error": "AbraGeoBlockedError", "message": "AbraGeoBlockedError: Meta AI isn't available yet in your country", "provider": {"name": "MetaAI", "url": "https://www.meta.ai", "label": "Meta AI", "model": "meta-ai"}}
|
204 |
+
{"type": "error", "error": "PermissionError", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "llama-2-7b"}}
|
205 |
+
{"type": "message", "message": "PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'", "error": "PermissionError", "provider": {"name": "Cloudflare", "url": "https://playground.ai.cloudflare.com", "label": "Cloudflare AI", "model": "llama-3-8b"}}
|
206 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "llama-3-8b"}}
|
207 |
+
{"type": "error", "error": "RetryProviderError", "message": "RetryProviderError: RetryProvider failed:\nCloudflare: PermissionError: [Errno 13] Permission denied: 'har_and_cookies/.nodriver_is_open'\nJmuz: ResponseStatusError: Response 503: HTML content", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "llama-3-8b"}}
|
208 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: {\"error\":\"DeepSeek API error: 402 Payment Required\",\"status\":500,\"details\":{\"error\":{\"message\":\"Insufficient Balance\",\"type\":\"unknown_error\",\"param\":null,\"code\":\"invalid_request_error\"}}}", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "deepseek"}}
|
209 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
210 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (6) Could not resolve host: oi-vscode-server-2.onrender.com. See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "deepseek-v3"}}
|
211 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
212 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (6) Could not resolve host: api.deepinfra.com. See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "DeepInfraChat", "url": "https://deepinfra.com/chat", "label": null, "model": "deepseek-v3"}}
|
213 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 502: Bad gateway", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "o3-mini"}}
|
214 |
+
{"type": "message", "message": "WebSocketClosed: WebSocket is already closed", "error": "WebSocketClosed", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "Copilot"}}
|
215 |
+
{"type": "error", "error": "ClientPayloadError", "message": "ClientPayloadError: Response payload is not completed: <TransferEncodingError: 400, message='Not enough data for satisfy transfer length header.'>", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "claude-sonnet-3.7"}}
|
216 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4o"}}
|
217 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
218 |
+
{"type": "message", "message": "ResponseStatusError: Response 502: Bad gateway", "error": "ResponseStatusError", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "gpt-4o"}}
|
219 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
220 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
221 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
222 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4o"}}
|
223 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4"}}
|
224 |
+
{"type": "message", "message": "TimeoutError: Request timed out: ", "error": "TimeoutError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4"}}
|
225 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4o"}}
|
226 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
227 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
228 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: You have reached your request limit for the day.", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "gpt-4o"}}
|
229 |
+
{"type": "error", "error": "CloudflareError", "message": "CloudflareError: Response 403: Cloudflare detected", "provider": {"name": "RubiksAI", "url": "https://rubiks.ai", "label": "Rubiks AI", "model": "gpt-4o-mini"}}
|
230 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 429: \u6587\u5b57\u8fc7\u957f\uff0c\u8bf7\u5220\u51cf\u540e\u91cd\u8bd5\u3002", "provider": {"name": "Yqcloud", "url": "https://chat9.yqcloud.top", "label": null, "model": "gpt-4"}}
|
231 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 429: \u6587\u5b57\u8fc7\u957f\uff0c\u8bf7\u5220\u51cf\u540e\u91cd\u8bd5\u3002", "provider": {"name": "Yqcloud", "url": "https://chat9.yqcloud.top", "label": null, "model": "gpt-4"}}
|
232 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
233 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
234 |
+
{"type": "message", "message": "ResponseStatusError: Response 401: {\"error\":\"Invalid username or password.\"}", "error": "ResponseStatusError", "provider": {"name": "HuggingFaceAPI", "url": "https://api-inference.huggingface.com", "label": "HuggingFace (hf-inference)", "model": "deepseek-r1"}}
|
235 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-r1"}}
|
236 |
+
{"type": "message", "message": "SSLError: Failed to perform, curl: (35) BoringSSL SSL_connect: SSL_ERROR_SYSCALL in connection to copilot.microsoft.com:443 . See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "SSLError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "gpt-4"}}
|
237 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4"}}
|
238 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4"}}
|
239 |
+
{"type": "message", "message": "ResponseStatusError: Response 418: {\"action\":\"error\",\"status\":418,\"type\":\"ERR_BN_LIMIT\",\"overrideCode\":\"e1b9\"}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4"}}
|
240 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
241 |
+
{"type": "message", "message": "JSONDecodeError: Expecting value: line 1 column 1 (char 0)", "error": "JSONDecodeError", "provider": {"name": "Mhystical", "url": "https://mhystical.cc", "label": null, "model": "gpt-4"}}
|
242 |
+
{"type": "message", "message": "TimeoutError: Request timed out: ", "error": "TimeoutError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
243 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
244 |
+
{"type": "message", "message": "ClientPayloadError: Response payload is not completed: <ContentLengthError: 400, message='Not enough data for satisfy content length header.'>", "error": "ClientPayloadError", "provider": {"name": "OIVSCode", "url": "https://oi-vscode-server.onrender.com", "label": "OI VSCode Server", "model": "gpt-4o-mini-2024-07-18"}}
|
245 |
+
{"type": "message", "message": "MissingRequirementsError: Install or update \"curl_cffi\" package | pip install -U curl_cffi", "error": "MissingRequirementsError", "provider": {"name": "Copilot", "url": "https://copilot.microsoft.com", "label": "Microsoft Copilot", "model": "Copilot"}}
|
246 |
+
{"type": "message", "message": "ResponseStatusError: Response 524: HTML content", "error": "ResponseStatusError", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "gpt-4"}}
|
247 |
+
{"type": "message", "message": "RequestException: Failed to perform, curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2). See https://curl.se/libcurl/c/libcurl-errors.html first for more details.", "error": "RequestException", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4"}}
|
248 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4o"}}
|
249 |
+
{"type": "message", "message": "ProtocolException: \nexceptionId: 1\ntext: Uncaught\nlineNumber: 0\ncolumnNumber: 53\nscriptId: 9\nstackTrace: \n\tcallFrames: [{'functionName': '', 'scriptId': ScriptId('9'), 'url': '', 'lineNumber': 0, 'columnNumber': 53}]\n\nexception: \n\ttype: object\n\tsubtype: error\n\tclassName: TypeError\n\tdescription: TypeError: Cannot set properties of null (setting 'innerText')\n at <anonymous>:1:54\n\tobjectId: 940487973052203909.1.2\n\n", "error": "ProtocolException", "provider": {"name": "OpenaiAccount", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "o1"}}
|
250 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "ChatGptEs", "url": "https://chatgpt.es", "label": null, "model": "gpt-4o"}}
|
251 |
+
{"type": "message", "message": "ResponseStatusError: Response 401: {\"error\":\"Invalid username or password.\"}", "error": "ResponseStatusError", "provider": {"name": "HuggingFaceAPI", "url": "https://api-inference.huggingface.com", "label": "HuggingFace (hf-inference)", "model": "deepseek-r1"}}
|
252 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
253 |
+
{"type": "message", "message": "NoValidHarFileError: No .har file found", "error": "NoValidHarFileError", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4o"}}
|
254 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: Error invalid_request_error: Insufficient Balance", "provider": {"name": "DeepSeek", "url": "https://platform.deepseek.com", "label": "DeepSeek", "model": "deepseek-reasoner"}}
|
255 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-r1"}}
|
256 |
+
{"type": "message", "message": "ResponseStatusError: Response 429: You have reached your request limit for the day.", "error": "ResponseStatusError", "provider": {"name": "Blackbox", "url": "https://www.blackbox.ai", "label": "Blackbox AI", "model": "gpt-4o"}}
|
257 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
258 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-r1"}}
|
259 |
+
{"type": "message", "message": "ResponseStatusError: Response 402: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "gpt-4o"}}
|
260 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: Invalid response: {\"detail\": \"User is not authorized to access this resource\"}", "provider": {"name": "DeepInfra", "url": "https://deepinfra.com", "label": null, "model": "meta-llama/Meta-Llama-3.1-70B-Instruct"}}
|
261 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-r1"}}
|
262 |
+
{"type": "message", "message": "ResponseStatusError: Response 401: {\"error\":\"Invalid username or password.\"}", "error": "ResponseStatusError", "provider": {"name": "HuggingFaceAPI", "url": "https://api-inference.huggingface.com", "label": "HuggingFace (hf-inference)", "model": "deepseek-r1"}}
|
263 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "deepseek-r1"}}
|
264 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 422: {\"detail\":\"Invalid conversation body\"}", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "gpt-4"}}
|
265 |
+
{"type": "message", "message": "ResponseStatusError: Response 401: {\"error\":\"Invalid username or password.\"}", "error": "ResponseStatusError", "provider": {"name": "HuggingFaceAPI", "url": "https://api-inference.huggingface.com", "label": "HuggingFace (hf-inference)", "model": "deepseek-r1"}}
|
266 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 422: {\"detail\":\"Invalid conversation body\"}", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
267 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 422: {\"detail\":\"Invalid conversation body\"}", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "o1-mini"}}
|
268 |
+
{"type": "error", "error": "NoValidHarFileError", "message": "NoValidHarFileError: No .har file found", "provider": {"name": "OpenaiChat", "url": "https://chatgpt.com", "label": "OpenAI ChatGPT", "model": "auto"}}
|
269 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 500: {\"error\":\"HfApiJson(Deserialize(Error(\\\"unknown variant `gguf`, expected one of `text-generation-inference`, `transformers`, `allennlp`, `flair`, `espnet`, `asteroid`, `speechbrain`, `timm`, `sentence-transformers`, `spacy`, `sklearn`, `stanza`, `adapter-transformers`, `fasttext`, `fairseq`, `pyannote-audio`, `doctr`, `nemo`, `fastai`, `k2`, `diffusers`, `paddlenlp`, `mindspore`, `open_clip`, `span-marker`, `bertopic`, `peft`, `setfit`\\\", line: 1, column: 132)))\"}", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "city96/FLUX.1-dev-gguf"}}
|
270 |
+
{"type": "message", "message": "ResponseStatusError: Response 401: {\"error\":\"Invalid username or password.\"}", "error": "ResponseStatusError", "provider": {"name": "HuggingFaceAPI", "url": "https://api-inference.huggingface.com", "label": "HuggingFace (hf-inference)", "model": "deepseek-r1"}}
|
271 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: Request failed during generation: Server error: 'list' object has no attribute 'get_seq_length'", "provider": {"name": "HuggingFaceAPI", "url": "https://api-inference.huggingface.com", "label": "HuggingFace (hf-inference)", "model": "TinyLlama/TinyLlama-1.1B-Chat-v1.0"}}
|
272 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
273 |
+
{"type": "message", "message": "ResponseStatusError: Response 500: Error", "error": "ResponseStatusError", "provider": {"name": "Liaobots", "url": "https://liaobots.site", "label": null, "model": "deepseek-v3"}}
|
274 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 403: {\"error\":\"The model lodestones/Chroma is too large to be loaded automatically (284GB > 10GB).\"}", "provider": {"name": "HuggingFace", "url": "https://huggingface.co", "label": null, "model": "lodestones/Chroma"}}
|
275 |
+
{"type": "error", "error": "ResponseStatusError", "message": "ResponseStatusError: Response 418: {\"action\":\"error\",\"status\":418,\"type\":\"ERR_BN_LIMIT\",\"overrideCode\":\"e1b9\"}", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
276 |
+
{"type": "message", "message": "IndexError: list index out of range", "error": "IndexError", "provider": {"name": "PollinationsAI", "url": "https://pollinations.ai", "label": "Pollinations AI", "model": "openai"}}
|
277 |
+
{"type": "message", "message": "ResponseStatusError: Response 418: {\"action\":\"error\",\"status\":418,\"type\":\"ERR_CHALLENGE\",\"overrideCode\":\"e1b9\",\"cd\":{\"cc\":\"duckchat\",\"e\":0,\"er\":null,\"gk\":0,\"i\":\"3\",\"iadb\":1,\"o\":\"P0opbii8oj%2FqBMa%2Byq9I%2BAVh2FIsW7RndlIbK5eaq1s%3D%0A\",\"p\":\"ee4c07e9c7db4f04a78d73d17afb3521-d8d1d18680f44907994e4a20241e699f-be2c90034f5647c98939432788409871-72a60e66124c4c88a126f2a6d717b0ee-8b6a03b5f59d4934a3e305dfa73704c8-5039083e9bd3433b9704c899e412bfa3-979b0741b63f452fa7ef9b9fad42e6bd-6f07d1ffbce04fad998d59a071c6354f-443fff33ddd845a39ad49a9086676bfb\",\"q\":\"\",\"r\":\"inc\",\"s\":\"aichat\",\"sc\":1}}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "o3-mini"}}
|
278 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
279 |
+
{"type": "message", "message": "ResponseStatusError: Response 503: HTML content", "error": "ResponseStatusError", "provider": {"name": "Jmuz", "url": "https://discord.gg/Ew6JzjA2NR", "label": null, "model": "gpt-4o"}}
|
280 |
+
{"type": "message", "message": "ResponseStatusError: Response 418: {\"action\":\"error\",\"status\":418,\"type\":\"ERR_CHALLENGE\",\"overrideCode\":\"e1b9\",\"cd\":{\"cc\":\"duckchat\",\"e\":0,\"er\":null,\"gk\":0,\"i\":\"3\",\"iadb\":1,\"o\":\"ON6bYLPA4GlApoBw6%2F%2F%2F%2Fzgfizoi3htLPmKmGkpwyM4%3D%0A\",\"p\":\"720d685b76ac4756a2055ac8fa9bfb46-f4b7707f0df0437f9aff45398ce6f1bf-6909c88b7e6f4596aac43147553e2cfe-91f6999ebca44cf0be88b04b9955d71f-35ebd476a57f48fd8e2b45aa39b8bd93-5985cbeac86a47e0a8986197ca42e027-9455a4b3d9234f6f9d07d7c3d6305541-374d319592a54ff4941e880bb2eaf7bb-fa19bf9cb7c04c279d9201410defba41\",\"q\":\"\",\"r\":\"euw\",\"s\":\"aichat\",\"sc\":1}}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "gpt-4o-mini"}}
|
281 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: GPU token limit exceeded: data: \"404: Session not found.\"\n", "provider": {"name": "StabilityAI_SD35Large", "url": "https://stabilityai-stable-diffusion-3-5-large.hf.space", "label": "StabilityAI SD-3.5-Large", "model": "stabilityai-stable-diffusion-3-5-large"}}
|
282 |
+
{"type": "error", "error": "MissingRequirementsError", "message": "MissingRequirementsError: Install \"browser_cookie3\" package", "provider": {"name": "MetaAIAccount", "url": "https://www.meta.ai", "label": "Meta AI", "model": "meta-ai"}}
|
283 |
+
{"type": "error", "error": "MissingRequirementsError", "message": "MissingRequirementsError: Install \"browser_cookie3\" package", "provider": {"name": "MetaAIAccount", "url": "https://www.meta.ai", "label": "Meta AI", "model": "meta-ai"}}
|
284 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: You have exceeded your GPU quota (75s requested vs. 51s left).", "provider": {"name": "G4F", "url": "https://huggingface.co/spaces/roxky/g4f-space", "label": "G4F framework", "model": "flux-dev"}}
|
285 |
+
{"type": "message", "message": "ResponseStatusError: Response 418: {\"action\":\"error\",\"status\":418,\"type\":\"ERR_CHALLENGE\",\"overrideCode\":\"e1b9\",\"cd\":{\"cc\":\"duckchat\",\"e\":0,\"er\":null,\"gk\":0,\"i\":\"3\",\"iadb\":1,\"o\":\"%2BfMlVHs%2F82nVmDdngUFelGyV%2BDFsO3wKyBgM6ChRXNc%3D%0A\",\"p\":\"add7b648cfc942adb11d01537af68fc0-f493adb7e9cf4467850ff6dc886ade3e-02538eece6ec4a5f99c1a8e09c4cf784-fa19bf9cb7c04c279d9201410defba41-f4b9204a1f354d4ea63ff8a4559d5462-b2c90cfab323423088634f2c2762e3a6-ae96c2d7208140c2a70eefa1fcfc665e-c3b67716158943939dbee06403b87d96-720d685b76ac4756a2055ac8fa9bfb46\",\"q\":\"\",\"r\":\"ase\",\"s\":\"aichat\",\"sc\":1}}", "error": "ResponseStatusError", "provider": {"name": "DDG", "url": "https://duckduckgo.com/aichat", "label": "DuckDuckGo AI Chat", "model": "o3-mini"}}
|
286 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: You have exceeded your GPU quota (75s requested vs. 51s left).", "provider": {"name": "BlackForestLabs_Flux1Dev", "url": "https://black-forest-labs-flux-1-dev.hf.space", "label": "BlackForestLabs Flux-1-Dev", "model": "black-forest-labs-flux-1-dev"}}
|
287 |
+
{"type": "error", "error": "ResponseError", "message": "ResponseError: Error generating image: null\n\n", "provider": {"name": "BlackForestLabs_Flux1Schnell", "url": "https://black-forest-labs-flux-1-schnell.hf.space", "label": "BlackForestLabs Flux-1-Schnell", "model": "black-forest-labs-flux-1-schnell"}}
|
requirements.txt
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
g4f
|
2 |
+
Flask-Limiter
|
3 |
+
requests
|
4 |
+
pycryptodome
|
5 |
+
aiohttp
|
6 |
+
certifi
|
7 |
+
duckduckgo-search>=6.3.7
|
8 |
+
nest_asyncio
|
9 |
+
werkzeug
|
10 |
+
pillow
|
11 |
+
fastapi
|
12 |
+
uvicorn
|
13 |
+
flask
|
14 |
+
brotli
|
15 |
+
beautifulsoup4
|
16 |
+
aiohttp_socks
|
17 |
+
cryptography
|
18 |
+
python-multipart
|
19 |
+
pypdf2
|
save.py
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import json
|
3 |
+
import re
|
4 |
+
from g4f.cookies import get_cookies_dir
|
5 |
+
|
6 |
+
def get_logs(log_dir):
|
7 |
+
try:
|
8 |
+
return [f for f in os.listdir(log_dir) if os.path.isfile(os.path.join(log_dir, f))]
|
9 |
+
except OSError:
|
10 |
+
return None
|
11 |
+
|
12 |
+
for part in (".logging", ".usage"):
|
13 |
+
log_dir = os.path.join(get_cookies_dir(), part)
|
14 |
+
save_dir = os.path.join(".", part[1:])
|
15 |
+
for filename in get_logs(log_dir):
|
16 |
+
with open(os.path.join(log_dir, filename), "rb") as file:
|
17 |
+
with open(os.path.join(save_dir, filename), "w") as save:
|
18 |
+
for line in file:
|
19 |
+
line = json.loads(line)
|
20 |
+
if "origin" in line:
|
21 |
+
line.pop("origin")
|
22 |
+
if "user" in line:
|
23 |
+
line.pop("user")
|
24 |
+
data = json.dumps(line)
|
25 |
+
data = re.sub(r"Users\\\\\\.+?\\{2,}", "", data)
|
26 |
+
data = re.sub(r"[0-9]{2,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}", "", data)
|
27 |
+
save.write(data + "\n")
|
start
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/sh
|
2 |
+
|
3 |
+
uvicorn app:app --port 8000 --reload
|
usage/2025-02-20.jsonl
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "r1-1776", "provider": "PerplexityLabs", "prompt_tokens": 26, "completion_tokens": 113, "total_tokens": 139}
|
2 |
+
{"model": "r1-1776", "provider": "PerplexityLabs", "prompt_tokens": 26, "completion_tokens": 119, "total_tokens": 145}
|
3 |
+
{"model": "sonar-reasoning", "provider": "PerplexityLabs", "prompt_tokens": 26, "completion_tokens": 220, "total_tokens": 246}
|
4 |
+
{"model": "r1-1776", "provider": "PerplexityLabs", "prompt_tokens": 26, "completion_tokens": 121, "total_tokens": 147}
|
5 |
+
{"model": "r1-1776", "provider": "PerplexityLabs", "prompt_tokens": 26, "completion_tokens": 27, "total_tokens": 53}
|
6 |
+
{"model": "sonar-reasoning-pro", "provider": "PerplexityLabs", "prompt_tokens": 26, "completion_tokens": 569, "total_tokens": 595}
|
7 |
+
{"model": "sonar-reasoning-pro", "provider": "PerplexityLabs", "prompt_tokens": 26, "completion_tokens": 587, "total_tokens": 613}
|
8 |
+
{"model": "sonar-reasoning-pro", "provider": "PerplexityLabs", "prompt_tokens": 26, "completion_tokens": 804, "total_tokens": 830}
|
9 |
+
{"model": "r1-1776", "provider": "PerplexityLabs", "prompt_tokens": 26, "completion_tokens": 143, "total_tokens": 169}
|
10 |
+
{"model": "r1-1776", "provider": "PerplexityLabs", "prompt_tokens": 26, "completion_tokens": 13, "total_tokens": 39}
|
11 |
+
{"model": "sonar-reasoning-pro", "provider": "PerplexityLabs", "prompt_tokens": 26, "completion_tokens": 537, "total_tokens": 563}
|
12 |
+
{"model": "sonar-reasoning-pro", "provider": "PerplexityLabs", "prompt_tokens": 26, "completion_tokens": 678, "total_tokens": 704}
|
13 |
+
{"model": "sonar-reasoning-pro", "provider": "PerplexityLabs", "prompt_tokens": 26, "completion_tokens": 810, "total_tokens": 836}
|
usage/2025-02-21.jsonl
ADDED
@@ -0,0 +1,382 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 24, "completion_tokens": 532, "total_tokens": 556}
|
2 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 572, "completion_tokens": 746, "total_tokens": 1318}
|
3 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 556, "completion_tokens": 556, "total_tokens": 1112}
|
4 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 556, "completion_tokens": 1196, "total_tokens": 1752}
|
5 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 2329, "completion_tokens": 697, "total_tokens": 3026}
|
6 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 2378, "completion_tokens": 946, "total_tokens": 3324}
|
7 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 120, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 162, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 282}
|
8 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 18, "completion_tokens": 345, "total_tokens": 363}
|
9 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 379, "completion_tokens": 505, "total_tokens": 884}
|
10 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 210, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 309, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 519}
|
11 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 11, "completion_tokens": 608, "total_tokens": 619}
|
12 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 634, "completion_tokens": 922, "total_tokens": 1556}
|
13 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 19, "completion_tokens": 90, "total_tokens": 109}
|
14 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 128, "completion_tokens": 124, "total_tokens": 252}
|
15 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 1569, "completion_tokens": 922, "total_tokens": 2491}
|
16 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 12, "completion_tokens": 378, "total_tokens": 390}
|
17 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 406, "completion_tokens": 519, "total_tokens": 925}
|
18 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 315, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 539, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 854}
|
19 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 19, "completion_tokens": 89, "total_tokens": 108}
|
20 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 17, "completion_tokens": 98, "total_tokens": 115}
|
21 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 300, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 884, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1184}
|
22 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 131, "completion_tokens": 455, "total_tokens": 586}
|
23 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 32, "completion_tokens": 599, "total_tokens": 631}
|
24 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 277, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1197, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1474}
|
25 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 32, "completion_tokens": 141, "total_tokens": 173}
|
26 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 32, "completion_tokens": 182, "total_tokens": 214}
|
27 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 32, "completion_tokens": 575, "total_tokens": 607}
|
28 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 32, "completion_tokens": 141, "total_tokens": 173}
|
29 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 32, "completion_tokens": 368, "total_tokens": 400}
|
30 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1081, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 170, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1251}
|
31 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 863, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1271, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2134}
|
32 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 14, "completion_tokens": 829, "total_tokens": 843}
|
33 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 10, "completion_tokens": 1059, "total_tokens": 1069}
|
34 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 1081, "completion_tokens": 380, "total_tokens": 1461}
|
35 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 1473, "completion_tokens": 287, "total_tokens": 1760}
|
36 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 1778, "completion_tokens": 798, "total_tokens": 2576}
|
37 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 17, "completion_tokens": 1364, "total_tokens": 1381}
|
38 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 18, "completion_tokens": 1015, "total_tokens": 1033}
|
39 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 1065, "completion_tokens": 728, "total_tokens": 1793}
|
40 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 1807, "completion_tokens": 892, "total_tokens": 2699}
|
41 |
+
{"model": "command-r-plus-08-2024", "provider": "CohereForAI", "prompt_tokens": 6394, "completion_tokens": 215, "total_tokens": 6609}
|
42 |
+
{"model": "general", "provider": "ImageLabs", "prompt_tokens": 9965, "completion_tokens": 207, "total_tokens": 10172}
|
43 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 33, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 164, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 197}
|
44 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 14, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 240, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 254}
|
45 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 28, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 240, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 268}
|
46 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 26, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 240, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 266}
|
47 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 27, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 240, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 267}
|
48 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 35, "completion_tokens": 89, "total_tokens": 124}
|
49 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 157, "completion_tokens": 125, "total_tokens": 282}
|
50 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 15, "completion_tokens": 1232, "total_tokens": 1247}
|
51 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 15, "completion_tokens": 1134, "total_tokens": 1149}
|
52 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 321, "completion_tokens": 135, "total_tokens": 456}
|
53 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 1166, "completion_tokens": 984, "total_tokens": 2150}
|
54 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 38, "completion_tokens": 124, "total_tokens": 162}
|
55 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 1166, "completion_tokens": 924, "total_tokens": 2090}
|
56 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 2165, "completion_tokens": 1325, "total_tokens": 3490}
|
57 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 36, "completion_tokens": 122, "total_tokens": 158}
|
58 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 187, "completion_tokens": 161, "total_tokens": 348}
|
59 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 364, "completion_tokens": 115, "total_tokens": 479}
|
60 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 492, "completion_tokens": 193, "total_tokens": 685}
|
61 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 708, "completion_tokens": 217, "total_tokens": 925}
|
62 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 62, "completion_tokens": 16, "total_tokens": 78}
|
63 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 99, "completion_tokens": 16, "total_tokens": 115}
|
64 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 132, "completion_tokens": 157, "total_tokens": 289}
|
65 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 16, "completion_tokens": 67, "total_tokens": 83}
|
66 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 99, "completion_tokens": 102, "total_tokens": 201}
|
67 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 218, "completion_tokens": 200, "total_tokens": 418}
|
68 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 435, "completion_tokens": 1418, "total_tokens": 1853}
|
69 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 22, "completion_tokens": 225, "total_tokens": 247}
|
70 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 435, "completion_tokens": 392, "total_tokens": 827}
|
71 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 22, "completion_tokens": 289, "total_tokens": 311}
|
72 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 17, "completion_tokens": 1296, "total_tokens": 1313}
|
73 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 21, "completion_tokens": 590, "total_tokens": 611}
|
74 |
+
{"model": "janus-pro-7b-image", "provider": "G4F", "prompt_tokens": 9, "completion_tokens": 711, "total_tokens": 720}
|
75 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 11, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 152, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 163}
|
76 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 24, "completion_tokens": 167, "total_tokens": 191}
|
77 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 18, "completion_tokens": 356, "total_tokens": 374}
|
78 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 9, "completion_tokens": 41, "total_tokens": 50}
|
79 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 61, "completion_tokens": 160, "total_tokens": 221}
|
80 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 237, "completion_tokens": 208, "total_tokens": 445}
|
81 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 18, "completion_tokens": 1362, "total_tokens": 1380}
|
82 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 24, "completion_tokens": 743, "total_tokens": 767}
|
83 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 12, "total_tokens": 20}
|
84 |
+
{"model": "command-r", "provider": "HuggingSpace", "prompt_tokens": 8, "completion_tokens": 10, "total_tokens": 18}
|
85 |
+
{"model": "llama-3.3-70b", "provider": "HuggingFace", "prompt_tokens": 13, "completion_tokens": 13, "total_tokens": 26}
|
86 |
+
{"model": "flux-dev", "provider": "G4F", "prompt_tokens": 13, "completion_tokens": 177, "total_tokens": 190}
|
87 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 8, "completion_tokens": 171, "total_tokens": 179}
|
88 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 8, "completion_tokens": 167, "total_tokens": 175}
|
89 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 46, "completion_tokens": 133, "total_tokens": 179}
|
90 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 221, "completion_tokens": 157, "total_tokens": 378}
|
91 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 398, "completion_tokens": 189, "total_tokens": 587}
|
92 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 398, "completion_tokens": 163, "total_tokens": 561}
|
93 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 784, "completion_tokens": 202, "total_tokens": 986}
|
94 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 1027, "completion_tokens": 16, "total_tokens": 1043}
|
95 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 1057, "completion_tokens": 930, "total_tokens": 1987}
|
96 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 11, "completion_tokens": 8, "total_tokens": 19}
|
97 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 38, "completion_tokens": 52, "total_tokens": 90}
|
98 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 129, "completion_tokens": 89, "total_tokens": 218}
|
99 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 277, "completion_tokens": 891, "total_tokens": 1168}
|
100 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 1034, "completion_tokens": 174, "total_tokens": 1208}
|
101 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 60, "completion_tokens": 275, "total_tokens": 335}
|
102 |
+
{"model": "command-r", "provider": "HuggingSpace", "prompt_tokens": 282, "completion_tokens": 44, "total_tokens": 326}
|
103 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 282, "completion_tokens": 202, "total_tokens": 484}
|
104 |
+
{"model": "flux", "provider": "HuggingFace", "prompt_tokens": 282, "completion_tokens": 90, "total_tokens": 372}
|
105 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 352, "completion_tokens": 238, "total_tokens": 590}
|
106 |
+
{"model": "flux", "provider": "HuggingFace", "prompt_tokens": 282, "completion_tokens": 84, "total_tokens": 366}
|
107 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 27, "completion_tokens": 1082, "total_tokens": 1109}
|
108 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 621, "completion_tokens": 211, "total_tokens": 832}
|
109 |
+
{"model": "bigcode/starcoder2-15b", "provider": "HuggingFace", "prompt_tokens": 11, "completion_tokens": 249, "total_tokens": 260}
|
110 |
+
{"model": "codellama/CodeLlama-34b-Instruct-hf", "provider": "HuggingFace", "prompt_tokens": 10208, "completion_tokens": 1025, "total_tokens": 11233}
|
111 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 9, "total_tokens": 17}
|
112 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 34, "completion_tokens": 1023, "total_tokens": 1057}
|
113 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 91, "completion_tokens": 372, "total_tokens": 463}
|
114 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 13, "completion_tokens": 210, "total_tokens": 223}
|
115 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 16, "total_tokens": 24}
|
116 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 559, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2173, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2732}
|
117 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 24, "total_tokens": 32}
|
118 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 39, "completion_tokens": 10, "total_tokens": 49}
|
119 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 63, "completion_tokens": 25, "total_tokens": 88}
|
120 |
+
{"model": "black-forest-labs-flux-1-dev", "provider": "HuggingSpace", "prompt_tokens": 8, "completion_tokens": 185, "total_tokens": 193}
|
121 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1277, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2754, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 4031}
|
122 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1331, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4056, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 5387}
|
123 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 12, "total_tokens": 20}
|
124 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 33, "completion_tokens": 32, "total_tokens": 65}
|
125 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 111, "completion_tokens": 34, "total_tokens": 145}
|
126 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 229, "completion_tokens": 40, "total_tokens": 269}
|
127 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 13, "completion_tokens": 39, "total_tokens": 52}
|
128 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 89, "completion_tokens": 43, "total_tokens": 132}
|
129 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 84, "completion_tokens": 35, "total_tokens": 119}
|
130 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 84, "completion_tokens": 35, "total_tokens": 119}
|
131 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 84, "completion_tokens": 35, "total_tokens": 119}
|
132 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 84, "completion_tokens": 27, "total_tokens": 111}
|
133 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 84, "completion_tokens": 35, "total_tokens": 119}
|
134 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 84, "completion_tokens": 39, "total_tokens": 123}
|
135 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 84, "completion_tokens": 35, "total_tokens": 119}
|
136 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 84, "completion_tokens": 35, "total_tokens": 119}
|
137 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 84, "completion_tokens": 27, "total_tokens": 111}
|
138 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 84, "completion_tokens": 27, "total_tokens": 111}
|
139 |
+
{"model": "tiiuae/falcon-7b-instruct", "provider": "HuggingFace", "prompt_tokens": 13, "completion_tokens": 100, "total_tokens": 113}
|
140 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 13, "completion_tokens": 47, "total_tokens": 60}
|
141 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 124, "completion_tokens": 20, "total_tokens": 144}
|
142 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 187, "completion_tokens": 155, "total_tokens": 342}
|
143 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 366, "completion_tokens": 256, "total_tokens": 622}
|
144 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 26, "completion_tokens": 19, "total_tokens": 45}
|
145 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 25, "completion_tokens": 10, "total_tokens": 35}
|
146 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 988, "completion_tokens": 34, "total_tokens": 1022}
|
147 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 1038, "completion_tokens": 287, "total_tokens": 1325}
|
148 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 1390, "completion_tokens": 282, "total_tokens": 1672}
|
149 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 1697, "completion_tokens": 431, "total_tokens": 2128}
|
150 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 1053, "completion_tokens": 208, "total_tokens": 1261}
|
151 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 1295, "completion_tokens": 370, "total_tokens": 1665}
|
152 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 428, "completion_tokens": 66, "total_tokens": 494}
|
153 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 555, "completion_tokens": 70, "total_tokens": 625}
|
154 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 646, "completion_tokens": 92, "total_tokens": 738}
|
155 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 763, "completion_tokens": 225, "total_tokens": 988}
|
156 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 1019, "completion_tokens": 121, "total_tokens": 1140}
|
157 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 1171, "completion_tokens": 76, "total_tokens": 1247}
|
158 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 1304, "completion_tokens": 126, "total_tokens": 1430}
|
159 |
+
{"model": "black-forest-labs-flux-1-dev", "provider": "HuggingSpace", "prompt_tokens": 15, "completion_tokens": 210, "total_tokens": 225}
|
160 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 1454, "completion_tokens": 149, "total_tokens": 1603}
|
161 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 1628, "completion_tokens": 83, "total_tokens": 1711}
|
162 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 1739, "completion_tokens": 89, "total_tokens": 1828}
|
163 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 1854, "completion_tokens": 101, "total_tokens": 1955}
|
164 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 1973, "completion_tokens": 90, "total_tokens": 2063}
|
165 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 2110, "completion_tokens": 90, "total_tokens": 2200}
|
166 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 2234, "completion_tokens": 100, "total_tokens": 2334}
|
167 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 2360, "completion_tokens": 106, "total_tokens": 2466}
|
168 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 2483, "completion_tokens": 80, "total_tokens": 2563}
|
169 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace", "prompt_tokens": 192, "completion_tokens": 88, "total_tokens": 280}
|
170 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 2588, "completion_tokens": 105, "total_tokens": 2693}
|
171 |
+
{"model": "DeepSeek-V3", "provider": "Blackbox", "prompt_tokens": 883, "completion_tokens": 204, "total_tokens": 1087}
|
172 |
+
{"model": "DeepSeek-V3", "provider": "Blackbox", "prompt_tokens": 1110, "completion_tokens": 182, "total_tokens": 1292}
|
173 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 2725, "completion_tokens": 75, "total_tokens": 2800}
|
174 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 2817, "completion_tokens": 79, "total_tokens": 2896}
|
175 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 2924, "completion_tokens": 92, "total_tokens": 3016}
|
176 |
+
{"model": "01-ai/Yi-1.5-34B-Chat", "provider": "HuggingFace", "prompt_tokens": 3034, "completion_tokens": 103, "total_tokens": 3137}
|
177 |
+
{"model": "DeepSeek-V3", "provider": "Blackbox", "prompt_tokens": 1328, "completion_tokens": 185, "total_tokens": 1513}
|
178 |
+
{"model": "DeepSeek-V3", "provider": "Blackbox", "prompt_tokens": 1328, "completion_tokens": 196, "total_tokens": 1524}
|
179 |
+
{"model": "DeepSeek-V3", "provider": "Blackbox", "prompt_tokens": 1758, "completion_tokens": 194, "total_tokens": 1952}
|
180 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 1758, "completion_tokens": 265, "total_tokens": 2023}
|
181 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 423, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 165, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 588}
|
182 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 463, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 605, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1068}
|
183 |
+
{"model": "DeepSeek-V3", "provider": "Blackbox", "prompt_tokens": 8, "completion_tokens": 461, "total_tokens": 469}
|
184 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 192, "completion_tokens": 88, "total_tokens": 280}
|
185 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 12, "completion_tokens": 40, "total_tokens": 52}
|
186 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 81, "completion_tokens": 328, "total_tokens": 409}
|
187 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 425, "completion_tokens": 192, "total_tokens": 617}
|
188 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 621, "completion_tokens": 548, "total_tokens": 1169}
|
189 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 1196, "completion_tokens": 319, "total_tokens": 1515}
|
190 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 127, "completion_tokens": 120, "total_tokens": 247}
|
191 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 262, "completion_tokens": 880, "total_tokens": 1142}
|
192 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 1146, "completion_tokens": 76, "total_tokens": 1222}
|
193 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 13, "completion_tokens": 25, "total_tokens": 38}
|
194 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 30, "completion_tokens": 627, "total_tokens": 657}
|
195 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 661, "completion_tokens": 59, "total_tokens": 720}
|
196 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 724, "completion_tokens": 966, "total_tokens": 1690}
|
197 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 1707, "completion_tokens": 284, "total_tokens": 1991}
|
198 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 2009, "completion_tokens": 703, "total_tokens": 2712}
|
199 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 44, "completion_tokens": 259, "total_tokens": 303}
|
200 |
+
{"model": "qwen-qvq-72b-preview", "provider": "HuggingSpace", "prompt_tokens": 8, "completion_tokens": 37, "total_tokens": 45}
|
201 |
+
{"model": "qvq-72b", "provider": "HuggingSpace", "prompt_tokens": 8, "completion_tokens": 37, "total_tokens": 45}
|
202 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 192, "completion_tokens": 268, "total_tokens": 460}
|
203 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 192, "completion_tokens": 92, "total_tokens": 284}
|
204 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 192, "completion_tokens": 266, "total_tokens": 458}
|
205 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 208, "completion_tokens": 219, "total_tokens": 427}
|
206 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 208, "completion_tokens": 75, "total_tokens": 283}
|
207 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 223, "completion_tokens": 76, "total_tokens": 299}
|
208 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 223, "completion_tokens": 226, "total_tokens": 449}
|
209 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 223, "completion_tokens": 76, "total_tokens": 299}
|
210 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 223, "completion_tokens": 72, "total_tokens": 295}
|
211 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 244, "completion_tokens": 272, "total_tokens": 516}
|
212 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 244, "completion_tokens": 268, "total_tokens": 512}
|
213 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 244, "completion_tokens": 90, "total_tokens": 334}
|
214 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 244, "completion_tokens": 270, "total_tokens": 514}
|
215 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 267, "completion_tokens": 290, "total_tokens": 557}
|
216 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 267, "completion_tokens": 292, "total_tokens": 559}
|
217 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 267, "completion_tokens": 96, "total_tokens": 363}
|
218 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 267, "completion_tokens": 96, "total_tokens": 363}
|
219 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 11, "completion_tokens": 33, "total_tokens": 44}
|
220 |
+
{"model": "NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO", "provider": "HuggingFace", "prompt_tokens": 12, "completion_tokens": 91, "total_tokens": 103}
|
221 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 43, "completion_tokens": 27, "total_tokens": 70}
|
222 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 43, "completion_tokens": 27, "total_tokens": 70}
|
223 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 43, "completion_tokens": 27, "total_tokens": 70}
|
224 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 85, "completion_tokens": 18, "total_tokens": 103}
|
225 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 267, "completion_tokens": 294, "total_tokens": 561}
|
226 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 267, "completion_tokens": 300, "total_tokens": 567}
|
227 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 267, "completion_tokens": 292, "total_tokens": 559}
|
228 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 267, "completion_tokens": 298, "total_tokens": 565}
|
229 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 25, "completion_tokens": 631, "total_tokens": 656}
|
230 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 292, "completion_tokens": 310, "total_tokens": 602}
|
231 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 292, "completion_tokens": 102, "total_tokens": 394}
|
232 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 292, "completion_tokens": 316, "total_tokens": 608}
|
233 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 292, "completion_tokens": 312, "total_tokens": 604}
|
234 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 292, "completion_tokens": 314, "total_tokens": 606}
|
235 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 674, "completion_tokens": 122, "total_tokens": 796}
|
236 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 809, "completion_tokens": 522, "total_tokens": 1331}
|
237 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 292, "completion_tokens": 314, "total_tokens": 606}
|
238 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 9, "completion_tokens": 15, "total_tokens": 24}
|
239 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 28, "completion_tokens": 75, "total_tokens": 103}
|
240 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 292, "completion_tokens": 100, "total_tokens": 392}
|
241 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 107, "completion_tokens": 132, "total_tokens": 239}
|
242 |
+
{"model": "gemini-2.0-flash-thinking", "provider": "Liaobots", "prompt_tokens": 243, "completion_tokens": 532, "total_tokens": 775}
|
243 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 9, "completion_tokens": 55, "total_tokens": 64}
|
244 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 858, "completion_tokens": 162, "total_tokens": 1020}
|
245 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 132, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 843, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 975}
|
246 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 1342, "completion_tokens": 117, "total_tokens": 1459}
|
247 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 1530, "completion_tokens": 129, "total_tokens": 1659}
|
248 |
+
{"model": "gemini-2.0-flash", "provider": "PollinationsAI", "completion_tokens": 452, "prompt_tokens": 10, "total_tokens": 462}
|
249 |
+
{"model": "gemini-2.0-flash", "provider": "Blackbox", "prompt_tokens": 724, "completion_tokens": 1544, "total_tokens": 2268}
|
250 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 28, "completion_tokens": 193, "total_tokens": 221}
|
251 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 18, "completion_tokens": 9, "total_tokens": 27}
|
252 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 292, "completion_tokens": 316, "total_tokens": 608}
|
253 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 292, "completion_tokens": 102, "total_tokens": 394}
|
254 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 292, "completion_tokens": 238, "total_tokens": 530}
|
255 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 292, "completion_tokens": 98, "total_tokens": 390}
|
256 |
+
{"model": "deepseek-chat", "provider": "PollinationsAI", "completion_tokens": 9, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 147, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 156}
|
257 |
+
{"model": "gpt-4o-mini", "provider": "OpenaiChat", "prompt_tokens": 56, "completion_tokens": 6, "total_tokens": 62}
|
258 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 76, "completion_tokens": 8, "total_tokens": 84}
|
259 |
+
{"model": "meta-llama/Llama-3.2-3B", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
260 |
+
{"model": "meta-llama/Llama-3.2-3B-Instruct", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
261 |
+
{"model": "Qwen/QwQ-32B-Preview", "provider": "HuggingFace", "prompt_tokens": 14, "completion_tokens": 0, "total_tokens": 14}
|
262 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingChat", "prompt_tokens": 14, "completion_tokens": 0, "total_tokens": 14}
|
263 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingChat", "prompt_tokens": 12, "completion_tokens": 0, "total_tokens": 12}
|
264 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingChat", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
265 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingChat", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
266 |
+
{"model": "meta-llama/Llama-3.1-8B-Instruct", "provider": "HuggingFace", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
267 |
+
{"model": "meta-llama/Llama-3.2-3B-Instruct", "provider": "HuggingFace", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
268 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct", "provider": "HuggingFace", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
269 |
+
{"model": "mistralai/Mistral-7B-Instruct-v0.3", "provider": "HuggingFace", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
270 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 11, "completion_tokens": 928, "total_tokens": 939}
|
271 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct", "provider": "HuggingChat", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
272 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 319, "completion_tokens": 315, "total_tokens": 634}
|
273 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 319, "completion_tokens": 317, "total_tokens": 636}
|
274 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 319, "completion_tokens": 222, "total_tokens": 541}
|
275 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 319, "completion_tokens": 319, "total_tokens": 638}
|
276 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 319, "completion_tokens": 311, "total_tokens": 630}
|
277 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 319, "completion_tokens": 237, "total_tokens": 556}
|
278 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 332, "completion_tokens": 314, "total_tokens": 646}
|
279 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 332, "completion_tokens": 104, "total_tokens": 436}
|
280 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 292, "completion_tokens": 96, "total_tokens": 388}
|
281 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 292, "completion_tokens": 240, "total_tokens": 532}
|
282 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 292, "completion_tokens": 230, "total_tokens": 522}
|
283 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 292, "completion_tokens": 320, "total_tokens": 612}
|
284 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 292, "completion_tokens": 316, "total_tokens": 608}
|
285 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 292, "completion_tokens": 98, "total_tokens": 390}
|
286 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 292, "completion_tokens": 318, "total_tokens": 610}
|
287 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 292, "completion_tokens": 102, "total_tokens": 394}
|
288 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 267, "completion_tokens": 316, "total_tokens": 583}
|
289 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 267, "completion_tokens": 238, "total_tokens": 505}
|
290 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 267, "completion_tokens": 102, "total_tokens": 369}
|
291 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 267, "completion_tokens": 100, "total_tokens": 367}
|
292 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 267, "completion_tokens": 104, "total_tokens": 371}
|
293 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 192, "completion_tokens": 106, "total_tokens": 298}
|
294 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 192, "completion_tokens": 272, "total_tokens": 464}
|
295 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 297, "completion_tokens": 100, "total_tokens": 397}
|
296 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 302, "completion_tokens": 314, "total_tokens": 616}
|
297 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 32, "completion_tokens": 106, "total_tokens": 138}
|
298 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 90, "completion_tokens": 298, "total_tokens": 388}
|
299 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 95, "completion_tokens": 100, "total_tokens": 195}
|
300 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 69, "completion_tokens": 100, "total_tokens": 169}
|
301 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 69, "completion_tokens": 314, "total_tokens": 383}
|
302 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 69, "completion_tokens": 335, "total_tokens": 404}
|
303 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 69, "completion_tokens": 90, "total_tokens": 159}
|
304 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 467, "completion_tokens": 19, "total_tokens": 486}
|
305 |
+
{"model": "qvq-72b", "provider": "HuggingSpace", "prompt_tokens": 467, "completion_tokens": 1078, "total_tokens": 1545}
|
306 |
+
{"model": "qvq-72b", "provider": "HuggingSpace", "prompt_tokens": 1590, "completion_tokens": 745, "total_tokens": 2335}
|
307 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 2396, "completion_tokens": 673, "total_tokens": 3069}
|
308 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 2396, "completion_tokens": 671, "total_tokens": 3067}
|
309 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 2396, "completion_tokens": 673, "total_tokens": 3069}
|
310 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 2412, "completion_tokens": 759, "total_tokens": 3171}
|
311 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 2412, "completion_tokens": 757, "total_tokens": 3169}
|
312 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 332, "completion_tokens": 312, "total_tokens": 644}
|
313 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 332, "completion_tokens": 102, "total_tokens": 434}
|
314 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 332, "completion_tokens": 314, "total_tokens": 646}
|
315 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 332, "completion_tokens": 108, "total_tokens": 440}
|
316 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 332, "completion_tokens": 318, "total_tokens": 650}
|
317 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 332, "completion_tokens": 314, "total_tokens": 646}
|
318 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 504, "completion_tokens": 342, "total_tokens": 846}
|
319 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 504, "completion_tokens": 338, "total_tokens": 842}
|
320 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 529, "completion_tokens": 320, "total_tokens": 849}
|
321 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 529, "completion_tokens": 106, "total_tokens": 635}
|
322 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 529, "completion_tokens": 102, "total_tokens": 631}
|
323 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 529, "completion_tokens": 104, "total_tokens": 633}
|
324 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 529, "completion_tokens": 322, "total_tokens": 851}
|
325 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 529, "completion_tokens": 104, "total_tokens": 633}
|
326 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 529, "completion_tokens": 318, "total_tokens": 847}
|
327 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 48, "completion_tokens": 4011, "total_tokens": 4059}
|
328 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 529, "completion_tokens": 104, "total_tokens": 633}
|
329 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 529, "completion_tokens": 318, "total_tokens": 847}
|
330 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 529, "completion_tokens": 318, "total_tokens": 847}
|
331 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 529, "completion_tokens": 320, "total_tokens": 849}
|
332 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 529, "completion_tokens": 106, "total_tokens": 635}
|
333 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 529, "completion_tokens": 104, "total_tokens": 633}
|
334 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 529, "completion_tokens": 102, "total_tokens": 631}
|
335 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 570, "completion_tokens": 122, "total_tokens": 692}
|
336 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 595, "completion_tokens": 308, "total_tokens": 903}
|
337 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 595, "completion_tokens": 120, "total_tokens": 715}
|
338 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 595, "completion_tokens": 104, "total_tokens": 699}
|
339 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 565, "completion_tokens": 104, "total_tokens": 669}
|
340 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 565, "completion_tokens": 362, "total_tokens": 927}
|
341 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 332, "completion_tokens": 314, "total_tokens": 646}
|
342 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 332, "completion_tokens": 312, "total_tokens": 644}
|
343 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 332, "completion_tokens": 102, "total_tokens": 434}
|
344 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 332, "completion_tokens": 102, "total_tokens": 434}
|
345 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 105, "completion_tokens": 104, "total_tokens": 209}
|
346 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 105, "completion_tokens": 98, "total_tokens": 203}
|
347 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 105, "completion_tokens": 96, "total_tokens": 201}
|
348 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 105, "completion_tokens": 316, "total_tokens": 421}
|
349 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 105, "completion_tokens": 104, "total_tokens": 209}
|
350 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 191, "completion_tokens": 102, "total_tokens": 293}
|
351 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 191, "completion_tokens": 102, "total_tokens": 293}
|
352 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 191, "completion_tokens": 351, "total_tokens": 542}
|
353 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 191, "completion_tokens": 111, "total_tokens": 302}
|
354 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 191, "completion_tokens": 111, "total_tokens": 302}
|
355 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 579, "completion_tokens": 108, "total_tokens": 687}
|
356 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 579, "completion_tokens": 308, "total_tokens": 887}
|
357 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 579, "completion_tokens": 113, "total_tokens": 692}
|
358 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 579, "completion_tokens": 316, "total_tokens": 895}
|
359 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 579, "completion_tokens": 108, "total_tokens": 687}
|
360 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 681, "completion_tokens": 280, "total_tokens": 961}
|
361 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 681, "completion_tokens": 276, "total_tokens": 957}
|
362 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 700, "completion_tokens": 250, "total_tokens": 950}
|
363 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 719, "completion_tokens": 246, "total_tokens": 965}
|
364 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 719, "completion_tokens": 248, "total_tokens": 967}
|
365 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 719, "completion_tokens": 244, "total_tokens": 963}
|
366 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 719, "completion_tokens": 248, "total_tokens": 967}
|
367 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 650, "completion_tokens": 308, "total_tokens": 958}
|
368 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 650, "completion_tokens": 314, "total_tokens": 964}
|
369 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 709, "completion_tokens": 414, "total_tokens": 1123}
|
370 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 709, "completion_tokens": 102, "total_tokens": 811}
|
371 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 709, "completion_tokens": 136, "total_tokens": 845}
|
372 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 709, "completion_tokens": 108, "total_tokens": 817}
|
373 |
+
{"model": "deepseek-chat", "provider": "Blackbox", "prompt_tokens": 26107, "completion_tokens": 31, "total_tokens": 26138}
|
374 |
+
{"model": "deepseek-chat", "provider": "Blackbox", "prompt_tokens": 27805, "completion_tokens": 1118, "total_tokens": 28923}
|
375 |
+
{"model": "deepseek-ai/DeepSeek-R1", "provider": "Glider", "prompt_tokens": 1666, "completion_tokens": 1796, "total_tokens": 3462}
|
376 |
+
{"model": "deepseek-v3", "provider": "Feature", "prompt_tokens": 9, "completion_tokens": 11, "total_tokens": 20}
|
377 |
+
{"model": "deepseek-r1", "provider": "Feature", "prompt_tokens": 9, "completion_tokens": 11, "total_tokens": 20}
|
378 |
+
{"model": "qwen-2.5-coder-32b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
379 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
380 |
+
{"model": "qwen-qvq-72b-preview", "provider": "HuggingSpace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
381 |
+
{"model": "flux-dev", "provider": "G4F", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
382 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 10, "total_tokens": 18}
|
usage/2025-02-22.jsonl
ADDED
@@ -0,0 +1,464 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "sonar-reasoning-pro", "provider": "PerplexityLabs", "prompt_tokens": 12803, "completion_tokens": 1840, "total_tokens": 14643}
|
2 |
+
{"model": "r1-1776", "provider": "PerplexityLabs", "prompt_tokens": 12803, "completion_tokens": 1169, "total_tokens": 13972}
|
3 |
+
{"model": "sonar-pro", "provider": "PerplexityLabs", "prompt_tokens": 12803, "completion_tokens": 2149, "total_tokens": 14952}
|
4 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 12780, "completion_tokens": 4185, "total_tokens": 16965}
|
5 |
+
{"model": "flux-dev", "provider": "G4F"}
|
6 |
+
{"model": "flux-dev", "provider": "G4F", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
7 |
+
{"model": "flux-dev", "provider": "G4F", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
8 |
+
{"model": "flux-dev", "provider": "G4F", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
9 |
+
{"model": "flux-dev", "provider": "G4F", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
10 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 78, "completion_tokens": 65, "total_tokens": 143}
|
11 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 561, "total_tokens": 771, "completion_tokens": 210, "prompt_tokens_details": null}
|
12 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 884, "total_tokens": 1230, "completion_tokens": 346, "prompt_tokens_details": null}
|
13 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 1260, "total_tokens": 1661, "completion_tokens": 401, "prompt_tokens_details": null}
|
14 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 1691, "total_tokens": 2055, "completion_tokens": 364, "prompt_tokens_details": null}
|
15 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 2061, "total_tokens": 2430, "completion_tokens": 369, "prompt_tokens_details": null}
|
16 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 2448, "total_tokens": 2784, "completion_tokens": 336, "prompt_tokens_details": null}
|
17 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
18 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 14, "completion_tokens": 0, "total_tokens": 14}
|
19 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 706, "total_tokens": 1507, "completion_tokens": 801, "estimated_cost": 0.0024519}
|
20 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 4056, "total_tokens": 4451, "completion_tokens": 395, "prompt_tokens_details": null}
|
21 |
+
{"model": "claude-3-haiku-20240307", "provider": "DDG", "prompt_tokens": 27, "completion_tokens": 140, "total_tokens": 167}
|
22 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DDG", "prompt_tokens": 19, "completion_tokens": 157, "total_tokens": 176}
|
23 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct", "provider": "DeepInfraChat", "prompt_tokens": 20, "total_tokens": 283, "completion_tokens": 263, "estimated_cost": 0.00010980000000000001}
|
24 |
+
{"model": "all-tools-230b", "provider": "ChatGLM", "prompt_tokens": 67, "completion_tokens": 132, "total_tokens": 199}
|
25 |
+
{"model": "gpt-4", "provider": "Yqcloud", "prompt_tokens": 15, "completion_tokens": 176, "total_tokens": 191}
|
26 |
+
{"model": "gpt-4", "provider": "Yqcloud", "prompt_tokens": 15, "completion_tokens": 424, "total_tokens": 439}
|
27 |
+
{"model": "gpt-4", "provider": "Yqcloud", "prompt_tokens": 16, "completion_tokens": 201, "total_tokens": 217}
|
28 |
+
{"model": "gpt-4", "provider": "Yqcloud", "prompt_tokens": 16, "completion_tokens": 140, "total_tokens": 156}
|
29 |
+
{"model": "qwen-qvq-72b-preview", "provider": "Qwen_QVQ_72B", "prompt_tokens": 11615, "completion_tokens": 2031, "total_tokens": 13646}
|
30 |
+
{"model": "qwen-2.5-1m-demo", "provider": "Qwen_Qwen_2_5M_Demo", "prompt_tokens": 11615, "completion_tokens": 1772, "total_tokens": 13387}
|
31 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 11615, "completion_tokens": 1227, "total_tokens": 12842}
|
32 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 14881, "completion_tokens": 1444, "total_tokens": 16325}
|
33 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 15098, "completion_tokens": 1191, "total_tokens": 16289}
|
34 |
+
{"model": "blackboxai-pro", "provider": "Blackbox", "prompt_tokens": 16324, "completion_tokens": 2044, "total_tokens": 18368}
|
35 |
+
{"model": "blackboxai-pro", "provider": "Blackbox", "prompt_tokens": 16324, "completion_tokens": 1930, "total_tokens": 18254}
|
36 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 16324, "completion_tokens": 1557, "total_tokens": 17881}
|
37 |
+
{"model": "deepseek-ai/DeepSeek-R1", "provider": "Glider", "prompt_tokens": 16324, "completion_tokens": 1459, "total_tokens": 17783}
|
38 |
+
{"model": "deepseek-ai/DeepSeek-R1", "provider": "Glider", "prompt_tokens": 20330, "completion_tokens": 1852, "total_tokens": 22182}
|
39 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 33, "completion_tokens": 228, "total_tokens": 261}
|
40 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 21, "completion_tokens": 200, "total_tokens": 221}
|
41 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 18, "completion_tokens": 193, "total_tokens": 211}
|
42 |
+
{"model": "deepseek-ai/DeepSeek-R1", "provider": "Glider", "prompt_tokens": 22186, "completion_tokens": 1572, "total_tokens": 23758}
|
43 |
+
{"model": "deepseek-ai/DeepSeek-R1", "provider": "Glider", "prompt_tokens": 23791, "completion_tokens": 1685, "total_tokens": 25476}
|
44 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 719, "completion_tokens": 270, "total_tokens": 989}
|
45 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 719, "completion_tokens": 258, "total_tokens": 977}
|
46 |
+
{"model": "stabilityai-stable-diffusion-3-5-large", "provider": "StableDiffusion35Large", "prompt_tokens": 18, "completion_tokens": 223, "total_tokens": 241}
|
47 |
+
{"model": "midijourney", "provider": "PollinationsAI", "completion_tokens": 250, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1176, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1426}
|
48 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 18, "completion_tokens": 273, "total_tokens": 291}
|
49 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 18, "completion_tokens": 273, "total_tokens": 291}
|
50 |
+
{"model": "black-forest-labs-flux-1-dev", "provider": "BlackForestLabsFlux1Dev", "prompt_tokens": 12, "completion_tokens": 144, "total_tokens": 156}
|
51 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 18, "completion_tokens": 275, "total_tokens": 293}
|
52 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 18, "completion_tokens": 275, "total_tokens": 293}
|
53 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 18, "completion_tokens": 269, "total_tokens": 287}
|
54 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 18, "completion_tokens": 267, "total_tokens": 285}
|
55 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 18, "completion_tokens": 211, "total_tokens": 229}
|
56 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 645, "completion_tokens": 142, "total_tokens": 787}
|
57 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 645, "completion_tokens": 102, "total_tokens": 747}
|
58 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 704, "completion_tokens": 246, "total_tokens": 950}
|
59 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 760, "completion_tokens": 108, "total_tokens": 868}
|
60 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 765, "completion_tokens": 84, "total_tokens": 849}
|
61 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 765, "completion_tokens": 82, "total_tokens": 847}
|
62 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 765, "completion_tokens": 315, "total_tokens": 1080}
|
63 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 765, "completion_tokens": 106, "total_tokens": 871}
|
64 |
+
{"model": "qwen-qvq-72b-preview", "provider": "Qwen_QVQ_72B", "prompt_tokens": 27, "completion_tokens": 1517, "total_tokens": 1544}
|
65 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 96, "completion_tokens": 311, "total_tokens": 407}
|
66 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 96, "completion_tokens": 799, "total_tokens": 895}
|
67 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 96, "completion_tokens": 795, "total_tokens": 891}
|
68 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 96, "completion_tokens": 793, "total_tokens": 889}
|
69 |
+
{"model": "ImageGeneration", "provider": "Blackbox", "prompt_tokens": 96, "completion_tokens": 315, "total_tokens": 411}
|
70 |
+
{"model": "flux", "provider": "PollinationsImage", "prompt_tokens": 96, "completion_tokens": 261, "total_tokens": 357}
|
71 |
+
{"model": "flux", "provider": "Blackbox", "prompt_tokens": 96, "completion_tokens": 340, "total_tokens": 436}
|
72 |
+
{"model": "stabilityai-stable-diffusion-3-5-large", "provider": "StableDiffusion35Large", "prompt_tokens": 41, "completion_tokens": 184, "total_tokens": 225}
|
73 |
+
{"model": "qwen-2.5-1m-demo", "provider": "Qwen_Qwen_2_5M_Demo", "prompt_tokens": 77, "completion_tokens": 122, "total_tokens": 199}
|
74 |
+
{"model": "janus-pro-7b-image", "provider": "Janus_Pro_7B", "prompt_tokens": 39, "completion_tokens": 655, "total_tokens": 694}
|
75 |
+
{"model": "qwen-qvq-72b-preview", "provider": "Qwen_QVQ_72B", "prompt_tokens": 15, "completion_tokens": 27, "total_tokens": 42}
|
76 |
+
{"model": "flux-pro", "provider": "PollinationsImage", "prompt_tokens": 45, "completion_tokens": 724, "total_tokens": 769}
|
77 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 59, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 145, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 204}
|
78 |
+
{"model": "claude", "provider": "PollinationsAI", "completion_tokens": 56, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 162, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 218}
|
79 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 217, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 146, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 363}
|
80 |
+
{"model": "o3-mini", "provider": "Pi", "prompt_tokens": 15, "completion_tokens": 53, "total_tokens": 68}
|
81 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 303, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3591, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3894}
|
82 |
+
{"model": "command-r-plus-08-2024", "provider": "HuggingSpace", "prompt_tokens": 351, "completion_tokens": 1038, "total_tokens": 1389}
|
83 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 96, "completion_tokens": 799, "total_tokens": 895}
|
84 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 96, "completion_tokens": 803, "total_tokens": 899}
|
85 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 806, "completion_tokens": 317, "total_tokens": 1123}
|
86 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 806, "completion_tokens": 105, "total_tokens": 911}
|
87 |
+
{"model": "general", "provider": "ImageLabs", "prompt_tokens": 39, "completion_tokens": 166, "total_tokens": 205}
|
88 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 96, "completion_tokens": 807, "total_tokens": 903}
|
89 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 96, "completion_tokens": 801, "total_tokens": 897}
|
90 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 96, "completion_tokens": 803, "total_tokens": 899}
|
91 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 96, "completion_tokens": 807, "total_tokens": 903}
|
92 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 96, "completion_tokens": 484, "total_tokens": 580}
|
93 |
+
{"model": "mistralai/Mistral-Nemo-Instruct-2407", "provider": "HuggingChat", "prompt_tokens": 63, "completion_tokens": 1051, "total_tokens": 1114}
|
94 |
+
{"model": "mistralai/Mistral-Nemo-Instruct-2407", "provider": "HuggingChat", "prompt_tokens": 24, "completion_tokens": 206, "total_tokens": 230}
|
95 |
+
{"model": "chat-llama-3-1-70b", "provider": "Glider", "prompt_tokens": 27, "completion_tokens": 244, "total_tokens": 271}
|
96 |
+
{"model": "chat-gemini-flash", "provider": "GizAI", "prompt_tokens": 27, "completion_tokens": 339, "total_tokens": 366}
|
97 |
+
{"model": "janus-pro-7b-image", "provider": "G4F", "prompt_tokens": 69, "completion_tokens": 1215, "total_tokens": 1284}
|
98 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 18, "completion_tokens": 209, "total_tokens": 227}
|
99 |
+
{"model": "flux-dev", "provider": "G4F", "prompt_tokens": 18, "completion_tokens": 205, "total_tokens": 223}
|
100 |
+
{"model": "flux-dev", "provider": "G4F", "prompt_tokens": 18, "completion_tokens": 211, "total_tokens": 229}
|
101 |
+
{"model": "gemini-1.5-pro", "provider": "FreeGpt", "prompt_tokens": 15, "completion_tokens": 76, "total_tokens": 91}
|
102 |
+
{"model": "mistral-7b", "provider": "Free2GPT", "prompt_tokens": 15, "completion_tokens": 416, "total_tokens": 431}
|
103 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 21, "completion_tokens": 190, "total_tokens": 211}
|
104 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 21, "completion_tokens": 226, "total_tokens": 247}
|
105 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DDG", "prompt_tokens": 17, "completion_tokens": 115, "total_tokens": 132}
|
106 |
+
{"model": "01-ai/Yi-34B-Chat", "provider": "DeepInfraChat", "prompt_tokens": 14, "total_tokens": 93, "completion_tokens": 79, "estimated_cost": 3.342e-05}
|
107 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Llama-70B", "provider": "DeepInfraChat", "prompt_tokens": 7, "total_tokens": 99, "completion_tokens": 92, "estimated_cost": 6.508999999999999e-05}
|
108 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Llama-70B", "provider": "DeepInfraChat", "prompt_tokens": 14, "total_tokens": 42, "completion_tokens": 28, "estimated_cost": 2.2539999999999998e-05}
|
109 |
+
{"model": "deepseek-ai/DeepSeek-V3", "provider": "DeepInfraChat", "prompt_tokens": 22, "completion_tokens": 154, "total_tokens": 176}
|
110 |
+
{"model": "deepseek-ai/DeepSeek-V3", "provider": "DeepInfraChat", "prompt_tokens": 11, "total_tokens": 182, "completion_tokens": 171, "estimated_cost": 0.00015758000000000002}
|
111 |
+
{"model": "black-forest-labs/FLUX-1.1-pro", "provider": "DeepInfra", "prompt_tokens": 41, "completion_tokens": 22, "total_tokens": 63}
|
112 |
+
{"model": "command-r-plus-08-2024", "provider": "CohereForAI", "prompt_tokens": 34, "completion_tokens": 672, "total_tokens": 706}
|
113 |
+
{"model": "command-r-plus-08-2024", "provider": "CohereForAI", "prompt_tokens": 21, "completion_tokens": 367, "total_tokens": 388}
|
114 |
+
{"model": "command-r7b-12-2024", "provider": "CohereForAI", "prompt_tokens": 22, "completion_tokens": 697, "total_tokens": 719}
|
115 |
+
{"model": "command-r-plus", "provider": "CohereForAI", "prompt_tokens": 22, "completion_tokens": 662, "total_tokens": 684}
|
116 |
+
{"model": "command-r-plus", "provider": "CohereForAI", "prompt_tokens": 20, "completion_tokens": 241, "total_tokens": 261}
|
117 |
+
{"model": "all-tools-230b", "provider": "ChatGLM", "prompt_tokens": 39, "completion_tokens": 132, "total_tokens": 171}
|
118 |
+
{"model": "black-forest-labs-flux-1-schnell", "provider": "BlackForestLabsFlux1Schnell", "prompt_tokens": 21, "completion_tokens": 188, "total_tokens": 209}
|
119 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 52, "completion_tokens": 93, "total_tokens": 145}
|
120 |
+
{"model": "GPT-4o", "provider": "Blackbox", "prompt_tokens": 12, "completion_tokens": 49, "total_tokens": 61}
|
121 |
+
{"model": "GPT-4o", "provider": "Blackbox", "prompt_tokens": 21, "completion_tokens": 77, "total_tokens": 98}
|
122 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 39, "completion_tokens": 308, "total_tokens": 347}
|
123 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 20, "completion_tokens": 779, "total_tokens": 799}
|
124 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 13, "completion_tokens": 15, "total_tokens": 28}
|
125 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 35, "completion_tokens": 17, "total_tokens": 52}
|
126 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 62, "completion_tokens": 17, "total_tokens": 79}
|
127 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 15, "completion_tokens": 10, "total_tokens": 25}
|
128 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 645, "completion_tokens": 109, "total_tokens": 754}
|
129 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 645, "completion_tokens": 240, "total_tokens": 885}
|
130 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 40, "completion_tokens": 11, "total_tokens": 51}
|
131 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 60, "completion_tokens": 27, "total_tokens": 87}
|
132 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 95, "completion_tokens": 42, "total_tokens": 137}
|
133 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 144, "completion_tokens": 58, "total_tokens": 202}
|
134 |
+
{"model": "sd-3.5", "provider": "HuggingSpace", "prompt_tokens": 208, "completion_tokens": 203, "total_tokens": 411}
|
135 |
+
{"model": "sd-3.5", "provider": "HuggingFace", "prompt_tokens": 224, "completion_tokens": 77, "total_tokens": 301}
|
136 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 251, "completion_tokens": 52, "total_tokens": 303}
|
137 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 811, "completion_tokens": 107, "total_tokens": 918}
|
138 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 811, "completion_tokens": 321, "total_tokens": 1132}
|
139 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 811, "completion_tokens": 321, "total_tokens": 1132}
|
140 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 318, "completion_tokens": 199, "total_tokens": 517}
|
141 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 863, "completion_tokens": 332, "total_tokens": 1195}
|
142 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 1938, "total_tokens": 2033, "completion_tokens": 95, "prompt_tokens_details": null}
|
143 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 3539, "total_tokens": 3893, "completion_tokens": 354, "prompt_tokens_details": null}
|
144 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 885, "completion_tokens": 334, "total_tokens": 1219}
|
145 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 910, "completion_tokens": 98, "total_tokens": 1008}
|
146 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 910, "completion_tokens": 104, "total_tokens": 1014}
|
147 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 910, "completion_tokens": 100, "total_tokens": 1010}
|
148 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 910, "completion_tokens": 104, "total_tokens": 1014}
|
149 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 23, "completion_tokens": 100, "total_tokens": 123}
|
150 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 23, "completion_tokens": 106, "total_tokens": 129}
|
151 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 23, "completion_tokens": 244, "total_tokens": 267}
|
152 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 50, "completion_tokens": 340, "total_tokens": 390}
|
153 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 50, "completion_tokens": 248, "total_tokens": 298}
|
154 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 50, "completion_tokens": 98, "total_tokens": 148}
|
155 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 50, "completion_tokens": 336, "total_tokens": 386}
|
156 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 50, "completion_tokens": 106, "total_tokens": 156}
|
157 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 50, "completion_tokens": 336, "total_tokens": 386}
|
158 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 50, "completion_tokens": 114, "total_tokens": 164}
|
159 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 23, "completion_tokens": 112, "total_tokens": 135}
|
160 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 50, "completion_tokens": 108, "total_tokens": 158}
|
161 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 150, "completion_tokens": 39, "total_tokens": 189}
|
162 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 204, "completion_tokens": 113, "total_tokens": 317}
|
163 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 521, "completion_tokens": 49, "total_tokens": 570}
|
164 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 574, "completion_tokens": 111, "total_tokens": 685}
|
165 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 755, "completion_tokens": 48, "total_tokens": 803}
|
166 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 929, "completion_tokens": 100, "total_tokens": 1029}
|
167 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 1275, "completion_tokens": 132, "total_tokens": 1407}
|
168 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 1596, "completion_tokens": 57, "total_tokens": 1653}
|
169 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 71, "completion_tokens": 73, "total_tokens": 144}
|
170 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 60, "completion_tokens": 120, "total_tokens": 180}
|
171 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 286, "completion_tokens": 61, "total_tokens": 347}
|
172 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 48, "completion_tokens": 52, "total_tokens": 100}
|
173 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 1833, "completion_tokens": 107, "total_tokens": 1940}
|
174 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 2008, "completion_tokens": 93, "total_tokens": 2101}
|
175 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 937, "completion_tokens": 120, "total_tokens": 1057}
|
176 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 937, "completion_tokens": 116, "total_tokens": 1053}
|
177 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 937, "completion_tokens": 248, "total_tokens": 1185}
|
178 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 937, "completion_tokens": 116, "total_tokens": 1053}
|
179 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 937, "completion_tokens": 112, "total_tokens": 1049}
|
180 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 937, "completion_tokens": 114, "total_tokens": 1051}
|
181 |
+
{"model": "flux-dev", "provider": "G4F", "prompt_tokens": 937, "completion_tokens": 250, "total_tokens": 1187}
|
182 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 937, "completion_tokens": 118, "total_tokens": 1055}
|
183 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 937, "completion_tokens": 344, "total_tokens": 1281}
|
184 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace", "prompt_tokens": 937, "completion_tokens": 118, "total_tokens": 1055}
|
185 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 937, "completion_tokens": 236, "total_tokens": 1173}
|
186 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 937, "completion_tokens": 244, "total_tokens": 1181}
|
187 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 33, "completion_tokens": 201, "total_tokens": 234}
|
188 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 17111, "completion_tokens": 3559, "total_tokens": 20670}
|
189 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
190 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
191 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
192 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
193 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
194 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
195 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
196 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
197 |
+
{"model": "flux-dev", "provider": "G4F"}
|
198 |
+
{"model": "flux-pro", "provider": "PollinationsAI"}
|
199 |
+
{"model": "flux-pro", "provider": "PollinationsAI"}
|
200 |
+
{"model": "flux-pro", "provider": "PollinationsAI"}
|
201 |
+
{"model": "flux-pro", "provider": "PollinationsAI"}
|
202 |
+
{"model": "flux-pro", "provider": "PollinationsAI"}
|
203 |
+
{"model": "flux-pro", "provider": "PollinationsAI"}
|
204 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingChat"}
|
205 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingChat"}
|
206 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
207 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
208 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
209 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
210 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
211 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
212 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
213 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
214 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
215 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 937, "completion_tokens": 0, "total_tokens": 937}
|
216 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 937, "completion_tokens": 0, "total_tokens": 937}
|
217 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 937, "completion_tokens": 0, "total_tokens": 937}
|
218 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 937, "completion_tokens": 0, "total_tokens": 937}
|
219 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 734, "completion_tokens": 0, "total_tokens": 734}
|
220 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 734, "completion_tokens": 0, "total_tokens": 734}
|
221 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 645, "completion_tokens": 0, "total_tokens": 645}
|
222 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 645, "completion_tokens": 0, "total_tokens": 645}
|
223 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 620, "completion_tokens": 0, "total_tokens": 620}
|
224 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 620, "completion_tokens": 0, "total_tokens": 620}
|
225 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 620, "completion_tokens": 0, "total_tokens": 620}
|
226 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 564, "completion_tokens": 0, "total_tokens": 564}
|
227 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 564, "completion_tokens": 0, "total_tokens": 564}
|
228 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 564, "completion_tokens": 0, "total_tokens": 564}
|
229 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 564, "completion_tokens": 0, "total_tokens": 564}
|
230 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 902, "completion_tokens": 0, "total_tokens": 902}
|
231 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 902, "completion_tokens": 0, "total_tokens": 902}
|
232 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 902, "completion_tokens": 0, "total_tokens": 902}
|
233 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 902, "completion_tokens": 0, "total_tokens": 902}
|
234 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 85, "completion_tokens": 0, "total_tokens": 85}
|
235 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 85, "completion_tokens": 0, "total_tokens": 85}
|
236 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 85, "completion_tokens": 0, "total_tokens": 85}
|
237 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 176, "completion_tokens": 0, "total_tokens": 176}
|
238 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
239 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
240 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
241 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
242 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
243 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
244 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
245 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
246 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
247 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
248 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
249 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
250 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
251 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
252 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
253 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
254 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 9, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1140, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1149}
|
255 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1007, "completion_tokens": 0, "total_tokens": 1007}
|
256 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1007, "completion_tokens": 0, "total_tokens": 1007}
|
257 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1007, "completion_tokens": 0, "total_tokens": 1007}
|
258 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1041, "completion_tokens": 0, "total_tokens": 1041}
|
259 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1041, "completion_tokens": 0, "total_tokens": 1041}
|
260 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1041, "completion_tokens": 0, "total_tokens": 1041}
|
261 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1041, "completion_tokens": 0, "total_tokens": 1041}
|
262 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1041, "completion_tokens": 0, "total_tokens": 1041}
|
263 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1041, "completion_tokens": 0, "total_tokens": 1041}
|
264 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1041, "completion_tokens": 0, "total_tokens": 1041}
|
265 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1041, "completion_tokens": 0, "total_tokens": 1041}
|
266 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1062, "completion_tokens": 0, "total_tokens": 1062}
|
267 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1062, "completion_tokens": 0, "total_tokens": 1062}
|
268 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1062, "completion_tokens": 0, "total_tokens": 1062}
|
269 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1062, "completion_tokens": 0, "total_tokens": 1062}
|
270 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1013, "completion_tokens": 0, "total_tokens": 1013}
|
271 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1013, "completion_tokens": 0, "total_tokens": 1013}
|
272 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1013, "completion_tokens": 0, "total_tokens": 1013}
|
273 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1013, "completion_tokens": 0, "total_tokens": 1013}
|
274 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1013, "completion_tokens": 0, "total_tokens": 1013}
|
275 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1013, "completion_tokens": 0, "total_tokens": 1013}
|
276 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1013, "completion_tokens": 0, "total_tokens": 1013}
|
277 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1013, "completion_tokens": 0, "total_tokens": 1013}
|
278 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1013, "completion_tokens": 0, "total_tokens": 1013}
|
279 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 1529, "completion_tokens": 286, "total_tokens": 1815}
|
280 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 31, "completion_tokens": 3580, "total_tokens": 3611}
|
281 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1013, "completion_tokens": 0, "total_tokens": 1013}
|
282 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 1013, "completion_tokens": 0, "total_tokens": 1013}
|
283 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 1013, "completion_tokens": 0, "total_tokens": 1013}
|
284 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 1013, "completion_tokens": 0, "total_tokens": 1013}
|
285 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 1013, "completion_tokens": 0, "total_tokens": 1013}
|
286 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 1013, "completion_tokens": 0, "total_tokens": 1013}
|
287 |
+
{"model": "qwen-qvq-72b-preview", "provider": "Qwen_QVQ_72B", "prompt_tokens": 1867, "completion_tokens": 1648, "total_tokens": 3515}
|
288 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 967, "completion_tokens": 0, "total_tokens": 967}
|
289 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 967, "completion_tokens": 0, "total_tokens": 967}
|
290 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 967, "completion_tokens": 0, "total_tokens": 967}
|
291 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 967, "completion_tokens": 0, "total_tokens": 967}
|
292 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 940, "completion_tokens": 0, "total_tokens": 940}
|
293 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 967, "completion_tokens": 0, "total_tokens": 967}
|
294 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 967, "completion_tokens": 0, "total_tokens": 967}
|
295 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 972, "completion_tokens": 0, "total_tokens": 972}
|
296 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 972, "completion_tokens": 0, "total_tokens": 972}
|
297 |
+
{"model": "qwen-2.5-1m-demo", "provider": "Qwen_Qwen_2_5M_Demo", "prompt_tokens": 3565, "completion_tokens": 982, "total_tokens": 4547}
|
298 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
299 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
300 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
301 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
302 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
303 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
304 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
305 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
306 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
307 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
308 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
309 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
310 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
311 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
312 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
313 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
314 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
315 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
316 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
317 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 982, "completion_tokens": 0, "total_tokens": 982}
|
318 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
319 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
320 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
321 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
322 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
323 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
324 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
325 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
326 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 276, "completion_tokens_details": {"reasoning_tokens": 256}, "prompt_tokens": 155, "prompt_tokens_details": {"cached_tokens": 0}, "total_tokens": 431}
|
327 |
+
{"model": "qwq-32b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
328 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
329 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
330 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
331 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 27, "completion_tokens": 0, "total_tokens": 27}
|
332 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
333 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
334 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
335 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
336 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
337 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
338 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
339 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
340 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
341 |
+
{"model": "flux-dev", "provider": "G4F", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
342 |
+
{"model": "flux-dev", "provider": "G4F", "prompt_tokens": 1148, "completion_tokens": 0, "total_tokens": 1148}
|
343 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 935, "completion_tokens": 0, "total_tokens": 935}
|
344 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 935, "completion_tokens": 0, "total_tokens": 935}
|
345 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 935, "completion_tokens": 0, "total_tokens": 935}
|
346 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 935, "completion_tokens": 0, "total_tokens": 935}
|
347 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 935, "completion_tokens": 0, "total_tokens": 935}
|
348 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 935, "completion_tokens": 0, "total_tokens": 935}
|
349 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 935, "completion_tokens": 0, "total_tokens": 935}
|
350 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 935, "completion_tokens": 0, "total_tokens": 935}
|
351 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 935, "completion_tokens": 0, "total_tokens": 935}
|
352 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 935, "completion_tokens": 0, "total_tokens": 935}
|
353 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1178, "completion_tokens": 0, "total_tokens": 1178}
|
354 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1178, "completion_tokens": 0, "total_tokens": 1178}
|
355 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 1178, "completion_tokens": 0, "total_tokens": 1178}
|
356 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 277, "completion_tokens": 0, "total_tokens": 277}
|
357 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 277, "completion_tokens": 0, "total_tokens": 277}
|
358 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 277, "completion_tokens": 0, "total_tokens": 277}
|
359 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 277, "completion_tokens": 0, "total_tokens": 277}
|
360 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 231, "completion_tokens": 0, "total_tokens": 231}
|
361 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 231, "completion_tokens": 0, "total_tokens": 231}
|
362 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 231, "completion_tokens": 0, "total_tokens": 231}
|
363 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 2132, "completion_tokens": 271, "total_tokens": 2403}
|
364 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
365 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 245, "completion_tokens": 0, "total_tokens": 245}
|
366 |
+
{"model": "flux-dev", "provider": "G4F", "prompt_tokens": 535, "completion_tokens": 0, "total_tokens": 535}
|
367 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 547, "completion_tokens": 0, "total_tokens": 547}
|
368 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 558, "completion_tokens": 0, "total_tokens": 558}
|
369 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 2397, "completion_tokens": 0, "total_tokens": 2397}
|
370 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 2592, "completion_tokens": 0, "total_tokens": 2592}
|
371 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 73, "completion_tokens": 0, "total_tokens": 73}
|
372 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
373 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 45, "completion_tokens": 0, "total_tokens": 45}
|
374 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 45, "completion_tokens": 0, "total_tokens": 45}
|
375 |
+
{"model": "command-r-plus", "provider": "HuggingSpace"}
|
376 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
377 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
378 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
379 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
380 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
381 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
382 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
383 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
384 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
385 |
+
{"model": "flux-dev", "provider": "G4F"}
|
386 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
387 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
388 |
+
{"model": "flux-dev", "provider": "G4F"}
|
389 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
390 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
391 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
392 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
393 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
394 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
395 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
396 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
397 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
398 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
399 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
400 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
401 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
402 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
403 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
404 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
405 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
406 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
407 |
+
{"model": "flux-schnell", "provider": "HuggingFace", "prompt_tokens": 26, "completion_tokens": 0, "total_tokens": 26}
|
408 |
+
{"model": "flux-schnell", "provider": "HuggingFace", "prompt_tokens": 62, "completion_tokens": 0, "total_tokens": 62}
|
409 |
+
{"model": "flux-schnell", "provider": "PollinationsImage", "prompt_tokens": 106, "completion_tokens": 0, "total_tokens": 106}
|
410 |
+
{"model": "deepseek-v3", "provider": "DeepInfraChat", "prompt_tokens": 13, "completion_tokens": 419, "total_tokens": 432}
|
411 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
412 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
413 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 106, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2874, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2980}
|
414 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 96, "completion_tokens": 0, "total_tokens": 96}
|
415 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 263, "completion_tokens": 0, "total_tokens": 263}
|
416 |
+
{"model": "meta-llama/Llama-3.2-3B-Instruct", "provider": "HuggingFace", "prompt_tokens": 179, "completion_tokens": 0, "total_tokens": 179}
|
417 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
418 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
419 |
+
{"model": "flux-dev", "provider": "G4F"}
|
420 |
+
{"model": "flux-dev", "provider": "G4F"}
|
421 |
+
{"model": "flux-dev", "provider": "PollinationsImage"}
|
422 |
+
{"model": "flux-dev", "provider": "PollinationsImage"}
|
423 |
+
{"model": "flux-dev", "provider": "PollinationsImage"}
|
424 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace"}
|
425 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
426 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
427 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
428 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
429 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace"}
|
430 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace"}
|
431 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace"}
|
432 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
433 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
434 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace"}
|
435 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
436 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
437 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace"}
|
438 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace"}
|
439 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace"}
|
440 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
441 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace"}
|
442 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
443 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
444 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
445 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace"}
|
446 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
447 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace"}
|
448 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
449 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
450 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace"}
|
451 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace"}
|
452 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
453 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
454 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
455 |
+
{"model": "flux-dev", "provider": "PollinationsImage"}
|
456 |
+
{"model": "flux-dev", "provider": "PollinationsImage"}
|
457 |
+
{"model": "flux-dev", "provider": "HuggingFace"}
|
458 |
+
{"model": "flux-dev", "provider": "HuggingFace"}
|
459 |
+
{"model": "flux-dev", "provider": "PollinationsImage"}
|
460 |
+
{"model": "flux-dev", "provider": "HuggingFace"}
|
461 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace"}
|
462 |
+
{"model": "flux-dev", "provider": "PollinationsImage"}
|
463 |
+
{"model": "flux-dev", "provider": "HuggingFace"}
|
464 |
+
{"model": "flux-dev", "provider": "HuggingFace"}
|
usage/2025-02-23.jsonl
ADDED
@@ -0,0 +1,313 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
2 |
+
{"model": "sd-3.5", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
3 |
+
{"model": "flux-schnell", "provider": "HuggingSpace", "prompt_tokens": 29, "completion_tokens": 0, "total_tokens": 29}
|
4 |
+
{"model": "sd-3.5", "provider": "HuggingSpace", "prompt_tokens": 122, "completion_tokens": 0, "total_tokens": 122}
|
5 |
+
{"model": "flux-schnell", "provider": "HuggingFace", "prompt_tokens": 122, "completion_tokens": 0, "total_tokens": 122}
|
6 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 122, "completion_tokens": 0, "total_tokens": 122}
|
7 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 139, "completion_tokens": 0, "total_tokens": 139}
|
8 |
+
{"model": "deepseek-v3", "provider": "Feature"}
|
9 |
+
{"model": "deepseek-r1", "provider": "Feature"}
|
10 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 15, "completion_tokens": 0, "total_tokens": 15}
|
11 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 2427, "completion_tokens": 0, "total_tokens": 2427}
|
12 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 2489, "completion_tokens": 0, "total_tokens": 2489}
|
13 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 2642, "completion_tokens": 0, "total_tokens": 2642}
|
14 |
+
{"model": "flux-dev", "provider": "PollinationsImage"}
|
15 |
+
{"model": "deepseek-v3", "provider": "Feature"}
|
16 |
+
{"model": "gpt-4o-mini", "provider": "Feature"}
|
17 |
+
{"model": "o3-mini", "provider": "Feature"}
|
18 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
19 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 44, "completion_tokens": 0, "total_tokens": 44}
|
20 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 163, "completion_tokens": 269, "total_tokens": 432}
|
21 |
+
{"model": "qwen-2.5-coder-32b", "provider": "HuggingFace", "prompt_tokens": 233, "completion_tokens": 0, "total_tokens": 233}
|
22 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 51, "completion_tokens": 0, "total_tokens": 51}
|
23 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 51, "completion_tokens": 0, "total_tokens": 51}
|
24 |
+
{"model": "deepseek-ai/DeepSeek-R1", "provider": "Glider", "prompt_tokens": 27, "completion_tokens": 1031, "total_tokens": 1058}
|
25 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 66, "completion_tokens": 643, "total_tokens": 709}
|
26 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 713, "completion_tokens": 682, "total_tokens": 1395}
|
27 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 1435, "completion_tokens": 473, "total_tokens": 1908}
|
28 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 1912, "completion_tokens": 1024, "total_tokens": 2936}
|
29 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 1435, "completion_tokens": 473, "total_tokens": 1908}
|
30 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 1435, "completion_tokens": 473, "total_tokens": 1908}
|
31 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 1435, "completion_tokens": 473, "total_tokens": 1908}
|
32 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 5152, "completion_tokens": 463, "total_tokens": 5615}
|
33 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 5619, "completion_tokens": 993, "total_tokens": 6612}
|
34 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 31, "completion_tokens": 0, "total_tokens": 31}
|
35 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 6685, "completion_tokens": 439, "total_tokens": 7124}
|
36 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 7128, "completion_tokens": 806, "total_tokens": 7934}
|
37 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 31, "completion_tokens": 75, "total_tokens": 106}
|
38 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 206, "completion_tokens": 439, "total_tokens": 645}
|
39 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 696, "completion_tokens": 336, "total_tokens": 1032}
|
40 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 48, "completion_tokens": 111, "total_tokens": 159}
|
41 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 172, "completion_tokens": 151, "total_tokens": 323}
|
42 |
+
{"model": "flux-dev", "provider": "PollinationsImage"}
|
43 |
+
{"model": "flux-dev", "provider": "G4F"}
|
44 |
+
{"model": "flux-dev", "provider": "G4F"}
|
45 |
+
{"model": "flux-dev", "provider": "G4F"}
|
46 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 21, "completion_tokens": 108, "total_tokens": 129}
|
47 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 153, "completion_tokens": 230, "total_tokens": 383}
|
48 |
+
{"model": "gpt-4", "provider": "Blackbox", "prompt_tokens": 15, "completion_tokens": 585, "total_tokens": 600}
|
49 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "completion_tokens": 919, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 8598, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 9517}
|
50 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 15, "completion_tokens": 528, "total_tokens": 543}
|
51 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 15, "completion_tokens": 437, "total_tokens": 452}
|
52 |
+
{"model": "all-tools-230b", "provider": "ChatGLM", "prompt_tokens": 15, "completion_tokens": 147, "total_tokens": 162}
|
53 |
+
{"model": "command-r-plus", "provider": "CohereForAI", "prompt_tokens": 15, "completion_tokens": 297, "total_tokens": 312}
|
54 |
+
{"model": "deepseek-ai/DeepSeek-R1", "provider": "Glider", "prompt_tokens": 15, "completion_tokens": 1089, "total_tokens": 1104}
|
55 |
+
{"model": "deepseek-ai/DeepSeek-R1", "provider": "Glider", "prompt_tokens": 15, "completion_tokens": 956, "total_tokens": 971}
|
56 |
+
{"model": "deepseek-ai/DeepSeek-R1", "provider": "Glider", "prompt_tokens": 4634, "completion_tokens": 967, "total_tokens": 5601}
|
57 |
+
{"model": "GPT-4o", "provider": "Blackbox", "prompt_tokens": 15, "completion_tokens": 548, "total_tokens": 563}
|
58 |
+
{"model": "all-tools-230b", "provider": "ChatGLM", "prompt_tokens": 15, "completion_tokens": 147, "total_tokens": 162}
|
59 |
+
{"model": "all-tools-230b", "provider": "ChatGLM", "prompt_tokens": 10, "completion_tokens": 518, "total_tokens": 528}
|
60 |
+
{"model": "mistral-7b", "provider": "Free2GPT", "prompt_tokens": 17, "completion_tokens": 2769, "total_tokens": 2786}
|
61 |
+
{"model": "mistral-7b", "provider": "Free2GPT", "prompt_tokens": 12, "completion_tokens": 784, "total_tokens": 796}
|
62 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 32, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 154, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 186}
|
63 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 117, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 201, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 318}
|
64 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 67, "completion_tokens": 0, "total_tokens": 67}
|
65 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 354, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 337, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 691}
|
66 |
+
{"model": "mistral-7b", "provider": "Free2GPT", "prompt_tokens": 130, "completion_tokens": 760, "total_tokens": 890}
|
67 |
+
{"model": "all-tools-230b", "provider": "ChatGLM", "prompt_tokens": 121, "completion_tokens": 680, "total_tokens": 801}
|
68 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 14, "completion_tokens": 0, "total_tokens": 14}
|
69 |
+
{"model": "claude", "provider": "PollinationsAI", "completion_tokens": 43, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 144, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 187}
|
70 |
+
{"model": "claude", "provider": "PollinationsAI", "completion_tokens": 34, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 198, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 232}
|
71 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat"}
|
72 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat"}
|
73 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 534, "completion_tokens_details": {"reasoning_tokens": 512}, "prompt_tokens": 189, "prompt_tokens_details": {"cached_tokens": 0}, "total_tokens": 723}
|
74 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 11, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 171, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 182}
|
75 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 25, "completion_tokens": 731, "total_tokens": 756}
|
76 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingChat", "prompt_tokens": 34, "completion_tokens": 0, "total_tokens": 34}
|
77 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 34, "completion_tokens": 0, "total_tokens": 34}
|
78 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct", "provider": "HuggingChat", "prompt_tokens": 66, "completion_tokens": 0, "total_tokens": 66}
|
79 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingChat", "prompt_tokens": 19, "completion_tokens": 0, "total_tokens": 19}
|
80 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingChat", "prompt_tokens": 76, "completion_tokens": 0, "total_tokens": 76}
|
81 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingChat", "prompt_tokens": 130, "completion_tokens": 0, "total_tokens": 130}
|
82 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingChat", "prompt_tokens": 276, "completion_tokens": 0, "total_tokens": 276}
|
83 |
+
{"model": "yi-34b", "provider": "DeepInfraChat", "prompt_tokens": 24245, "total_tokens": 24352, "completion_tokens": 107, "estimated_cost": 0.00319465}
|
84 |
+
{"model": "o3-mini-high", "provider": "Feature", "prompt_tokens": 11, "completion_tokens": 133, "total_tokens": 144}
|
85 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
86 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
87 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
88 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 18, "completion_tokens": 0, "total_tokens": 18}
|
89 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 18, "completion_tokens": 0, "total_tokens": 18}
|
90 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
91 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
92 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 32, "completion_tokens": 0, "total_tokens": 32}
|
93 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 32, "completion_tokens": 0, "total_tokens": 32}
|
94 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 99, "completion_tokens": 0, "total_tokens": 99}
|
95 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 37, "completion_tokens": 0, "total_tokens": 37}
|
96 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 420, "completion_tokens": 0, "total_tokens": 420}
|
97 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 139, "completion_tokens": 0, "total_tokens": 139}
|
98 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 384, "completion_tokens": 0, "total_tokens": 384}
|
99 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 577, "completion_tokens": 0, "total_tokens": 577}
|
100 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 876, "completion_tokens": 0, "total_tokens": 876}
|
101 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 15, "completion_tokens": 0, "total_tokens": 15}
|
102 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 58, "completion_tokens": 0, "total_tokens": 58}
|
103 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
104 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
105 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 44, "completion_tokens": 0, "total_tokens": 44}
|
106 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 81, "completion_tokens": 0, "total_tokens": 81}
|
107 |
+
{"model": "o1-preview", "provider": "Feature", "prompt_tokens": 22, "completion_tokens": 0, "total_tokens": 22}
|
108 |
+
{"model": "o1-preview", "provider": "Feature", "prompt_tokens": 82, "completion_tokens": 78, "total_tokens": 160}
|
109 |
+
{"model": "o1-preview", "provider": "Feature", "prompt_tokens": 1746, "completion_tokens": 0, "total_tokens": 1746}
|
110 |
+
{"model": "o1-preview", "provider": "Feature", "prompt_tokens": 1746, "completion_tokens": 0, "total_tokens": 1746}
|
111 |
+
{"model": "o1-preview", "provider": "Feature", "prompt_tokens": 2371, "completion_tokens": 0, "total_tokens": 2371}
|
112 |
+
{"model": "o1-preview", "provider": "Feature", "prompt_tokens": 2540, "completion_tokens": 38, "total_tokens": 2578}
|
113 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
114 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 74, "completion_tokens": 0, "total_tokens": 74}
|
115 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 200, "completion_tokens": 150, "total_tokens": 350}
|
116 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 1578, "completion_tokens": 239, "total_tokens": 1817}
|
117 |
+
{"model": "o1-preview", "provider": "Feature", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
118 |
+
{"model": "dall-e-3", "provider": "Feature", "prompt_tokens": 18, "completion_tokens": 0, "total_tokens": 18}
|
119 |
+
{"model": "dall-e-3", "provider": "Feature", "prompt_tokens": 84, "completion_tokens": 0, "total_tokens": 84}
|
120 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
121 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 22, "completion_tokens": 102, "total_tokens": 124}
|
122 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 128, "completion_tokens": 240, "total_tokens": 368}
|
123 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 298, "completion_tokens": 47, "total_tokens": 345}
|
124 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 372, "completion_tokens": 599, "total_tokens": 971}
|
125 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 5893, "completion_tokens": 1118, "total_tokens": 7011}
|
126 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 8735, "completion_tokens": 0, "total_tokens": 8735}
|
127 |
+
{"model": "o1-preview", "provider": "Feature", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
128 |
+
{"model": "o1-preview", "provider": "Feature", "prompt_tokens": 196, "completion_tokens": 9, "total_tokens": 205}
|
129 |
+
{"model": "o1-preview", "provider": "Feature", "prompt_tokens": 683, "completion_tokens": 0, "total_tokens": 683}
|
130 |
+
{"model": "o1-preview", "provider": "Feature", "prompt_tokens": 723, "completion_tokens": 40, "total_tokens": 763}
|
131 |
+
{"model": "o3-mini", "provider": "Feature", "prompt_tokens": 20, "completion_tokens": 75, "total_tokens": 95}
|
132 |
+
{"model": "o3-mini", "provider": "Feature", "prompt_tokens": 127, "completion_tokens": 125, "total_tokens": 252}
|
133 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
134 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 46, "completion_tokens": 93, "total_tokens": 139}
|
135 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 18, "completion_tokens": 0, "total_tokens": 18}
|
136 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 27, "completion_tokens": 0, "total_tokens": 27}
|
137 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 38, "completion_tokens": 0, "total_tokens": 38}
|
138 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 329, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1892, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2221}
|
139 |
+
{"model": "llama", "provider": "PollinationsAI", "prompt_tokens": 873, "completion_tokens": 256, "total_tokens": 1129}
|
140 |
+
{"model": "midijourney", "provider": "PollinationsAI", "completion_tokens": 661, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 6346, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 7007}
|
141 |
+
{"model": "midijourney", "provider": "PollinationsAI", "completion_tokens": 144, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 6555, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 6699}
|
142 |
+
{"model": "midijourney", "provider": "PollinationsAI", "completion_tokens": 497, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 7102, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 2688}, "total_tokens": 7599}
|
143 |
+
{"model": "o1-preview", "provider": "Feature", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
144 |
+
{"model": "o1-preview", "provider": "Feature", "prompt_tokens": 95, "completion_tokens": 0, "total_tokens": 95}
|
145 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 895, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2967, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3862}
|
146 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 757, "completion_tokens_details": {"reasoning_tokens": 704}, "prompt_tokens": 162, "prompt_tokens_details": {"cached_tokens": 0}, "total_tokens": 919}
|
147 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 39, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 150, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 189}
|
148 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 72, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 150, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 222}
|
149 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 314, "completion_tokens": 0, "total_tokens": 314}
|
150 |
+
{"model": "o3-mini", "provider": "Feature", "prompt_tokens": 326, "completion_tokens": 0, "total_tokens": 326}
|
151 |
+
{"model": "o1-preview", "provider": "Feature", "prompt_tokens": 327, "completion_tokens": 0, "total_tokens": 327}
|
152 |
+
{"model": "dall-e-3", "provider": "Feature", "prompt_tokens": 355, "completion_tokens": 0, "total_tokens": 355}
|
153 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 127, "completion_tokens": 55, "total_tokens": 182}
|
154 |
+
{"model": "o1-mini", "provider": "Feature", "prompt_tokens": 403, "completion_tokens": 0, "total_tokens": 403}
|
155 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 433, "completion_tokens": 0, "total_tokens": 433}
|
156 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 1451, "completion_tokens_details": {"reasoning_tokens": 320}, "prompt_tokens": 5457, "prompt_tokens_details": {"cached_tokens": 0}, "total_tokens": 6908}
|
157 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 34823, "total_tokens": 34996, "completion_tokens": 173, "prompt_tokens_details": null}
|
158 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 1804, "completion_tokens_details": {"reasoning_tokens": 1280}, "prompt_tokens": 10306, "prompt_tokens_details": {"cached_tokens": 3968}, "total_tokens": 12110}
|
159 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 551, "completion_tokens_details": {"reasoning_tokens": 512}, "prompt_tokens": 162, "prompt_tokens_details": {"cached_tokens": 0}, "total_tokens": 713}
|
160 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 1693, "completion_tokens_details": {"reasoning_tokens": 320}, "prompt_tokens": 10894, "prompt_tokens_details": {"cached_tokens": 0}, "total_tokens": 12587}
|
161 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 1430, "completion_tokens": 0, "total_tokens": 1430}
|
162 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 506, "completion_tokens": 0, "total_tokens": 506}
|
163 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 529, "completion_tokens": 0, "total_tokens": 529}
|
164 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 543, "completion_tokens": 0, "total_tokens": 543}
|
165 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 555, "completion_tokens": 0, "total_tokens": 555}
|
166 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 555, "completion_tokens": 0, "total_tokens": 555}
|
167 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 555, "completion_tokens": 0, "total_tokens": 555}
|
168 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 543, "completion_tokens": 0, "total_tokens": 543}
|
169 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 529, "completion_tokens": 0, "total_tokens": 529}
|
170 |
+
{"model": "auto", "provider": "Feature"}
|
171 |
+
{"model": "gemini-thinking", "provider": "PollinationsAI", "completion_tokens": 751, "prompt_tokens": 44, "total_tokens": 795}
|
172 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 1507, "completion_tokens": 0, "total_tokens": 1507}
|
173 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 10, "completion_tokens": 1, "total_tokens": 11}
|
174 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
175 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 56, "completion_tokens": 187, "total_tokens": 243}
|
176 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 1442, "completion_tokens": 294, "total_tokens": 1736}
|
177 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 2970, "completion_tokens": 97, "total_tokens": 3067}
|
178 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 5109, "completion_tokens": 82, "total_tokens": 5191}
|
179 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 5707, "completion_tokens": 19, "total_tokens": 5726}
|
180 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 5925, "completion_tokens": 172, "total_tokens": 6097}
|
181 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 8623, "completion_tokens": 35, "total_tokens": 8658}
|
182 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 9956, "completion_tokens": 72, "total_tokens": 10028}
|
183 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 90, "completion_tokens": 140, "total_tokens": 230}
|
184 |
+
{"model": "o1", "provider": "Feature", "prompt_tokens": 10827, "completion_tokens": 72, "total_tokens": 10899}
|
185 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 20, "completion_tokens": 0, "total_tokens": 20}
|
186 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 1303, "completion_tokens": 0, "total_tokens": 1303}
|
187 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 1328, "completion_tokens": 0, "total_tokens": 1328}
|
188 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 20, "completion_tokens": 0, "total_tokens": 20}
|
189 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 411, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2245, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2656}
|
190 |
+
{"model": "deepseek-r1", "provider": "Feature", "prompt_tokens": 2535, "completion_tokens": 1147, "total_tokens": 3682}
|
191 |
+
{"model": "deepseek-r1", "provider": "Feature", "prompt_tokens": 2681, "completion_tokens": 765, "total_tokens": 3446}
|
192 |
+
{"model": "deepseek-r1", "provider": "Feature", "prompt_tokens": 3205, "completion_tokens": 518, "total_tokens": 3723}
|
193 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 3766, "completion_tokens": 0, "total_tokens": 3766}
|
194 |
+
{"model": "Jovie/Midjourney", "provider": "HuggingFace", "prompt_tokens": 590, "completion_tokens": 0, "total_tokens": 590}
|
195 |
+
{"model": "strangerzonehf/Flux-Midjourney-Mix2-LoRA", "provider": "HuggingFace", "prompt_tokens": 645, "completion_tokens": 0, "total_tokens": 645}
|
196 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 660, "completion_tokens": 0, "total_tokens": 660}
|
197 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 675, "completion_tokens": 0, "total_tokens": 675}
|
198 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 675, "completion_tokens": 0, "total_tokens": 675}
|
199 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 702, "completion_tokens": 0, "total_tokens": 702}
|
200 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 702, "completion_tokens": 0, "total_tokens": 702}
|
201 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 714, "completion_tokens": 0, "total_tokens": 714}
|
202 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 714, "completion_tokens": 0, "total_tokens": 714}
|
203 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 714, "completion_tokens": 0, "total_tokens": 714}
|
204 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 727, "completion_tokens": 0, "total_tokens": 727}
|
205 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 727, "completion_tokens": 0, "total_tokens": 727}
|
206 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 747, "completion_tokens": 0, "total_tokens": 747}
|
207 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 747, "completion_tokens": 0, "total_tokens": 747}
|
208 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 766, "completion_tokens": 0, "total_tokens": 766}
|
209 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 780, "completion_tokens": 0, "total_tokens": 780}
|
210 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 780, "completion_tokens": 0, "total_tokens": 780}
|
211 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
212 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 54, "completion_tokens": 0, "total_tokens": 54}
|
213 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 791, "completion_tokens": 0, "total_tokens": 791}
|
214 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingChat", "prompt_tokens": 802, "completion_tokens": 0, "total_tokens": 802}
|
215 |
+
{"model": "turbo", "provider": "PollinationsAI", "prompt_tokens": 802, "completion_tokens": 0, "total_tokens": 802}
|
216 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 802, "completion_tokens": 0, "total_tokens": 802}
|
217 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
218 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 956, "completion_tokens": 0, "total_tokens": 956}
|
219 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
220 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 956, "completion_tokens": 0, "total_tokens": 956}
|
221 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 28, "completion_tokens": 0, "total_tokens": 28}
|
222 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 972, "completion_tokens": 0, "total_tokens": 972}
|
223 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 972, "completion_tokens": 0, "total_tokens": 972}
|
224 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 79, "completion_tokens": 0, "total_tokens": 79}
|
225 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 972, "completion_tokens": 0, "total_tokens": 972}
|
226 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 125, "completion_tokens": 0, "total_tokens": 125}
|
227 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
228 |
+
{"model": "cagliostrolab/animagine-xl-4.0", "provider": "HuggingFace", "prompt_tokens": 972, "completion_tokens": 0, "total_tokens": 972}
|
229 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 35, "completion_tokens": 0, "total_tokens": 35}
|
230 |
+
{"model": "strangerzonehf/Flux-Midjourney-Mix2-LoRA", "provider": "HuggingFace", "prompt_tokens": 972, "completion_tokens": 0, "total_tokens": 972}
|
231 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 52, "completion_tokens": 0, "total_tokens": 52}
|
232 |
+
{"model": "strangerzonehf/Flux-Midjourney-Mix2-LoRA", "provider": "HuggingFace", "prompt_tokens": 972, "completion_tokens": 0, "total_tokens": 972}
|
233 |
+
{"model": "strangerzonehf/Flux-Midjourney-Mix2-LoRA", "provider": "HuggingFace", "prompt_tokens": 1030, "completion_tokens": 0, "total_tokens": 1030}
|
234 |
+
{"model": "black-forest-labs/FLUX.1-schnell", "provider": "HuggingFace", "prompt_tokens": 1041, "completion_tokens": 0, "total_tokens": 1041}
|
235 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace", "prompt_tokens": 1041, "completion_tokens": 0, "total_tokens": 1041}
|
236 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 1665, "completion_tokens": 174, "total_tokens": 1839}
|
237 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 1665, "completion_tokens": 875, "total_tokens": 2540}
|
238 |
+
{"model": "gpt-4o", "provider": "Liaobots", "prompt_tokens": 1665, "completion_tokens": 164, "total_tokens": 1829}
|
239 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 69, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1766, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1835}
|
240 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 1659, "completion_tokens": 448, "total_tokens": 2107}
|
241 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 3697, "completion_tokens": 254, "total_tokens": 3951}
|
242 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingChat", "prompt_tokens": 127, "completion_tokens": 0, "total_tokens": 127}
|
243 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingChat", "prompt_tokens": 1246, "completion_tokens": 0, "total_tokens": 1246}
|
244 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 2730, "completion_tokens": 466, "total_tokens": 3196}
|
245 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 3375, "completion_tokens": 294, "total_tokens": 3669}
|
246 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 5764, "completion_tokens": 156, "total_tokens": 5920}
|
247 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 6287, "completion_tokens": 299, "total_tokens": 6586}
|
248 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 7188, "completion_tokens": 269, "total_tokens": 7457}
|
249 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 10138, "completion_tokens": 414, "total_tokens": 10552}
|
250 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 64, "completion_tokens": 541, "total_tokens": 605}
|
251 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 1226, "completion_tokens": 350, "total_tokens": 1576}
|
252 |
+
{"model": "flux-schnell", "provider": "PollinationsImage", "prompt_tokens": 51, "completion_tokens": 0, "total_tokens": 51}
|
253 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 2641, "completion_tokens": 427, "total_tokens": 3068}
|
254 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 15, "completion_tokens": 291, "total_tokens": 306}
|
255 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
256 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 37, "completion_tokens": 0, "total_tokens": 37}
|
257 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 96, "completion_tokens": 215, "total_tokens": 311}
|
258 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
259 |
+
{"model": "gpt-4o", "provider": "Feature", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
260 |
+
{"model": "dall-e-3", "provider": "Feature", "prompt_tokens": 101, "completion_tokens": 0, "total_tokens": 101}
|
261 |
+
{"model": "dall-e-3", "provider": "Feature", "prompt_tokens": 240, "completion_tokens": 0, "total_tokens": 240}
|
262 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 240, "completion_tokens": 0, "total_tokens": 240}
|
263 |
+
{"model": "flux-schnell", "provider": "HuggingFace", "prompt_tokens": 240, "completion_tokens": 0, "total_tokens": 240}
|
264 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 461, "completion_tokens": 0, "total_tokens": 461}
|
265 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
266 |
+
{"model": "sd-3.5", "provider": "HuggingSpace", "prompt_tokens": 633, "completion_tokens": 0, "total_tokens": 633}
|
267 |
+
{"model": "sd-3.5", "provider": "HuggingSpace", "prompt_tokens": 805, "completion_tokens": 0, "total_tokens": 805}
|
268 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 28, "completion_tokens": 0, "total_tokens": 28}
|
269 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 805, "completion_tokens": 0, "total_tokens": 805}
|
270 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 103, "completion_tokens": 0, "total_tokens": 103}
|
271 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 899, "completion_tokens": 0, "total_tokens": 899}
|
272 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 1153, "completion_tokens": 0, "total_tokens": 1153}
|
273 |
+
{"model": "auto", "provider": "Feature", "prompt_tokens": 1428, "completion_tokens": 371, "total_tokens": 1799}
|
274 |
+
{"model": "auto", "provider": "Feature", "prompt_tokens": 1428, "completion_tokens": 314, "total_tokens": 1742}
|
275 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat"}
|
276 |
+
{"model": "Qwen/QwQ-32B-Preview", "provider": "HuggingChat"}
|
277 |
+
{"model": "CohereForAI/c4ai-command-r-plus-08-2024", "provider": "HuggingChat"}
|
278 |
+
{"model": "deepseek-r1", "provider": "HuggingFace"}
|
279 |
+
{"model": "deepseek-r1", "provider": "HuggingFace"}
|
280 |
+
{"model": "command-r", "provider": "HuggingSpace"}
|
281 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace"}
|
282 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace"}
|
283 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
284 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
285 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
286 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
287 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 33, "completion_tokens": 0, "total_tokens": 33}
|
288 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 20, "total_tokens": 630, "completion_tokens": 610, "estimated_cost": 0.0001854}
|
289 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 238, "completion_tokens": 286, "total_tokens": 524}
|
290 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 1031, "completion_tokens": 531, "total_tokens": 1562}
|
291 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 1470, "completion_tokens": 265, "total_tokens": 1735}
|
292 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 1858, "completion_tokens": 1082, "total_tokens": 2940}
|
293 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 32, "completion_tokens": 169, "total_tokens": 201}
|
294 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
295 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 39, "completion_tokens": 0, "total_tokens": 39}
|
296 |
+
{"model": "gpt-4o-mini", "provider": "OpenaiChat", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
297 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 30, "completion_tokens": 0, "total_tokens": 30}
|
298 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 30, "completion_tokens": 0, "total_tokens": 30}
|
299 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
300 |
+
{"model": "openai-community/gpt2", "provider": "HuggingFace", "prompt_tokens": 38, "completion_tokens": 0, "total_tokens": 38}
|
301 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
302 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
303 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
304 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
305 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
306 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
307 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
308 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
309 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
310 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
311 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
312 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
313 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
usage/2025-02-24.jsonl
ADDED
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "gemini-2.0-flash-thinking", "provider": "Gemini"}
|
2 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
3 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
4 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
5 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
6 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
7 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
8 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
9 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 13, "completion_tokens": 29, "total_tokens": 42}
|
10 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 16, "completion_tokens": 9, "total_tokens": 25}
|
11 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 16, "completion_tokens": 436, "total_tokens": 452}
|
12 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 24, "completion_tokens": 582, "total_tokens": 606}
|
13 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 622, "completion_tokens": 808, "total_tokens": 1430}
|
14 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
15 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
16 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
17 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
18 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
19 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
20 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
21 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
22 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 21, "completion_tokens": 0, "total_tokens": 21}
|
23 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 21, "completion_tokens": 0, "total_tokens": 21}
|
24 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
25 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
26 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
27 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
28 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
29 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 12, "completion_tokens": 0, "total_tokens": 12}
|
30 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 4022, "completion_tokens": 0, "total_tokens": 4022}
|
31 |
+
{"model": "o3-mini", "provider": "Blackbox"}
|
32 |
+
{"model": "o3-mini", "provider": "Blackbox"}
|
33 |
+
{"model": "command-r7b-12-2024", "provider": "CohereForAI"}
|
34 |
+
{"model": "deepseek-ai/DeepSeek-R1", "provider": "DeepInfraChat", "prompt_tokens": 3945, "total_tokens": 5862, "completion_tokens": 1917, "estimated_cost": 0.007559549999999999}
|
35 |
+
{"model": "deepseek-ai/DeepSeek-V3", "provider": "DeepInfraChat"}
|
36 |
+
{"model": "deepseek-v3", "provider": "DeepInfraChat", "prompt_tokens": 3168, "total_tokens": 3181, "completion_tokens": 13, "estimated_cost": 0.0015638899999999996}
|
37 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 125, "completion_tokens": 0, "total_tokens": 125}
|
38 |
+
{"model": "deepseek-v3", "provider": "DeepInfraChat", "prompt_tokens": 3201, "total_tokens": 3214, "completion_tokens": 13, "estimated_cost": 0.0015800599999999999}
|
39 |
+
{"model": "deepseek-ai/DeepSeek-V3", "provider": "DeepInfraChat", "prompt_tokens": 4549, "total_tokens": 5810, "completion_tokens": 1261, "estimated_cost": 0.0033512999999999998}
|
40 |
+
{"model": "gpt-4o-mini-free", "provider": "Liaobots"}
|
41 |
+
{"model": "gpt-4o-mini-free", "provider": "Liaobots"}
|
42 |
+
{"model": "gpt-4o-mini-free", "provider": "Liaobots"}
|
43 |
+
{"model": "gpt-4o-mini-free", "provider": "Liaobots"}
|
44 |
+
{"model": "gpt-4o-mini-free", "provider": "Liaobots"}
|
45 |
+
{"model": "gemini-2.0-flash-thinking-exp", "provider": "Liaobots"}
|
46 |
+
{"model": "Copilot", "provider": "Copilot"}
|
47 |
+
{"model": "Copilot", "provider": "Copilot"}
|
48 |
+
{"model": "Copilot", "provider": "Copilot"}
|
49 |
+
{"model": "Copilot", "provider": "Copilot"}
|
50 |
+
{"model": "Copilot", "provider": "Copilot"}
|
51 |
+
{"model": "command-r-plus-08-2024", "provider": "CohereForAI"}
|
52 |
+
{"model": "command-r-plus-08-2024", "provider": "CohereForAI"}
|
53 |
+
{"model": "command-r", "provider": "HuggingSpace"}
|
54 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace"}
|
55 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace"}
|
56 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 143, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1465, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1608}
|
57 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace"}
|
58 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
59 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace"}
|
60 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 98, "completion_tokens": 0, "total_tokens": 98}
|
61 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace"}
|
62 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 181, "completion_tokens": 0, "total_tokens": 181}
|
63 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 16, "completion_tokens": 0, "total_tokens": 16}
|
64 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace"}
|
65 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace"}
|
66 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace"}
|
67 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat"}
|
68 |
+
{"model": "gpt-4", "provider": "Feature"}
|
69 |
+
{"model": "o3-mini", "provider": "Feature"}
|
70 |
+
{"model": "black-forest-labs-flux-1-dev", "provider": "HuggingSpace"}
|
71 |
+
{"model": "gpt-4", "provider": "Feature"}
|
72 |
+
{"model": "DeepSeek-V3", "provider": "Blackbox", "prompt_tokens": 1213, "completion_tokens": 0, "total_tokens": 1213}
|
73 |
+
{"model": "DeepSeek-V3", "provider": "Blackbox", "prompt_tokens": 2125, "completion_tokens": 0, "total_tokens": 2125}
|
74 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 16, "total_tokens": 24}
|
75 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 123, "completion_tokens": 467, "total_tokens": 590}
|
76 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 21, "completion_tokens": 89, "total_tokens": 110}
|
77 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 14, "completion_tokens": 49, "total_tokens": 63}
|
78 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 14, "completion_tokens": 23, "total_tokens": 37}
|
79 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 12, "completion_tokens": 28, "total_tokens": 40}
|
80 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 17, "completion_tokens": 399, "total_tokens": 416}
|
81 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 436, "completion_tokens": 873, "total_tokens": 1309}
|
82 |
+
{"model": "cagliostrolab/animagine-xl-4.0", "provider": "HuggingFace", "prompt_tokens": 22, "completion_tokens": 81, "total_tokens": 103}
|
usage/2025-02-27.jsonl
ADDED
@@ -0,0 +1,99 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
2 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 47, "completion_tokens": 0, "total_tokens": 47}
|
3 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 113, "completion_tokens": 0, "total_tokens": 113}
|
4 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
5 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 94, "completion_tokens": 0, "total_tokens": 94}
|
6 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
7 |
+
{"model": "janus-pro-7b", "provider": "HuggingSpace", "prompt_tokens": 73, "completion_tokens": 0, "total_tokens": 73}
|
8 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
9 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 46, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 156, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 202}
|
10 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 18, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 224, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 242}
|
11 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 23, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 253, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 276}
|
12 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 93, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 635, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 728}
|
13 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 227, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 712, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 939}
|
14 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 63, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 258, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 321}
|
15 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 464, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 9530, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 9994}
|
16 |
+
{"provider": "Gemini", "prompt_tokens": 22, "completion_tokens": 0, "total_tokens": 22}
|
17 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingChat", "prompt_tokens": 508, "completion_tokens": 0, "total_tokens": 508}
|
18 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingChat"}
|
19 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingChat"}
|
20 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 140, "completion_tokens": 17, "total_tokens": 157}
|
21 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "HuggingSpace"}
|
22 |
+
{"model": "stabilityai-stable-diffusion-3-5-large", "provider": "HuggingSpace"}
|
23 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace"}
|
24 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace"}
|
25 |
+
{"provider": "Gemini"}
|
26 |
+
{"model": "deepseek-r1", "provider": "DeepSeekAPI"}
|
27 |
+
{"model": "gemini-2.0-flash-thinking", "provider": "Gemini"}
|
28 |
+
{"model": "qwen-qvq-72b-preview", "provider": "HuggingSpace"}
|
29 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 442, "total_tokens": 457, "completion_tokens": 15, "prompt_tokens_details": null}
|
30 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 38, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 279, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 317}
|
31 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 88, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 941, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1029}
|
32 |
+
{"model": "deepseek-v3", "provider": "DeepSeekAPI"}
|
33 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 41, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 825, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 866}
|
34 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 58, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 879, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 937}
|
35 |
+
{"model": "qwen-qvq-72b-preview", "provider": "HuggingSpace"}
|
36 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
37 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 353, "completion_tokens": 0, "total_tokens": 353}
|
38 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 771, "completion_tokens": 0, "total_tokens": 771}
|
39 |
+
{"model": "deepseek-v3", "provider": "DeepSeekAPI", "prompt_tokens": 266, "completion_tokens": 0, "total_tokens": 266}
|
40 |
+
{"model": "deepseek-v3", "provider": "DeepSeekAPI", "prompt_tokens": 918, "completion_tokens": 0, "total_tokens": 918}
|
41 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 1128, "completion_tokens": 0, "total_tokens": 1128}
|
42 |
+
{"model": "o3-mini", "provider": "OpenaiChat"}
|
43 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 29, "completion_tokens": 828, "total_tokens": 857}
|
44 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 1031, "completion_tokens": 806, "total_tokens": 1837}
|
45 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 29, "completion_tokens": 0, "total_tokens": 29}
|
46 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 543, "completion_tokens": 1002, "total_tokens": 1545}
|
47 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 543, "completion_tokens": 852, "total_tokens": 1395}
|
48 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 1618, "completion_tokens": 1421, "total_tokens": 3039}
|
49 |
+
{"model": "deepseek-v3", "provider": "DeepSeekAPI", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
50 |
+
{"model": "deepseek-v3", "provider": "DeepSeekAPI", "prompt_tokens": 60, "completion_tokens": 0, "total_tokens": 60}
|
51 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 202, "completion_tokens": 264, "total_tokens": 466}
|
52 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 2689, "completion_tokens": 853, "total_tokens": 3542}
|
53 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 3795, "completion_tokens": 1465, "total_tokens": 5260}
|
54 |
+
{"model": "o3-mini", "provider": "OpenaiChat"}
|
55 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 715, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2701, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3416}
|
56 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 733, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3451, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 4184}
|
57 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
58 |
+
{"model": "o3-mini", "provider": "OpenaiChat", "prompt_tokens": 328, "completion_tokens": 0, "total_tokens": 328}
|
59 |
+
{"model": "claude", "provider": "PollinationsAI", "completion_tokens": 242, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 423, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 665}
|
60 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
61 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
62 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
63 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
64 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
65 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
66 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 35, "completion_tokens": 0, "total_tokens": 35}
|
67 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 10, "completion_tokens": 28, "total_tokens": 38}
|
68 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
69 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
70 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
71 |
+
{"model": "gpt-4o-mini", "provider": "PollinationsAI", "completion_tokens": 30, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 142, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 172}
|
72 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 50, "completion_tokens": 10, "total_tokens": 60}
|
73 |
+
{"model": "gpt-4o-mini", "provider": "PollinationsAI", "completion_tokens": 15, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 188, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 203}
|
74 |
+
{"model": "gpt-4o-mini", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 213, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 223}
|
75 |
+
{"model": "gpt-4o-mini", "provider": "Liaobots", "prompt_tokens": 126, "completion_tokens": 87, "total_tokens": 213}
|
76 |
+
{"model": "gpt-4o-mini", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 330, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 340}
|
77 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 512, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 164, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 676}
|
78 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 12, "completion_tokens": 10, "total_tokens": 22}
|
79 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
80 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 35, "completion_tokens": 0, "total_tokens": 35}
|
81 |
+
{"model": "llama-3", "provider": "HuggingFace"}
|
82 |
+
{"model": "llama-3", "provider": "HuggingFace"}
|
83 |
+
{"model": "gemini-2.0", "provider": "PollinationsAI", "completion_tokens": 11, "prompt_tokens": 38, "total_tokens": 49}
|
84 |
+
{"model": "gemini-thinking", "provider": "PollinationsAI", "completion_tokens": 21, "prompt_tokens": 50, "total_tokens": 71}
|
85 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
86 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
87 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 1, "total_tokens": 9}
|
88 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 9, "completion_tokens": 0, "total_tokens": 9}
|
89 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
90 |
+
{"model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 270, "completion_tokens": 0, "total_tokens": 270}
|
91 |
+
{"model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 112, "completion_tokens": 0, "total_tokens": 112}
|
92 |
+
{"model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 315, "completion_tokens": 0, "total_tokens": 315}
|
93 |
+
{"model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 511, "completion_tokens": 0, "total_tokens": 511}
|
94 |
+
{"model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 668, "completion_tokens": 0, "total_tokens": 668}
|
95 |
+
{"model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 823, "completion_tokens": 0, "total_tokens": 823}
|
96 |
+
{"model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 905, "completion_tokens": 0, "total_tokens": 905}
|
97 |
+
{"model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 1070, "completion_tokens": 0, "total_tokens": 1070}
|
98 |
+
{"model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 1308, "completion_tokens": 0, "total_tokens": 1308}
|
99 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 86, "completion_tokens": 0, "total_tokens": 86}
|
usage/2025-02-28.jsonl
ADDED
@@ -0,0 +1,379 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 1238, "completion_tokens": 504, "total_tokens": 1742}
|
2 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 1768, "completion_tokens": 702, "total_tokens": 2470}
|
3 |
+
{"model": "gemini-2.0-flash", "provider": "Gemini", "prompt_tokens": 1230, "completion_tokens": 21, "total_tokens": 1251}
|
4 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 214, "completion_tokens": 0, "total_tokens": 214}
|
5 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 215, "completion_tokens": 0, "total_tokens": 215}
|
6 |
+
{"model": "gemini-2.0-flash", "provider": "Gemini", "prompt_tokens": 3664, "completion_tokens": 0, "total_tokens": 3664}
|
7 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 112, "completion_tokens": 0, "total_tokens": 112}
|
8 |
+
{"model": "o1-mini", "provider": "OpenaiChat", "prompt_tokens": 1224, "completion_tokens": 0, "total_tokens": 1224}
|
9 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 212, "completion_tokens": 0, "total_tokens": 212}
|
10 |
+
{"model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 1587, "completion_tokens": 0, "total_tokens": 1587}
|
11 |
+
{"model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 176, "completion_tokens": 0, "total_tokens": 176}
|
12 |
+
{"model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 83, "completion_tokens": 0, "total_tokens": 83}
|
13 |
+
{"model": "meta-llama/Llama-3.2-1B-Instruct", "provider": "HuggingFace", "prompt_tokens": 127, "completion_tokens": 0, "total_tokens": 127}
|
14 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 16, "completion_tokens": 955, "total_tokens": 971}
|
15 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 12, "completion_tokens": 0, "total_tokens": 12}
|
16 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 226, "completion_tokens": 0, "total_tokens": 226}
|
17 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 545, "completion_tokens": 0, "total_tokens": 545}
|
18 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat", "prompt_tokens": 390, "completion_tokens": 0, "total_tokens": 390}
|
19 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat", "prompt_tokens": 2606, "completion_tokens": 0, "total_tokens": 2606}
|
20 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 21, "completion_tokens": 853, "total_tokens": 874}
|
21 |
+
{"model": "gemini-2.0-flash-thinking", "provider": "Gemini", "prompt_tokens": 7349, "completion_tokens": 845, "total_tokens": 8194}
|
22 |
+
{"model": "gemini-2.0-flash-thinking", "provider": "Gemini", "prompt_tokens": 13430, "completion_tokens": 1366, "total_tokens": 14796}
|
23 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 1465, "completion_tokens": 632, "total_tokens": 2097}
|
24 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 21, "completion_tokens": 538, "total_tokens": 559}
|
25 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 11, "completion_tokens": 1, "total_tokens": 12}
|
26 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 88, "completion_tokens": 584, "total_tokens": 672}
|
27 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 29, "completion_tokens": 0, "total_tokens": 29}
|
28 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 11101, "completion_tokens": 0, "total_tokens": 11101}
|
29 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 12314, "completion_tokens": 0, "total_tokens": 12314}
|
30 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 13426, "completion_tokens": 0, "total_tokens": 13426}
|
31 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 29, "completion_tokens": 0, "total_tokens": 29}
|
32 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 5398, "completion_tokens": 0, "total_tokens": 5398}
|
33 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 6494, "completion_tokens": 0, "total_tokens": 6494}
|
34 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 7540, "completion_tokens": 0, "total_tokens": 7540}
|
35 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 8560, "completion_tokens": 0, "total_tokens": 8560}
|
36 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 13178, "completion_tokens": 0, "total_tokens": 13178}
|
37 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 14499, "completion_tokens": 0, "total_tokens": 14499}
|
38 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 15570, "completion_tokens": 0, "total_tokens": 15570}
|
39 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 19941, "completion_tokens": 0, "total_tokens": 19941}
|
40 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 21021, "completion_tokens": 0, "total_tokens": 21021}
|
41 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 22091, "completion_tokens": 0, "total_tokens": 22091}
|
42 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 23252, "completion_tokens": 0, "total_tokens": 23252}
|
43 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 24340, "completion_tokens": 0, "total_tokens": 24340}
|
44 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 25412, "completion_tokens": 0, "total_tokens": 25412}
|
45 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 26456, "completion_tokens": 0, "total_tokens": 26456}
|
46 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 27513, "completion_tokens": 0, "total_tokens": 27513}
|
47 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 28584, "completion_tokens": 0, "total_tokens": 28584}
|
48 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 28904, "completion_tokens": 0, "total_tokens": 28904}
|
49 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 29925, "completion_tokens": 0, "total_tokens": 29925}
|
50 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 30927, "completion_tokens": 0, "total_tokens": 30927}
|
51 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 32760, "completion_tokens": 0, "total_tokens": 32760}
|
52 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 83, "completion_tokens": 372, "total_tokens": 455}
|
53 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 83, "completion_tokens": 0, "total_tokens": 83}
|
54 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 104, "completion_tokens": 0, "total_tokens": 104}
|
55 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace", "prompt_tokens": 104, "completion_tokens": 0, "total_tokens": 104}
|
56 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace", "prompt_tokens": 45, "completion_tokens": 0, "total_tokens": 45}
|
57 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace", "prompt_tokens": 321, "completion_tokens": 0, "total_tokens": 321}
|
58 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace", "prompt_tokens": 321, "completion_tokens": 0, "total_tokens": 321}
|
59 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace", "prompt_tokens": 922, "completion_tokens": 0, "total_tokens": 922}
|
60 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace", "prompt_tokens": 1138, "completion_tokens": 0, "total_tokens": 1138}
|
61 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 1373, "completion_tokens": 0, "total_tokens": 1373}
|
62 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 34121, "completion_tokens": 0, "total_tokens": 34121}
|
63 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 34208, "completion_tokens": 0, "total_tokens": 34208}
|
64 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 35891, "completion_tokens": 0, "total_tokens": 35891}
|
65 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 37130, "completion_tokens": 0, "total_tokens": 37130}
|
66 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 38552, "completion_tokens": 0, "total_tokens": 38552}
|
67 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 39595, "completion_tokens": 0, "total_tokens": 39595}
|
68 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 40818, "completion_tokens": 0, "total_tokens": 40818}
|
69 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 41888, "completion_tokens": 0, "total_tokens": 41888}
|
70 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 43071, "completion_tokens": 0, "total_tokens": 43071}
|
71 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 44246, "completion_tokens": 0, "total_tokens": 44246}
|
72 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 45334, "completion_tokens": 0, "total_tokens": 45334}
|
73 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 46851, "completion_tokens": 0, "total_tokens": 46851}
|
74 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 47932, "completion_tokens": 0, "total_tokens": 47932}
|
75 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 49062, "completion_tokens": 0, "total_tokens": 49062}
|
76 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 50225, "completion_tokens": 0, "total_tokens": 50225}
|
77 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 51716, "completion_tokens": 0, "total_tokens": 51716}
|
78 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 52709, "completion_tokens": 0, "total_tokens": 52709}
|
79 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 54235, "completion_tokens": 0, "total_tokens": 54235}
|
80 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 55129, "completion_tokens": 0, "total_tokens": 55129}
|
81 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 59232, "completion_tokens": 0, "total_tokens": 59232}
|
82 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 19, "completion_tokens": 854, "total_tokens": 873}
|
83 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 61113, "completion_tokens": 0, "total_tokens": 61113}
|
84 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 62748, "completion_tokens": 0, "total_tokens": 62748}
|
85 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 63449, "completion_tokens": 0, "total_tokens": 63449}
|
86 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 28, "completion_tokens": 0, "total_tokens": 28}
|
87 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 5306, "completion_tokens": 0, "total_tokens": 5306}
|
88 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 6477, "completion_tokens": 0, "total_tokens": 6477}
|
89 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 7725, "completion_tokens": 0, "total_tokens": 7725}
|
90 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 8887, "completion_tokens": 0, "total_tokens": 8887}
|
91 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 10008, "completion_tokens": 0, "total_tokens": 10008}
|
92 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 11104, "completion_tokens": 0, "total_tokens": 11104}
|
93 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 12165, "completion_tokens": 0, "total_tokens": 12165}
|
94 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 12898, "completion_tokens": 0, "total_tokens": 12898}
|
95 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 13971, "completion_tokens": 0, "total_tokens": 13971}
|
96 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 20410, "completion_tokens": 0, "total_tokens": 20410}
|
97 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 21564, "completion_tokens": 0, "total_tokens": 21564}
|
98 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 758, "completion_tokens": 323, "total_tokens": 1081}
|
99 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 758, "completion_tokens": 323, "total_tokens": 1081}
|
100 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 22769, "completion_tokens": 0, "total_tokens": 22769}
|
101 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 1412, "completion_tokens": 17, "total_tokens": 1429}
|
102 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 758, "completion_tokens": 323, "total_tokens": 1081}
|
103 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 29196, "completion_tokens": 0, "total_tokens": 29196}
|
104 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 854, "completion_tokens": 588, "total_tokens": 1442}
|
105 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 30459, "completion_tokens": 0, "total_tokens": 30459}
|
106 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 31958, "completion_tokens": 0, "total_tokens": 31958}
|
107 |
+
{"model": "o1-mini", "provider": "OpenaiChat", "prompt_tokens": 20, "completion_tokens": 0, "total_tokens": 20}
|
108 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 96, "completion_tokens": 146, "total_tokens": 242}
|
109 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 327, "completion_tokens": 0, "total_tokens": 327}
|
110 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 11, "completion_tokens": 1, "total_tokens": 12}
|
111 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 11, "completion_tokens": 1, "total_tokens": 12}
|
112 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 9, "total_tokens": 549, "completion_tokens": 540, "estimated_cost": 0.00130275}
|
113 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat"}
|
114 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat"}
|
115 |
+
{"provider": "Gemini"}
|
116 |
+
{"model": "llama-3", "provider": "HuggingFace"}
|
117 |
+
{"model": "flux-dev", "provider": "HuggingSpace"}
|
118 |
+
{"model": "qwq-32b", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 160, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 170}
|
119 |
+
{"model": "qwq-32b", "provider": "PollinationsAI", "completion_tokens": 43, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 193, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 236}
|
120 |
+
{"model": "qwq-32b", "provider": "PollinationsAI", "completion_tokens": 47, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 247, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 294}
|
121 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat"}
|
122 |
+
{"model": "deepseek-v3", "provider": "DeepSeekAPI"}
|
123 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 1031, "total_tokens": 1664, "completion_tokens": 633, "estimated_cost": 0.0022924499999999997}
|
124 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 19, "completion_tokens": 607, "total_tokens": 626}
|
125 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 12, "total_tokens": 1140, "completion_tokens": 1128, "estimated_cost": 0.0027162}
|
126 |
+
{"model": "deepseek-r1", "provider": "DeepSeekAPI"}
|
127 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 18, "completion_tokens": 0, "total_tokens": 18}
|
128 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 221, "completion_tokens": 0, "total_tokens": 221}
|
129 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 221, "completion_tokens": 0, "total_tokens": 221}
|
130 |
+
{"model": "deepseek-r1", "provider": "DeepSeekAPI"}
|
131 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 21, "completion_tokens": 0, "total_tokens": 21}
|
132 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 103, "completion_tokens": 0, "total_tokens": 103}
|
133 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 361, "completion_tokens": 0, "total_tokens": 361}
|
134 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 458, "completion_tokens": 0, "total_tokens": 458}
|
135 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 594, "completion_tokens": 0, "total_tokens": 594}
|
136 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 687, "completion_tokens": 0, "total_tokens": 687}
|
137 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 990, "completion_tokens": 0, "total_tokens": 990}
|
138 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 990, "completion_tokens": 0, "total_tokens": 990}
|
139 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat", "prompt_tokens": 2787, "completion_tokens": 0, "total_tokens": 2787}
|
140 |
+
{"model": "o1-mini", "provider": "OpenaiChat", "prompt_tokens": 2787, "completion_tokens": 0, "total_tokens": 2787}
|
141 |
+
{"model": "gemini-2.0-flash", "provider": "Gemini", "prompt_tokens": 6187, "completion_tokens": 0, "total_tokens": 6187}
|
142 |
+
{"model": "gemini-2.0-flash", "provider": "Gemini", "prompt_tokens": 6187, "completion_tokens": 0, "total_tokens": 6187}
|
143 |
+
{"model": "deepseek-r1", "provider": "DeepSeekAPI"}
|
144 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat"}
|
145 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat"}
|
146 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat"}
|
147 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 25, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1591, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1616}
|
148 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 30, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1591, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1621}
|
149 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
150 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
151 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
152 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 98, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 805, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 903}
|
153 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 98, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1055, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1153}
|
154 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
155 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
156 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 37, "completion_tokens": 0, "total_tokens": 37}
|
157 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 45, "completion_tokens": 0, "total_tokens": 45}
|
158 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
159 |
+
{"model": "gemini-2.0-flash", "provider": "Blackbox", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
160 |
+
{"model": "gemini-2.0-flash", "provider": "Gemini", "prompt_tokens": 442, "completion_tokens": 0, "total_tokens": 442}
|
161 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 12, "completion_tokens": 0, "total_tokens": 12}
|
162 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1141, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1767, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2908}
|
163 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 19, "completion_tokens": 0, "total_tokens": 19}
|
164 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 479, "completion_tokens": 0, "total_tokens": 479}
|
165 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 2234, "completion_tokens": 0, "total_tokens": 2234}
|
166 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 2710, "completion_tokens": 0, "total_tokens": 2710}
|
167 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 30, "completion_tokens": 0, "total_tokens": 30}
|
168 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 119, "completion_tokens": 0, "total_tokens": 119}
|
169 |
+
{"model": "qwen-2.5-coder-32b", "provider": "HuggingFace", "prompt_tokens": 119, "completion_tokens": 0, "total_tokens": 119}
|
170 |
+
{"model": "qwen-2.5-coder-32b", "provider": "HuggingFace", "prompt_tokens": 2659, "completion_tokens": 0, "total_tokens": 2659}
|
171 |
+
{"model": "llama-3.2-11b", "provider": "HuggingChat"}
|
172 |
+
{"model": "llama-3.2-11b", "provider": "HuggingChat"}
|
173 |
+
{"model": "llama-3", "provider": "HuggingFace"}
|
174 |
+
{"model": "meta-ai", "provider": "MetaAI", "prompt_tokens": 33, "completion_tokens": 0, "total_tokens": 33}
|
175 |
+
{"model": "gpt-4o-mini", "provider": "OIVSCode", "prompt_tokens": 405, "completion_tokens": 0, "total_tokens": 405}
|
176 |
+
{"model": "gpt-4o-mini", "provider": "PollinationsAI", "completion_tokens": 17, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 146, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 163}
|
177 |
+
{"model": "gpt-4o-mini", "provider": "PollinationsAI", "completion_tokens": 51, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 186, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 237}
|
178 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 51, "completion_tokens": 0, "total_tokens": 51}
|
179 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 142, "completion_tokens": 0, "total_tokens": 142}
|
180 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 746, "completion_tokens": 0, "total_tokens": 746}
|
181 |
+
{"provider": "Gemini"}
|
182 |
+
{"provider": "Gemini"}
|
183 |
+
{"provider": "Gemini"}
|
184 |
+
{"provider": "Gemini"}
|
185 |
+
{"model": "o1", "provider": "OpenaiChat", "prompt_tokens": 127, "completion_tokens": 0, "total_tokens": 127}
|
186 |
+
{"model": "o1", "provider": "OpenaiChat", "prompt_tokens": 200, "completion_tokens": 0, "total_tokens": 200}
|
187 |
+
{"model": "o3-mini", "provider": "OpenaiChat", "prompt_tokens": 200, "completion_tokens": 0, "total_tokens": 200}
|
188 |
+
{"model": "o3-mini", "provider": "OpenaiChat", "prompt_tokens": 513, "completion_tokens": 0, "total_tokens": 513}
|
189 |
+
{"model": "o3-mini", "provider": "OpenaiChat", "prompt_tokens": 168, "completion_tokens": 0, "total_tokens": 168}
|
190 |
+
{"model": "o1", "provider": "OpenaiChat", "prompt_tokens": 168, "completion_tokens": 0, "total_tokens": 168}
|
191 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat", "prompt_tokens": 17, "completion_tokens": 0, "total_tokens": 17}
|
192 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat", "prompt_tokens": 569, "completion_tokens": 0, "total_tokens": 569}
|
193 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat", "prompt_tokens": 1215, "completion_tokens": 0, "total_tokens": 1215}
|
194 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 2419, "completion_tokens": 0, "total_tokens": 2419}
|
195 |
+
{"model": "dall-e-3", "provider": "OpenaiChat", "prompt_tokens": 3111, "completion_tokens": 0, "total_tokens": 3111}
|
196 |
+
{"model": "claude", "provider": "PollinationsAI", "completion_tokens": 91, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3431, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3522}
|
197 |
+
{"model": "claude", "provider": "PollinationsAI", "completion_tokens": 396, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4614, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 5010}
|
198 |
+
{"model": "claude", "provider": "PollinationsAI", "completion_tokens": 187, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5990, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 6177}
|
199 |
+
{"model": "o1", "provider": "OpenaiChat", "prompt_tokens": 21, "completion_tokens": 0, "total_tokens": 21}
|
200 |
+
{"model": "o1", "provider": "OpenaiChat", "prompt_tokens": 15, "completion_tokens": 0, "total_tokens": 15}
|
201 |
+
{"model": "o1", "provider": "OpenaiChat", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
202 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 9, "completion_tokens": 0, "total_tokens": 9}
|
203 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 380, "completion_tokens": 0, "total_tokens": 380}
|
204 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 494, "completion_tokens": 0, "total_tokens": 494}
|
205 |
+
{"model": "gemini-2.0-flash", "provider": "Gemini"}
|
206 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 16, "completion_tokens": 0, "total_tokens": 16}
|
207 |
+
{"model": "sonar-reasoning-pro", "provider": "PerplexityLabs", "prompt_tokens": 595, "completion_tokens": 452, "total_tokens": 1047}
|
208 |
+
{"model": "sonar-reasoning-pro", "provider": "PerplexityLabs", "prompt_tokens": 1287, "completion_tokens": 354, "total_tokens": 1641}
|
209 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 625, "completion_tokens": 388, "total_tokens": 1013}
|
210 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 620, "completion_tokens": 470, "total_tokens": 1090}
|
211 |
+
{"model": "qwen-2.5-coder-32b", "provider": "HuggingFace", "prompt_tokens": 25, "completion_tokens": 0, "total_tokens": 25}
|
212 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 620, "completion_tokens": 0, "total_tokens": 620}
|
213 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 126, "completion_tokens": 0, "total_tokens": 126}
|
214 |
+
{"model": "flux-pro", "provider": "PollinationsImage", "prompt_tokens": 126, "completion_tokens": 0, "total_tokens": 126}
|
215 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 782, "completion_tokens": 0, "total_tokens": 782}
|
216 |
+
{"model": "o3-mini", "provider": "OpenaiChat", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
217 |
+
{"model": "flux-pro", "provider": "PollinationsImage", "prompt_tokens": 227, "completion_tokens": 0, "total_tokens": 227}
|
218 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 928, "completion_tokens": 0, "total_tokens": 928}
|
219 |
+
{"model": "flux-pro", "provider": "PollinationsImage", "prompt_tokens": 342, "completion_tokens": 0, "total_tokens": 342}
|
220 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat", "prompt_tokens": 39, "completion_tokens": 0, "total_tokens": 39}
|
221 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat", "prompt_tokens": 82, "completion_tokens": 0, "total_tokens": 82}
|
222 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 1125, "completion_tokens": 0, "total_tokens": 1125}
|
223 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat", "prompt_tokens": 151, "completion_tokens": 0, "total_tokens": 151}
|
224 |
+
{"model": "flux-pro", "provider": "PollinationsImage", "prompt_tokens": 460, "completion_tokens": 0, "total_tokens": 460}
|
225 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat", "prompt_tokens": 216, "completion_tokens": 0, "total_tokens": 216}
|
226 |
+
{"model": "o1-mini", "provider": "PollinationsAI", "completion_tokens": 9, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 142, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 151}
|
227 |
+
{"model": "o1-mini", "provider": "PollinationsAI", "completion_tokens": 9, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 142, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 151}
|
228 |
+
{"model": "deepseek-chat", "provider": "Blackbox", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
229 |
+
{"model": "deepseek-ai/DeepSeek-R1", "provider": "DeepInfraChat", "prompt_tokens": 3591, "total_tokens": 4453, "completion_tokens": 862, "estimated_cost": 0.00476205}
|
230 |
+
{"model": "deepseek-chat", "provider": "PollinationsAI", "completion_tokens": 335, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4495, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 4830}
|
231 |
+
{"model": "deepseek-chat", "provider": "PollinationsAI", "completion_tokens": 324, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5002, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 5326}
|
232 |
+
{"model": "deepseek-chat", "provider": "Blackbox", "prompt_tokens": 2039, "completion_tokens": 0, "total_tokens": 2039}
|
233 |
+
{"model": "deepseek-chat", "provider": "Blackbox", "prompt_tokens": 2539, "completion_tokens": 0, "total_tokens": 2539}
|
234 |
+
{"model": "o1-preview", "provider": "OpenaiChat", "prompt_tokens": 3731, "completion_tokens": 0, "total_tokens": 3731}
|
235 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 1277, "completion_tokens": 0, "total_tokens": 1277}
|
236 |
+
{"model": "flux-pro", "provider": "PollinationsImage", "prompt_tokens": 577, "completion_tokens": 0, "total_tokens": 577}
|
237 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 694, "completion_tokens": 0, "total_tokens": 694}
|
238 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 24, "completion_tokens": 0, "total_tokens": 24}
|
239 |
+
{"model": "turbo", "provider": "PollinationsImage", "prompt_tokens": 811, "completion_tokens": 0, "total_tokens": 811}
|
240 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 928, "completion_tokens": 0, "total_tokens": 928}
|
241 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 59, "completion_tokens": 0, "total_tokens": 59}
|
242 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 159, "completion_tokens": 0, "total_tokens": 159}
|
243 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 43, "completion_tokens": 0, "total_tokens": 43}
|
244 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 611, "completion_tokens": 0, "total_tokens": 611}
|
245 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 1305, "completion_tokens": 0, "total_tokens": 1305}
|
246 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 23, "completion_tokens": 0, "total_tokens": 23}
|
247 |
+
{"model": "o1-preview", "provider": "OpenaiChat", "prompt_tokens": 6244, "completion_tokens": 0, "total_tokens": 6244}
|
248 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 22, "completion_tokens": 0, "total_tokens": 22}
|
249 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 84, "completion_tokens": 0, "total_tokens": 84}
|
250 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 275, "completion_tokens": 0, "total_tokens": 275}
|
251 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 598, "completion_tokens": 0, "total_tokens": 598}
|
252 |
+
{"model": "deepseek-v3", "provider": "DeepSeekAPI", "prompt_tokens": 132, "completion_tokens": 0, "total_tokens": 132}
|
253 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 13, "completion_tokens": 271, "total_tokens": 284}
|
254 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 604, "completion_tokens": 322, "total_tokens": 926}
|
255 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 131, "completion_tokens": 0, "total_tokens": 131}
|
256 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 29, "completion_tokens": 0, "total_tokens": 29}
|
257 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 631, "completion_tokens": 0, "total_tokens": 631}
|
258 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 926, "completion_tokens": 0, "total_tokens": 926}
|
259 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 4917, "total_tokens": 6198, "completion_tokens": 1281, "estimated_cost": 0.00676215}
|
260 |
+
{"model": "deepseek-chat", "provider": "PollinationsAI", "completion_tokens": 581, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5629, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 6210}
|
261 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 171, "completion_tokens": 0, "total_tokens": 171}
|
262 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 1027, "completion_tokens": 0, "total_tokens": 1027}
|
263 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 2166, "completion_tokens": 0, "total_tokens": 2166}
|
264 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 4635, "completion_tokens": 0, "total_tokens": 4635}
|
265 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 75, "completion_tokens": 0, "total_tokens": 75}
|
266 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 139, "completion_tokens": 0, "total_tokens": 139}
|
267 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 434, "completion_tokens": 0, "total_tokens": 434}
|
268 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
269 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 105, "completion_tokens": 0, "total_tokens": 105}
|
270 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 28, "completion_tokens": 0, "total_tokens": 28}
|
271 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 1509, "completion_tokens": 0, "total_tokens": 1509}
|
272 |
+
{"model": "claude", "provider": "PollinationsAI", "completion_tokens": 21, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 193, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 214}
|
273 |
+
{"model": "claude", "provider": "PollinationsAI", "completion_tokens": 30, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 145, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 175}
|
274 |
+
{"model": "claude", "provider": "PollinationsAI", "completion_tokens": 24, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 186, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 210}
|
275 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 381, "completion_tokens": 0, "total_tokens": 381}
|
276 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
277 |
+
{"model": "gemini-2.0-flash", "provider": "Gemini"}
|
278 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 29, "completion_tokens": 0, "total_tokens": 29}
|
279 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 58, "completion_tokens": 0, "total_tokens": 58}
|
280 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 2099, "completion_tokens": 0, "total_tokens": 2099}
|
281 |
+
{"model": "sd-3.5", "provider": "HuggingSpace", "prompt_tokens": 15, "completion_tokens": 0, "total_tokens": 15}
|
282 |
+
{"model": "gemini-2.0-flash", "provider": "Gemini"}
|
283 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 2574, "completion_tokens": 0, "total_tokens": 2574}
|
284 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 3183, "completion_tokens": 0, "total_tokens": 3183}
|
285 |
+
{"model": "ImageGeneration", "provider": "Blackbox", "prompt_tokens": 1041, "completion_tokens": 0, "total_tokens": 1041}
|
286 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "completion_tokens": 409, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3490, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3899}
|
287 |
+
{"model": "stabilityai-stable-diffusion-3-5-large", "provider": "StableDiffusion35Large", "prompt_tokens": 1041, "completion_tokens": 0, "total_tokens": 1041}
|
288 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 606, "completion_tokens": 416, "total_tokens": 1022}
|
289 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 1154, "completion_tokens": 0, "total_tokens": 1154}
|
290 |
+
{"model": "turbo", "provider": "PollinationsImage", "prompt_tokens": 1154, "completion_tokens": 0, "total_tokens": 1154}
|
291 |
+
{"model": "flux", "provider": "PollinationsImage", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
292 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 1383, "completion_tokens": 0, "total_tokens": 1383}
|
293 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 1572, "completion_tokens": 0, "total_tokens": 1572}
|
294 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 1712, "completion_tokens": 0, "total_tokens": 1712}
|
295 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 1897, "completion_tokens": 0, "total_tokens": 1897}
|
296 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 2262, "completion_tokens": 0, "total_tokens": 2262}
|
297 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 195, "completion_tokens": 0, "total_tokens": 195}
|
298 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 728, "completion_tokens": 0, "total_tokens": 728}
|
299 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 728, "completion_tokens": 0, "total_tokens": 728}
|
300 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 35, "completion_tokens": 0, "total_tokens": 35}
|
301 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 2456, "completion_tokens": 0, "total_tokens": 2456}
|
302 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 596, "completion_tokens": 0, "total_tokens": 596}
|
303 |
+
{"model": "flux-pro", "provider": "PollinationsImage", "prompt_tokens": 2650, "completion_tokens": 0, "total_tokens": 2650}
|
304 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 2844, "completion_tokens": 0, "total_tokens": 2844}
|
305 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 870, "completion_tokens": 0, "total_tokens": 870}
|
306 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 870, "completion_tokens": 0, "total_tokens": 870}
|
307 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 3053, "completion_tokens": 0, "total_tokens": 3053}
|
308 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 3261, "completion_tokens": 0, "total_tokens": 3261}
|
309 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 3476, "completion_tokens": 0, "total_tokens": 3476}
|
310 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 3488, "completion_tokens": 0, "total_tokens": 3488}
|
311 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
312 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
313 |
+
{"model": "flux-schnell", "provider": "PollinationsImage", "prompt_tokens": 27, "completion_tokens": 0, "total_tokens": 27}
|
314 |
+
{"model": "flux-schnell", "provider": "PollinationsImage", "prompt_tokens": 151, "completion_tokens": 0, "total_tokens": 151}
|
315 |
+
{"model": "turbo", "provider": "PollinationsImage", "prompt_tokens": 151, "completion_tokens": 0, "total_tokens": 151}
|
316 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 275, "completion_tokens": 0, "total_tokens": 275}
|
317 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 325, "completion_tokens": 0, "total_tokens": 325}
|
318 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 559, "completion_tokens": 0, "total_tokens": 559}
|
319 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 1845, "completion_tokens": 0, "total_tokens": 1845}
|
320 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 774, "completion_tokens": 0, "total_tokens": 774}
|
321 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 2398, "completion_tokens": 0, "total_tokens": 2398}
|
322 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 1114, "completion_tokens": 0, "total_tokens": 1114}
|
323 |
+
{"model": "turbo", "provider": "PollinationsImage", "prompt_tokens": 1368, "completion_tokens": 0, "total_tokens": 1368}
|
324 |
+
{"model": "turbo", "provider": "PollinationsImage", "prompt_tokens": 1557, "completion_tokens": 0, "total_tokens": 1557}
|
325 |
+
{"model": "turbo", "provider": "PollinationsImage", "prompt_tokens": 1904, "completion_tokens": 0, "total_tokens": 1904}
|
326 |
+
{"model": "flux", "provider": "PollinationsImage", "prompt_tokens": 1904, "completion_tokens": 0, "total_tokens": 1904}
|
327 |
+
{"model": "flux", "provider": "PollinationsImage", "prompt_tokens": 2110, "completion_tokens": 0, "total_tokens": 2110}
|
328 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1969, "completion_tokens": 0, "total_tokens": 1969}
|
329 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
330 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 9, "completion_tokens": 0, "total_tokens": 9}
|
331 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 20, "completion_tokens": 0, "total_tokens": 20}
|
332 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 155, "completion_tokens": 0, "total_tokens": 155}
|
333 |
+
{"model": "qwen-qvq-72b-preview", "provider": "Qwen_QVQ_72B", "prompt_tokens": 1335, "completion_tokens": 0, "total_tokens": 1335}
|
334 |
+
{"model": "qwen-2.5-coder-32b", "provider": "HuggingFace", "prompt_tokens": 21, "completion_tokens": 0, "total_tokens": 21}
|
335 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini", "prompt_tokens": 8, "completion_tokens": 116, "total_tokens": 124}
|
336 |
+
{"model": "qwen-2.5-coder-32b", "provider": "HuggingFace", "prompt_tokens": 529, "completion_tokens": 0, "total_tokens": 529}
|
337 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini", "prompt_tokens": 18, "completion_tokens": 321, "total_tokens": 339}
|
338 |
+
{"model": "gemini-2.0-flash-exp", "provider": "Gemini", "prompt_tokens": 18, "completion_tokens": 0, "total_tokens": 18}
|
339 |
+
{"model": "qwen-2.5-coder-32b", "provider": "HuggingFace", "prompt_tokens": 1468, "completion_tokens": 0, "total_tokens": 1468}
|
340 |
+
{"model": "qwen-2.5-coder-32b", "provider": "HuggingFace", "prompt_tokens": 2791, "completion_tokens": 0, "total_tokens": 2791}
|
341 |
+
{"model": "gemini-2.0-flash-exp", "provider": "Gemini", "prompt_tokens": 18, "completion_tokens": 0, "total_tokens": 18}
|
342 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 107, "completion_tokens": 0, "total_tokens": 107}
|
343 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 37, "completion_tokens": 0, "total_tokens": 37}
|
344 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 107, "completion_tokens": 0, "total_tokens": 107}
|
345 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 37, "completion_tokens": 0, "total_tokens": 37}
|
346 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 45, "completion_tokens": 0, "total_tokens": 45}
|
347 |
+
{"model": "qwen-2.5-coder-32b", "provider": "HuggingFace", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
348 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 14, "completion_tokens": 0, "total_tokens": 14}
|
349 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 29, "completion_tokens": 0, "total_tokens": 29}
|
350 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
351 |
+
{"model": "gpt-4o-mini", "provider": "OpenaiChat"}
|
352 |
+
{"model": "gpt-4o-mini", "provider": "OpenaiChat"}
|
353 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 85, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 356, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 441}
|
354 |
+
{"model": "qwen-2.5-coder-32b", "provider": "HuggingFace", "prompt_tokens": 43, "completion_tokens": 0, "total_tokens": 43}
|
355 |
+
{"model": "gpt-4o-mini", "provider": "OpenaiChat", "prompt_tokens": 9, "completion_tokens": 0, "total_tokens": 9}
|
356 |
+
{"model": "gpt-4o-mini", "provider": "OpenaiChat", "prompt_tokens": 28, "completion_tokens": 0, "total_tokens": 28}
|
357 |
+
{"model": "gpt-4o-mini", "provider": "OpenaiChat", "prompt_tokens": 50, "completion_tokens": 0, "total_tokens": 50}
|
358 |
+
{"model": "gpt-4o-mini", "provider": "OpenaiChat", "prompt_tokens": 70, "completion_tokens": 0, "total_tokens": 70}
|
359 |
+
{"model": "qwen-2.5-1m-demo", "provider": "HuggingSpace", "prompt_tokens": 111, "completion_tokens": 0, "total_tokens": 111}
|
360 |
+
{"provider": "Gemini", "prompt_tokens": 9, "completion_tokens": 0, "total_tokens": 9}
|
361 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 135, "completion_tokens": 0, "total_tokens": 135}
|
362 |
+
{"model": "sd-3.5", "provider": "HuggingSpace", "prompt_tokens": 135, "completion_tokens": 0, "total_tokens": 135}
|
363 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingChat", "prompt_tokens": 135, "completion_tokens": 0, "total_tokens": 135}
|
364 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 234, "completion_tokens": 0, "total_tokens": 234}
|
365 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat"}
|
366 |
+
{"model": "gemini-2.0-flash-thinking", "provider": "Liaobots"}
|
367 |
+
{"model": "blackboxai", "provider": "Blackbox"}
|
368 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 114, "completion_tokens": 0, "total_tokens": 114}
|
369 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 114, "completion_tokens": 0, "total_tokens": 114}
|
370 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 114, "completion_tokens": 0, "total_tokens": 114}
|
371 |
+
{"model": "flux", "provider": "BlackForestLabsFlux1Schnell", "prompt_tokens": 1328, "completion_tokens": 0, "total_tokens": 1328}
|
372 |
+
{"model": "black-forest-labs-flux-1-schnell", "provider": "BlackForestLabsFlux1Schnell", "prompt_tokens": 114, "completion_tokens": 0, "total_tokens": 114}
|
373 |
+
{"model": "black-forest-labs-flux-1-schnell", "provider": "BlackForestLabsFlux1Schnell", "prompt_tokens": 4035, "completion_tokens": 0, "total_tokens": 4035}
|
374 |
+
{"model": "stabilityai-stable-diffusion-3-5-large", "provider": "StableDiffusion35Large", "prompt_tokens": 196, "completion_tokens": 0, "total_tokens": 196}
|
375 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 312, "completion_tokens": 0, "total_tokens": 312}
|
376 |
+
{"model": "llama-scaleway", "provider": "PollinationsAI", "prompt_tokens": 301, "total_tokens": 762, "completion_tokens": 461, "prompt_tokens_details": null}
|
377 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 317, "completion_tokens": 0, "total_tokens": 317}
|
378 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 212, "completion_tokens": 603, "total_tokens": 815, "prompt_tokens_details": {"cached_tokens": 0}, "prompt_cache_hit_tokens": 0, "prompt_cache_miss_tokens": 212}
|
379 |
+
{"model": "searchgpt", "provider": "PollinationsAI", "completion_tokens": 55, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1187, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1242}
|
usage/2025-03-02.jsonl
ADDED
@@ -0,0 +1,221 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
2 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 27, "completion_tokens": 0, "total_tokens": 27}
|
3 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 77, "completion_tokens": 0, "total_tokens": 77}
|
4 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 112, "completion_tokens": 0, "total_tokens": 112}
|
5 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 169, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 179}
|
6 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 39, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 190, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 229}
|
7 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 51, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 250, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 301}
|
8 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 47, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 316, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 363}
|
9 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 11, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 504, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 515}
|
10 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 61, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 536, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 597}
|
11 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 15, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 613, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 628}
|
12 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 23, "completion_tokens": 0, "total_tokens": 23}
|
13 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 113, "completion_tokens": 0, "total_tokens": 113}
|
14 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 40, "completion_tokens": 0, "total_tokens": 40}
|
15 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 78, "completion_tokens": 0, "total_tokens": 78}
|
16 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 170, "completion_tokens": 0, "total_tokens": 170}
|
17 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 43, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 224, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 267}
|
18 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 40, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 430, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 470}
|
19 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 19, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 482, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 501}
|
20 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 400, "completion_tokens": 0, "total_tokens": 400}
|
21 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 449, "completion_tokens": 0, "total_tokens": 449}
|
22 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 522, "completion_tokens": 0, "total_tokens": 522}
|
23 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 592, "completion_tokens": 0, "total_tokens": 592}
|
24 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 29, "completion_tokens": 0, "total_tokens": 29}
|
25 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 155, "completion_tokens": 0, "total_tokens": 155}
|
26 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 229, "completion_tokens": 0, "total_tokens": 229}
|
27 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 73, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 173, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 246}
|
28 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 136, "completion_tokens": 0, "total_tokens": 136}
|
29 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 240, "completion_tokens": 0, "total_tokens": 240}
|
30 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 6, "completion_tokens": 33, "total_tokens": 39, "prompt_tokens_details": {"cached_tokens": 0}, "prompt_cache_hit_tokens": 0, "prompt_cache_miss_tokens": 6}
|
31 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 44, "completion_tokens": 0, "total_tokens": 44}
|
32 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 133, "completion_tokens": 0, "total_tokens": 133}
|
33 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 184, "completion_tokens": 0, "total_tokens": 184}
|
34 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 26, "completion_tokens": 0, "total_tokens": 26}
|
35 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 26, "completion_tokens": 0, "total_tokens": 26}
|
36 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 186, "completion_tokens": 0, "total_tokens": 186}
|
37 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 26, "completion_tokens": 0, "total_tokens": 26}
|
38 |
+
{"model": "openai-community/gpt2", "provider": "HuggingFace", "prompt_tokens": 134, "completion_tokens": 0, "total_tokens": 134}
|
39 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingChat", "prompt_tokens": 622, "completion_tokens": 0, "total_tokens": 622}
|
40 |
+
{"model": "gpt-4o-mini", "provider": "OpenaiChat", "prompt_tokens": 752, "completion_tokens": 0, "total_tokens": 752}
|
41 |
+
{"model": "gpt-4o-mini", "provider": "OpenaiChat", "prompt_tokens": 828, "completion_tokens": 0, "total_tokens": 828}
|
42 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 960, "completion_tokens": 0, "total_tokens": 960}
|
43 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 26, "completion_tokens": 0, "total_tokens": 26}
|
44 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 167, "completion_tokens": 0, "total_tokens": 167}
|
45 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
46 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 28, "completion_tokens": 0, "total_tokens": 28}
|
47 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 26, "completion_tokens": 0, "total_tokens": 26}
|
48 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 58, "completion_tokens": 0, "total_tokens": 58}
|
49 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 26, "completion_tokens": 0, "total_tokens": 26}
|
50 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 81, "completion_tokens": 0, "total_tokens": 81}
|
51 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 134, "completion_tokens": 0, "total_tokens": 134}
|
52 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
53 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 245, "completion_tokens": 0, "total_tokens": 245}
|
54 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 143, "completion_tokens": 0, "total_tokens": 143}
|
55 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 199, "completion_tokens": 0, "total_tokens": 199}
|
56 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 260, "completion_tokens": 0, "total_tokens": 260}
|
57 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 325, "completion_tokens": 0, "total_tokens": 325}
|
58 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 396, "completion_tokens": 0, "total_tokens": 396}
|
59 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 4, "completion_tokens": 11, "total_tokens": 15, "prompt_tokens_details": {"cached_tokens": 0}, "prompt_cache_hit_tokens": 0, "prompt_cache_miss_tokens": 4}
|
60 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 497, "completion_tokens": 0, "total_tokens": 497}
|
61 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
62 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
63 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 578, "completion_tokens": 0, "total_tokens": 578}
|
64 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 64, "completion_tokens": 0, "total_tokens": 64}
|
65 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 716, "completion_tokens": 0, "total_tokens": 716}
|
66 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 15, "completion_tokens": 0, "total_tokens": 15}
|
67 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 46, "completion_tokens": 0, "total_tokens": 46}
|
68 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 811, "completion_tokens": 0, "total_tokens": 811}
|
69 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 908, "completion_tokens": 0, "total_tokens": 908}
|
70 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 992, "completion_tokens": 0, "total_tokens": 992}
|
71 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 96, "completion_tokens": 0, "total_tokens": 96}
|
72 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 1060, "completion_tokens": 0, "total_tokens": 1060}
|
73 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 1207, "completion_tokens": 0, "total_tokens": 1207}
|
74 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 1349, "completion_tokens": 0, "total_tokens": 1349}
|
75 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 29, "completion_tokens": 0, "total_tokens": 29}
|
76 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 190, "completion_tokens": 0, "total_tokens": 190}
|
77 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 297, "completion_tokens": 0, "total_tokens": 297}
|
78 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 369, "completion_tokens": 0, "total_tokens": 369}
|
79 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 26, "completion_tokens": 0, "total_tokens": 26}
|
80 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 26, "completion_tokens": 0, "total_tokens": 26}
|
81 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 26, "completion_tokens": 0, "total_tokens": 26}
|
82 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 158, "completion_tokens": 0, "total_tokens": 158}
|
83 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 71, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 170, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 241}
|
84 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 55, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 256, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 311}
|
85 |
+
{"model": "searchgpt", "provider": "PollinationsAI", "completion_tokens": 619, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4594, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 5213}
|
86 |
+
{"model": "o1-mini", "provider": "PollinationsAI", "completion_tokens": 67, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1162, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1229}
|
87 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 269, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2254, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2523}
|
88 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 629, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2627, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3256}
|
89 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat", "prompt_tokens": 15, "completion_tokens": 0, "total_tokens": 15}
|
90 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 62, "completion_tokens": 0, "total_tokens": 62}
|
91 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 18, "completion_tokens": 0, "total_tokens": 18}
|
92 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 77, "completion_tokens": 0, "total_tokens": 77}
|
93 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 785, "completion_tokens": 0, "total_tokens": 785}
|
94 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 1002, "completion_tokens": 0, "total_tokens": 1002}
|
95 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 1260, "completion_tokens": 0, "total_tokens": 1260}
|
96 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 337, "completion_tokens": 0, "total_tokens": 337}
|
97 |
+
{"model": "o1", "provider": "OpenaiChat", "prompt_tokens": 9, "completion_tokens": 0, "total_tokens": 9}
|
98 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 52, "completion_tokens": 0, "total_tokens": 52}
|
99 |
+
{"model": "gemini-2.0-flash-exp", "provider": "Gemini", "prompt_tokens": 19, "completion_tokens": 0, "total_tokens": 19}
|
100 |
+
{"model": "qvq-72b", "provider": "HuggingSpace", "prompt_tokens": 48, "completion_tokens": 0, "total_tokens": 48}
|
101 |
+
{"model": "qvq-72b", "provider": "HuggingSpace", "prompt_tokens": 28, "completion_tokens": 0, "total_tokens": 28}
|
102 |
+
{"model": "qwen-qvq-72b-preview", "provider": "HuggingSpace", "prompt_tokens": 70, "completion_tokens": 0, "total_tokens": 70}
|
103 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "HuggingSpace", "prompt_tokens": 113, "completion_tokens": 0, "total_tokens": 113}
|
104 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 32, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 42}
|
105 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 114, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 53, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 167}
|
106 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 393, "completion_tokens_details": {"reasoning_tokens": 256}, "prompt_tokens": 221, "prompt_tokens_details": {"cached_tokens": 0}, "total_tokens": 614}
|
107 |
+
{"model": "claude", "provider": "PollinationsAI", "completion_tokens": 166, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 314, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 480}
|
108 |
+
{"model": "claude-email", "provider": "PollinationsAI", "completion_tokens": 165, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 491, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 656}
|
109 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 182, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 667, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 849}
|
110 |
+
{"model": "claude", "provider": "PollinationsAI", "completion_tokens": 180, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 860, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1040}
|
111 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 164, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1051, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1215}
|
112 |
+
{"model": "claude", "provider": "PollinationsAI", "completion_tokens": 450, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5682, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 6132}
|
113 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 1223, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5682, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 6905}
|
114 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 1488, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 6919, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 8407}
|
115 |
+
{"model": "midijourney", "provider": "PollinationsAI", "completion_tokens": 51, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1176, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1227}
|
116 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 122, "completion_tokens": 0, "total_tokens": 122}
|
117 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 137, "completion_tokens": 0, "total_tokens": 137}
|
118 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 152, "completion_tokens": 0, "total_tokens": 152}
|
119 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 238, "completion_tokens_details": {"reasoning_tokens": 128}, "prompt_tokens": 11, "prompt_tokens_details": {"cached_tokens": 0}, "total_tokens": 249}
|
120 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 138, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 132, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 270}
|
121 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 190, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 8433, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 8623}
|
122 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 1752, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 8639, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 10391}
|
123 |
+
{"model": "deepseek-r1", "provider": "DeepSeekAPI", "prompt_tokens": 9, "completion_tokens": 141, "total_tokens": 150}
|
124 |
+
{"model": "janus-pro-7b", "provider": "G4F", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
125 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
126 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "HuggingSpace", "prompt_tokens": 31, "completion_tokens": 0, "total_tokens": 31}
|
127 |
+
{"model": "turbo", "provider": "PollinationsAI", "prompt_tokens": 42, "completion_tokens": 0, "total_tokens": 42}
|
128 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 1223, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 7782, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 9005}
|
129 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 5528, "completion_tokens": 0, "total_tokens": 5528}
|
130 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 11074, "total_tokens": 14218, "completion_tokens": 3144, "estimated_cost": 0.00227208}
|
131 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 5099, "total_tokens": 5913, "completion_tokens": 814, "estimated_cost": 0.0008560800000000001}
|
132 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 3847, "completion_tokens": 0, "total_tokens": 3847}
|
133 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 5676, "completion_tokens": 0, "total_tokens": 5676}
|
134 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 2609, "completion_tokens": 0, "total_tokens": 2609}
|
135 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 2622, "completion_tokens": 0, "total_tokens": 2622}
|
136 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 2663, "completion_tokens": 0, "total_tokens": 2663}
|
137 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 2510, "completion_tokens": 0, "total_tokens": 2510}
|
138 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 2498, "completion_tokens": 0, "total_tokens": 2498}
|
139 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 2483, "completion_tokens": 0, "total_tokens": 2483}
|
140 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 1026, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 7332, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 8358}
|
141 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 803, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 7528, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 8331}
|
142 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 816, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 7528, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 8344}
|
143 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 2478, "completion_tokens": 0, "total_tokens": 2478}
|
144 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 2491, "completion_tokens": 0, "total_tokens": 2491}
|
145 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 2493, "completion_tokens": 0, "total_tokens": 2493}
|
146 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 3642, "completion_tokens": 0, "total_tokens": 3642}
|
147 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 2426, "completion_tokens": 0, "total_tokens": 2426}
|
148 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 3255, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 6939, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 10194}
|
149 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat"}
|
150 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat"}
|
151 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat"}
|
152 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat"}
|
153 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 2517, "completion_tokens": 0, "total_tokens": 2517}
|
154 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 2560, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4869, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 7429}
|
155 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 6007, "completion_tokens": 0, "total_tokens": 6007}
|
156 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
157 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 34, "completion_tokens": 0, "total_tokens": 34}
|
158 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 200, "completion_tokens": 0, "total_tokens": 200}
|
159 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 1856, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 6134, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 7990}
|
160 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 905, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 9967, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 10872}
|
161 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 6708, "completion_tokens": 0, "total_tokens": 6708}
|
162 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 1720, "completion_tokens": 0, "total_tokens": 1720}
|
163 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 2129, "total_tokens": 2633, "completion_tokens": 504, "estimated_cost": 0.00040668000000000003}
|
164 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 508, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 7466, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 7974}
|
165 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat"}
|
166 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 65, "completion_tokens": 0, "total_tokens": 65}
|
167 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat"}
|
168 |
+
{"model": "r1-1776", "provider": "PerplexityLabs", "prompt_tokens": 28, "completion_tokens": 432, "total_tokens": 460}
|
169 |
+
{"model": "grok-3", "provider": "Liaobots"}
|
170 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 4837, "total_tokens": 6979, "completion_tokens": 2142, "estimated_cost": 0.0012230399999999999}
|
171 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 501, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3878, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 4379}
|
172 |
+
{"model": "grok-3", "provider": "Liaobots"}
|
173 |
+
{"model": "grok-3", "provider": "Liaobots"}
|
174 |
+
{"model": "grok-3", "provider": "Liaobots"}
|
175 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 4523, "completion_tokens": 0, "total_tokens": 4523}
|
176 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 1723, "completion_tokens": 0, "total_tokens": 1723}
|
177 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 1749, "completion_tokens": 0, "total_tokens": 1749}
|
178 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
179 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 359, "completion_tokens": 0, "total_tokens": 359}
|
180 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 857, "completion_tokens": 0, "total_tokens": 857}
|
181 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 368, "completion_tokens": 0, "total_tokens": 368}
|
182 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 1089, "completion_tokens": 0, "total_tokens": 1089}
|
183 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
184 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 893, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 181, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1074}
|
185 |
+
{"model": "qwen-2.5-coder-32b", "provider": "PollinationsAI", "prompt_tokens": 175, "total_tokens": 189, "completion_tokens": 14, "prompt_tokens_details": null}
|
186 |
+
{"model": "qwen-2.5-coder-32b", "provider": "PollinationsAI", "prompt_tokens": 276, "total_tokens": 1311, "completion_tokens": 1035, "prompt_tokens_details": null}
|
187 |
+
{"model": "llama", "provider": "PollinationsAI", "prompt_tokens": 1244, "completion_tokens": 54, "total_tokens": 1298}
|
188 |
+
{"model": "llama", "provider": "PollinationsAI", "prompt_tokens": 1315, "completion_tokens": 110, "total_tokens": 1425}
|
189 |
+
{"model": "deepseek-v3", "provider": "DeepSeekAPI", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
190 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 54, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1246, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1300}
|
191 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 1130, "completion_tokens": 135, "total_tokens": 1265, "prompt_tokens_details": {"cached_tokens": 0}, "prompt_cache_hit_tokens": 0, "prompt_cache_miss_tokens": 1130}
|
192 |
+
{"model": "o1-mini", "provider": "PollinationsAI", "completion_tokens": 96, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1129, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1225}
|
193 |
+
{"model": "sonar-reasoning-pro", "provider": "PerplexityLabs", "prompt_tokens": 1153, "completion_tokens": 326, "total_tokens": 1479}
|
194 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat"}
|
195 |
+
{"model": "grok-3", "provider": "Grok"}
|
196 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 89, "completion_tokens": 342, "total_tokens": 431}
|
197 |
+
{"model": "gemini-2.0-flash", "provider": "Blackbox", "prompt_tokens": 1111, "completion_tokens": 0, "total_tokens": 1111}
|
198 |
+
{"model": "gemini-2.0-flash", "provider": "Blackbox", "prompt_tokens": 1136, "completion_tokens": 0, "total_tokens": 1136}
|
199 |
+
{"model": "gemini-2.0-flash", "provider": "Blackbox", "prompt_tokens": 22, "completion_tokens": 0, "total_tokens": 22}
|
200 |
+
{"model": "gemini-2.0-flash", "provider": "Blackbox", "prompt_tokens": 50, "completion_tokens": 0, "total_tokens": 50}
|
201 |
+
{"model": "gemini-2.0-flash", "provider": "Blackbox", "prompt_tokens": 22, "completion_tokens": 0, "total_tokens": 22}
|
202 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 14, "total_tokens": 108, "completion_tokens": 94, "estimated_cost": 0.0002361}
|
203 |
+
{"model": "sonar-reasoning-pro", "provider": "PerplexityLabs", "prompt_tokens": 21, "completion_tokens": 409, "total_tokens": 430}
|
204 |
+
{"model": "grok-3", "provider": "Grok"}
|
205 |
+
{"model": "sonar-reasoning-pro", "provider": "PerplexityLabs", "prompt_tokens": 27, "completion_tokens": 1583, "total_tokens": 1610}
|
206 |
+
{"model": "sonar-reasoning-pro", "provider": "PerplexityLabs", "prompt_tokens": 27, "completion_tokens": 309, "total_tokens": 336}
|
207 |
+
{"model": "grok-3", "provider": "Grok"}
|
208 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 22, "completion_tokens": 0, "total_tokens": 22}
|
209 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 445, "total_tokens": 590, "completion_tokens": 145, "prompt_tokens_details": null}
|
210 |
+
{"model": "sonar-reasoning-pro", "provider": "PerplexityLabs", "prompt_tokens": 26, "completion_tokens": 830, "total_tokens": 856}
|
211 |
+
{"model": "grok-3", "provider": "Grok"}
|
212 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 48, "completion_tokens": 0, "total_tokens": 48}
|
213 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 5174, "total_tokens": 5973, "completion_tokens": 799, "estimated_cost": 0.0008605800000000001}
|
214 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 3601, "total_tokens": 5175, "completion_tokens": 1574, "estimated_cost": 0.00090432}
|
215 |
+
{"model": "grok-3", "provider": "Grok"}
|
216 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 53, "completion_tokens": 0, "total_tokens": 53}
|
217 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 1255, "completion_tokens": 0, "total_tokens": 1255}
|
218 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 63, "completion_tokens": 0, "total_tokens": 63}
|
219 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 63, "completion_tokens": 0, "total_tokens": 63}
|
220 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
221 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 164, "completion_tokens": 0, "total_tokens": 164}
|
usage/2025-03-09.jsonl
ADDED
@@ -0,0 +1,142 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 740, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 6703, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 7443}
|
2 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 44, "completion_tokens": 0, "total_tokens": 44}
|
3 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 58, "completion_tokens": 0, "total_tokens": 58}
|
4 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 1602, "completion_tokens": 0, "total_tokens": 1602}
|
5 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 3290, "completion_tokens": 0, "total_tokens": 3290}
|
6 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 3290, "completion_tokens": 0, "total_tokens": 3290}
|
7 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 21, "completion_tokens": 0, "total_tokens": 21}
|
8 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 3378, "completion_tokens": 0, "total_tokens": 3378}
|
9 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 5014, "completion_tokens": 0, "total_tokens": 5014}
|
10 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 5766, "completion_tokens": 0, "total_tokens": 5766}
|
11 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 6815, "completion_tokens": 0, "total_tokens": 6815}
|
12 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 7843, "completion_tokens": 0, "total_tokens": 7843}
|
13 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 8420, "completion_tokens": 0, "total_tokens": 8420}
|
14 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 9441, "completion_tokens": 0, "total_tokens": 9441}
|
15 |
+
{"model": "flux", "provider": "HuggingSpace", "prompt_tokens": 970, "completion_tokens": 0, "total_tokens": 970}
|
16 |
+
{"model": "flux", "provider": "PollinationsImage", "prompt_tokens": 970, "completion_tokens": 0, "total_tokens": 970}
|
17 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 11780, "completion_tokens": 0, "total_tokens": 11780}
|
18 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 1220, "completion_tokens": 0, "total_tokens": 1220}
|
19 |
+
{"model": "flux", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 1305, "completion_tokens": 0, "total_tokens": 1305}
|
20 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 12891, "completion_tokens": 0, "total_tokens": 12891}
|
21 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 957, "total_tokens": 1347, "completion_tokens": 390, "estimated_cost": 0.00023184000000000003}
|
22 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 1409, "completion_tokens": 0, "total_tokens": 1409}
|
23 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 1766, "total_tokens": 2123, "completion_tokens": 357, "estimated_cost": 0.00031902}
|
24 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 14039, "completion_tokens": 0, "total_tokens": 14039}
|
25 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 15069, "completion_tokens": 0, "total_tokens": 15069}
|
26 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 2183, "completion_tokens": 0, "total_tokens": 2183}
|
27 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 16074, "completion_tokens": 0, "total_tokens": 16074}
|
28 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 15, "completion_tokens": 0, "total_tokens": 15}
|
29 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 111, "completion_tokens": 0, "total_tokens": 111}
|
30 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 11, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1080, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1091}
|
31 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 16859, "completion_tokens": 0, "total_tokens": 16859}
|
32 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
33 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
34 |
+
{"model": "flux", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 2570, "completion_tokens": 0, "total_tokens": 2570}
|
35 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 2676, "completion_tokens": 0, "total_tokens": 2676}
|
36 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 3033, "completion_tokens": 0, "total_tokens": 3033}
|
37 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 3529, "completion_tokens": 0, "total_tokens": 3529}
|
38 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 3787, "completion_tokens": 0, "total_tokens": 3787}
|
39 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 3984, "completion_tokens": 0, "total_tokens": 3984}
|
40 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 4099, "completion_tokens": 0, "total_tokens": 4099}
|
41 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 7083, "completion_tokens": 0, "total_tokens": 7083}
|
42 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 7698, "completion_tokens": 0, "total_tokens": 7698}
|
43 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 8305, "completion_tokens": 0, "total_tokens": 8305}
|
44 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 9420, "completion_tokens": 0, "total_tokens": 9420}
|
45 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 10078, "completion_tokens": 0, "total_tokens": 10078}
|
46 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 10915, "completion_tokens": 0, "total_tokens": 10915}
|
47 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 11167, "completion_tokens": 0, "total_tokens": 11167}
|
48 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 19443, "completion_tokens": 0, "total_tokens": 19443}
|
49 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 20105, "completion_tokens": 0, "total_tokens": 20105}
|
50 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 4357, "completion_tokens": 0, "total_tokens": 4357}
|
51 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 20646, "completion_tokens": 0, "total_tokens": 20646}
|
52 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 5410, "completion_tokens": 0, "total_tokens": 5410}
|
53 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 12830, "completion_tokens": 0, "total_tokens": 12830}
|
54 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 21180, "completion_tokens": 0, "total_tokens": 21180}
|
55 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 21489, "completion_tokens": 0, "total_tokens": 21489}
|
56 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 9, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 20, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 29}
|
57 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 85, "completion_tokens_details": {"reasoning_tokens": 64}, "prompt_tokens": 9, "prompt_tokens_details": {"cached_tokens": 0}, "total_tokens": 94}
|
58 |
+
{"provider": "Gemini"}
|
59 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini"}
|
60 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 22165, "completion_tokens": 0, "total_tokens": 22165}
|
61 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 22620, "completion_tokens": 0, "total_tokens": 22620}
|
62 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 23125, "completion_tokens": 0, "total_tokens": 23125}
|
63 |
+
{"provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 23604, "completion_tokens": 0, "total_tokens": 23604}
|
64 |
+
{"provider": "Gemini"}
|
65 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
66 |
+
{"model": "deepseek-v3", "provider": "DeepSeekAPI"}
|
67 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingChat"}
|
68 |
+
{"model": "deepseek-r1", "provider": "DeepSeekAPI", "prompt_tokens": 46, "completion_tokens": 86, "total_tokens": 132}
|
69 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 72, "completion_tokens": 0, "total_tokens": 72}
|
70 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 297, "completion_tokens": 0, "total_tokens": 297}
|
71 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 13260, "completion_tokens": 0, "total_tokens": 13260}
|
72 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 13745, "completion_tokens": 0, "total_tokens": 13745}
|
73 |
+
{"model": "gpt-4", "provider": "OpenaiChat", "prompt_tokens": 3402, "completion_tokens": 0, "total_tokens": 3402}
|
74 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 14245, "completion_tokens": 0, "total_tokens": 14245}
|
75 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 15020, "completion_tokens": 0, "total_tokens": 15020}
|
76 |
+
{"provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 24841, "completion_tokens": 0, "total_tokens": 24841}
|
77 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 26594, "completion_tokens": 0, "total_tokens": 26594}
|
78 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 28011, "completion_tokens": 0, "total_tokens": 28011}
|
79 |
+
{"model": "phi-4-multimodal", "provider": "Phi_4"}
|
80 |
+
{"model": "phi-4-multimodal", "provider": "Phi_4"}
|
81 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
82 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
83 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 24, "completion_tokens": 0, "total_tokens": 24}
|
84 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 1779, "completion_tokens": 0, "total_tokens": 1779}
|
85 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 86, "completion_tokens": 322, "total_tokens": 408}
|
86 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 12134, "completion_tokens": 0, "total_tokens": 12134}
|
87 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 117, "completion_tokens": 452, "total_tokens": 569}
|
88 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 12646, "completion_tokens": 0, "total_tokens": 12646}
|
89 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 13659, "completion_tokens": 0, "total_tokens": 13659}
|
90 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 174, "completion_tokens": 161, "total_tokens": 335}
|
91 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 15, "completion_tokens": 0, "total_tokens": 15}
|
92 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 3816, "completion_tokens": 0, "total_tokens": 3816}
|
93 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 6426, "completion_tokens": 0, "total_tokens": 6426}
|
94 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 7436, "completion_tokens": 0, "total_tokens": 7436}
|
95 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 360, "completion_tokens": 0, "total_tokens": 360}
|
96 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
97 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 503, "completion_tokens": 0, "total_tokens": 503}
|
98 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 503, "completion_tokens": 0, "total_tokens": 503}
|
99 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 580, "completion_tokens": 0, "total_tokens": 580}
|
100 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 775, "completion_tokens": 264, "total_tokens": 1039}
|
101 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 1043, "completion_tokens": 195, "total_tokens": 1238}
|
102 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 8475, "completion_tokens": 0, "total_tokens": 8475}
|
103 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 9338, "completion_tokens": 0, "total_tokens": 9338}
|
104 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 10363, "completion_tokens": 0, "total_tokens": 10363}
|
105 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 1344, "completion_tokens": 189, "total_tokens": 1533}
|
106 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 11380, "completion_tokens": 0, "total_tokens": 11380}
|
107 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 1621, "completion_tokens": 319, "total_tokens": 1940}
|
108 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 1881, "completion_tokens": 276, "total_tokens": 2157}
|
109 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 2196, "completion_tokens": 222, "total_tokens": 2418}
|
110 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 2504, "completion_tokens": 372, "total_tokens": 2876}
|
111 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 2750, "completion_tokens": 295, "total_tokens": 3045}
|
112 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 1881, "completion_tokens": 276, "total_tokens": 2157}
|
113 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 1881, "completion_tokens": 276, "total_tokens": 2157}
|
114 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 1881, "completion_tokens": 276, "total_tokens": 2157}
|
115 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 99, "completion_tokens": 294, "total_tokens": 393}
|
116 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 316, "completion_tokens": 439, "total_tokens": 755}
|
117 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 316, "completion_tokens": 439, "total_tokens": 755}
|
118 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 841, "completion_tokens": 330, "total_tokens": 1171}
|
119 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 1123, "completion_tokens": 229, "total_tokens": 1352}
|
120 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 1421, "completion_tokens": 224, "total_tokens": 1645}
|
121 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 1696, "completion_tokens": 299, "total_tokens": 1995}
|
122 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 1961, "completion_tokens": 243, "total_tokens": 2204}
|
123 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 2284, "completion_tokens": 304, "total_tokens": 2588}
|
124 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 2644, "completion_tokens": 182, "total_tokens": 2826}
|
125 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 2941, "completion_tokens": 338, "total_tokens": 3279}
|
126 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 32, "completion_tokens": 203, "total_tokens": 235}
|
127 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 45, "completion_tokens": 152, "total_tokens": 197}
|
128 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 109, "completion_tokens": 435, "total_tokens": 544}
|
129 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 190, "completion_tokens": 226, "total_tokens": 416}
|
130 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 190, "completion_tokens": 226, "total_tokens": 416}
|
131 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 399, "completion_tokens": 204, "total_tokens": 603}
|
132 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 94, "completion_tokens": 0, "total_tokens": 94}
|
133 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 976, "completion_tokens": 0, "total_tokens": 976}
|
134 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 1221, "completion_tokens": 448, "total_tokens": 1669}
|
135 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 1140, "completion_tokens": 164, "total_tokens": 1304}
|
136 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 1133, "completion_tokens": 251, "total_tokens": 1384}
|
137 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 2357, "completion_tokens": 0, "total_tokens": 2357}
|
138 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 1133, "completion_tokens": 346, "total_tokens": 1479}
|
139 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 1308, "completion_tokens": 374, "total_tokens": 1682}
|
140 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 790, "completion_tokens": 408, "total_tokens": 1198}
|
141 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 960, "completion_tokens": 489, "total_tokens": 1449}
|
142 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 1497, "completion_tokens": 0, "total_tokens": 1497}
|
usage/2025-03-10.jsonl
ADDED
@@ -0,0 +1,319 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "grok-3", "provider": "Liaobots", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
2 |
+
{"model": "grok-3", "provider": "Liaobots", "prompt_tokens": 13, "completion_tokens": 33, "total_tokens": 46}
|
3 |
+
{"model": "grok-3", "provider": "Liaobots", "prompt_tokens": 13, "completion_tokens": 41, "total_tokens": 54}
|
4 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 13, "completion_tokens": 34, "total_tokens": 47}
|
5 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DDG", "prompt_tokens": 13, "completion_tokens": 38, "total_tokens": 51}
|
6 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 13, "completion_tokens": 27, "total_tokens": 40}
|
7 |
+
{"model": "mistralai/Mistral-Small-24B-Instruct-2501", "provider": "DDG", "prompt_tokens": 13, "completion_tokens": 59, "total_tokens": 72}
|
8 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 13, "completion_tokens": 30, "total_tokens": 43}
|
9 |
+
{"model": "glm-4", "provider": "ChatGLM", "prompt_tokens": 13, "completion_tokens": 38, "total_tokens": 51}
|
10 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 13, "completion_tokens": 47, "total_tokens": 60}
|
11 |
+
{"model": "@cf/deepseek-ai/deepseek-r1-distill-qwen-32b", "provider": "Cloudflare", "prompt_tokens": 13, "completion_tokens": 216, "total_tokens": 229}
|
12 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 13, "completion_tokens": 19, "total_tokens": 32}
|
13 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 13, "completion_tokens": 31, "total_tokens": 44}
|
14 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 13, "completion_tokens": 34, "total_tokens": 47}
|
15 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 13, "completion_tokens": 43, "total_tokens": 56}
|
16 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 13, "completion_tokens": 60, "total_tokens": 73}
|
17 |
+
{"model": "r1-1776", "provider": "PerplexityLabs", "prompt_tokens": 13, "completion_tokens": 547, "total_tokens": 560}
|
18 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 13, "completion_tokens": 202, "total_tokens": 215}
|
19 |
+
{"provider": "Gemini", "prompt_tokens": 13, "completion_tokens": 25, "total_tokens": 38}
|
20 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini", "prompt_tokens": 13, "completion_tokens": 160, "total_tokens": 173}
|
21 |
+
{"model": "gemini-2.0-flash", "provider": "Gemini", "prompt_tokens": 13, "completion_tokens": 26, "total_tokens": 39}
|
22 |
+
{"model": "gemini-2.0-flash-thinking", "provider": "Gemini", "prompt_tokens": 13, "completion_tokens": 461, "total_tokens": 474}
|
23 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 13, "completion_tokens": 22, "total_tokens": 35}
|
24 |
+
{"model": "auto", "provider": "OpenaiAccount", "prompt_tokens": 13, "completion_tokens": 148, "total_tokens": 161}
|
25 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat", "prompt_tokens": 9, "completion_tokens": 0, "total_tokens": 9}
|
26 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat", "prompt_tokens": 354, "completion_tokens": 0, "total_tokens": 354}
|
27 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat", "prompt_tokens": 372, "completion_tokens": 0, "total_tokens": 372}
|
28 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat", "prompt_tokens": 390, "completion_tokens": 0, "total_tokens": 390}
|
29 |
+
{"model": "llama-scaleway", "provider": "PollinationsAI", "prompt_tokens": 439, "total_tokens": 456, "completion_tokens": 17, "prompt_tokens_details": null}
|
30 |
+
{"model": "llama-scaleway", "provider": "PollinationsAI", "prompt_tokens": 439, "total_tokens": 469, "completion_tokens": 30, "prompt_tokens_details": null}
|
31 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 13, "completion_tokens": 217, "total_tokens": 230}
|
32 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 13, "completion_tokens": 217, "total_tokens": 230}
|
33 |
+
{"model": "mistralai/Mistral-7B-Instruct-v0.3", "provider": "HuggingFace", "prompt_tokens": 13, "completion_tokens": 86, "total_tokens": 99}
|
34 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 1248, "completion_tokens": 0, "total_tokens": 1248}
|
35 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 4679, "completion_tokens": 0, "total_tokens": 4679}
|
36 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 1302, "completion_tokens": 0, "total_tokens": 1302}
|
37 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 3731, "completion_tokens": 0, "total_tokens": 3731}
|
38 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 1302, "completion_tokens": 0, "total_tokens": 1302}
|
39 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 1618, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5702, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 7320}
|
40 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 1306, "completion_tokens": 0, "total_tokens": 1306}
|
41 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 124, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 189, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 313}
|
42 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 84, "completion_tokens_details": {"reasoning_tokens": 64}, "prompt_tokens": 9, "prompt_tokens_details": {"cached_tokens": 0}, "total_tokens": 93}
|
43 |
+
{"model": "hormoz", "provider": "PollinationsAI", "prompt_tokens": 194, "total_tokens": 348, "completion_tokens": 154}
|
44 |
+
{"model": "hormoz", "provider": "PollinationsAI", "prompt_tokens": 358, "total_tokens": 498, "completion_tokens": 140}
|
45 |
+
{"model": "hormoz", "provider": "PollinationsAI", "prompt_tokens": 507, "total_tokens": 671, "completion_tokens": 164}
|
46 |
+
{"model": "hormoz", "provider": "PollinationsAI", "prompt_tokens": 680, "total_tokens": 835, "completion_tokens": 155}
|
47 |
+
{"model": "hormoz", "provider": "PollinationsAI", "prompt_tokens": 198, "total_tokens": 381, "completion_tokens": 183}
|
48 |
+
{"model": "llama", "provider": "PollinationsAI", "prompt_tokens": 66, "completion_tokens": 256, "total_tokens": 322}
|
49 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 1536, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 44, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1580}
|
50 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 27, "completion_tokens": 0, "total_tokens": 27}
|
51 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 358, "completion_tokens": 0, "total_tokens": 358}
|
52 |
+
{"model": "deepseek-v3", "provider": "DeepInfraChat", "prompt_tokens": 7, "total_tokens": 382, "completion_tokens": 375, "estimated_cost": 0.00033717999999999997}
|
53 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 47, "completion_tokens": 0, "total_tokens": 47}
|
54 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1369, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1055, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2424}
|
55 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 31, "completion_tokens": 19, "total_tokens": 50}
|
56 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 58, "completion_tokens": 36, "total_tokens": 94}
|
57 |
+
{"model": "sd-3.5", "provider": "HuggingFace", "prompt_tokens": 130, "completion_tokens": 0, "total_tokens": 130}
|
58 |
+
{"model": "qwq-32b", "provider": "HuggingFace", "prompt_tokens": 141, "completion_tokens": 345, "total_tokens": 486}
|
59 |
+
{"model": "qwq-32b", "provider": "HuggingFace", "prompt_tokens": 9, "completion_tokens": 644, "total_tokens": 653}
|
60 |
+
{"model": "qwq-32b", "provider": "HuggingFace", "prompt_tokens": 43, "completion_tokens": 430, "total_tokens": 473}
|
61 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
62 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 27, "completion_tokens": 0, "total_tokens": 27}
|
63 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
64 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct", "provider": "HuggingChat", "prompt_tokens": 23, "completion_tokens": 0, "total_tokens": 23}
|
65 |
+
{"model": "deepseek-r1", "provider": "DeepSeekAPI", "prompt_tokens": 41, "completion_tokens": 1484, "total_tokens": 1525}
|
66 |
+
{"model": "qwq-32b", "provider": "HuggingFace", "prompt_tokens": 41, "completion_tokens": 0, "total_tokens": 41}
|
67 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 41, "completion_tokens": 1204, "total_tokens": 1245}
|
68 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 16, "completion_tokens": 0, "total_tokens": 16}
|
69 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 16, "completion_tokens": 0, "total_tokens": 16}
|
70 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 16, "completion_tokens": 0, "total_tokens": 16}
|
71 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 16, "completion_tokens": 0, "total_tokens": 16}
|
72 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 31, "completion_tokens": 0, "total_tokens": 31}
|
73 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 31, "completion_tokens": 0, "total_tokens": 31}
|
74 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 31, "completion_tokens": 0, "total_tokens": 31}
|
75 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 61, "completion_tokens": 0, "total_tokens": 61}
|
76 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 61, "completion_tokens": 0, "total_tokens": 61}
|
77 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 61, "completion_tokens": 0, "total_tokens": 61}
|
78 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 61, "completion_tokens": 0, "total_tokens": 61}
|
79 |
+
{"model": "flux-schnell", "provider": "PollinationsAI", "prompt_tokens": 61, "completion_tokens": 0, "total_tokens": 61}
|
80 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 61, "completion_tokens": 0, "total_tokens": 61}
|
81 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 91, "completion_tokens": 0, "total_tokens": 91}
|
82 |
+
{"model": "llama", "provider": "PollinationsAI", "prompt_tokens": 66, "completion_tokens": 256, "total_tokens": 322}
|
83 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
84 |
+
{"model": "command-r", "provider": "HuggingSpace"}
|
85 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 15, "completion_tokens": 0, "total_tokens": 15}
|
86 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 12, "completion_tokens": 0, "total_tokens": 12}
|
87 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 12, "completion_tokens": 0, "total_tokens": 12}
|
88 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 26, "completion_tokens": 0, "total_tokens": 26}
|
89 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 40, "completion_tokens": 0, "total_tokens": 40}
|
90 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 12, "completion_tokens": 0, "total_tokens": 12}
|
91 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 12, "completion_tokens": 0, "total_tokens": 12}
|
92 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 12, "completion_tokens": 0, "total_tokens": 12}
|
93 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 26, "completion_tokens": 0, "total_tokens": 26}
|
94 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 40, "completion_tokens": 0, "total_tokens": 40}
|
95 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 70, "completion_tokens": 0, "total_tokens": 70}
|
96 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 100, "completion_tokens": 0, "total_tokens": 100}
|
97 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 114, "completion_tokens": 0, "total_tokens": 114}
|
98 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 14, "completion_tokens": 0, "total_tokens": 14}
|
99 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 14, "completion_tokens": 0, "total_tokens": 14}
|
100 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 28, "completion_tokens": 0, "total_tokens": 28}
|
101 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 42, "completion_tokens": 0, "total_tokens": 42}
|
102 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 64, "completion_tokens": 0, "total_tokens": 64}
|
103 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 64, "completion_tokens": 0, "total_tokens": 64}
|
104 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 64, "completion_tokens": 0, "total_tokens": 64}
|
105 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 64, "completion_tokens": 0, "total_tokens": 64}
|
106 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 64, "completion_tokens": 0, "total_tokens": 64}
|
107 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 64, "completion_tokens": 0, "total_tokens": 64}
|
108 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 74, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 55, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 129}
|
109 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 25, "completion_tokens": 0, "total_tokens": 25}
|
110 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 51, "completion_tokens": 0, "total_tokens": 51}
|
111 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 214, "completion_tokens": 0, "total_tokens": 214}
|
112 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 78, "completion_tokens": 0, "total_tokens": 78}
|
113 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 105, "completion_tokens": 0, "total_tokens": 105}
|
114 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 127, "completion_tokens": 0, "total_tokens": 127}
|
115 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 149, "completion_tokens": 0, "total_tokens": 149}
|
116 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 20, "completion_tokens": 0, "total_tokens": 20}
|
117 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1082, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 584, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1666}
|
118 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 2460, "completion_tokens": 0, "total_tokens": 2460}
|
119 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct", "provider": "HuggingChat", "prompt_tokens": 21, "completion_tokens": 0, "total_tokens": 21}
|
120 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingChat"}
|
121 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat"}
|
122 |
+
{"model": "flux", "provider": "G4F"}
|
123 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 37, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 47}
|
124 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 37, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 62, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 99}
|
125 |
+
{"model": "searchgpt", "provider": "PollinationsAI", "completion_tokens": 36, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 171, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 207}
|
126 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 67, "completion_tokens": 73, "total_tokens": 140}
|
127 |
+
{"model": "flux-dev", "provider": "PollinationsAI"}
|
128 |
+
{"model": "deepseek-v3", "provider": "DeepSeekAPI"}
|
129 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
130 |
+
{"model": "auto", "provider": "OpenaiChat"}
|
131 |
+
{"model": "o1-preview", "provider": "OpenaiChat"}
|
132 |
+
{"model": "o1", "provider": "OpenaiChat"}
|
133 |
+
{"model": "o3-mini-high", "provider": "OpenaiChat"}
|
134 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat"}
|
135 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat"}
|
136 |
+
{"model": "gpt-4", "provider": "OpenaiChat"}
|
137 |
+
{"model": "gpt-4o-mini", "provider": "OpenaiChat"}
|
138 |
+
{"model": "o1", "provider": "OpenaiChat"}
|
139 |
+
{"model": "flux", "provider": "G4F"}
|
140 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 9, "completion_tokens": 0, "total_tokens": 9}
|
141 |
+
{"model": "llama-3.3-70b", "provider": "HuggingFace", "prompt_tokens": 9, "completion_tokens": 0, "total_tokens": 9}
|
142 |
+
{"model": "llama-3.2-11b", "provider": "HuggingChat", "prompt_tokens": 9, "completion_tokens": 0, "total_tokens": 9}
|
143 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 9, "completion_tokens": 1, "total_tokens": 10}
|
144 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 9, "completion_tokens": 0, "total_tokens": 9}
|
145 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 9, "completion_tokens": 0, "total_tokens": 9}
|
146 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 9, "completion_tokens": 0, "total_tokens": 9}
|
147 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 145, "completion_tokens": 0, "total_tokens": 145}
|
148 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 145, "completion_tokens": 0, "total_tokens": 145}
|
149 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 145, "completion_tokens": 0, "total_tokens": 145}
|
150 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 4142, "completion_tokens": 0, "total_tokens": 4142}
|
151 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 5811, "completion_tokens": 0, "total_tokens": 5811}
|
152 |
+
{"model": "deepseek-r1", "provider": "DeepSeekAPI", "prompt_tokens": 12, "completion_tokens": 1506, "total_tokens": 1518}
|
153 |
+
{"model": "o1-preview", "provider": "OpenaiChat", "prompt_tokens": 45, "completion_tokens": 0, "total_tokens": 45}
|
154 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 59, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 111, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 170}
|
155 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 114, "completion_tokens": 256, "total_tokens": 370}
|
156 |
+
{"model": "flux-schnell", "provider": "PollinationsImage", "prompt_tokens": 1174, "completion_tokens": 0, "total_tokens": 1174}
|
157 |
+
{"model": "flux-schnell", "provider": "HuggingSpace", "prompt_tokens": 1185, "completion_tokens": 0, "total_tokens": 1185}
|
158 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1233, "completion_tokens": 0, "total_tokens": 1233}
|
159 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 2028, "completion_tokens": 0, "total_tokens": 2028}
|
160 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 274, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 69, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 343}
|
161 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 2664, "completion_tokens": 0, "total_tokens": 2664}
|
162 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 340, "completion_tokens": 0, "total_tokens": 340}
|
163 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 14, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 252, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 266}
|
164 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 420, "completion_tokens": 0, "total_tokens": 420}
|
165 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 14, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 252, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 266}
|
166 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 13, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 252, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 265}
|
167 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 420, "completion_tokens": 0, "total_tokens": 420}
|
168 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 530, "completion_tokens": 0, "total_tokens": 530}
|
169 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 346, "completion_tokens": 0, "total_tokens": 346}
|
170 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 831, "completion_tokens": 0, "total_tokens": 831}
|
171 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct", "provider": "HuggingChat", "prompt_tokens": 101, "completion_tokens": 0, "total_tokens": 101}
|
172 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct", "provider": "HuggingChat", "prompt_tokens": 101, "completion_tokens": 0, "total_tokens": 101}
|
173 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B", "provider": "HuggingFace", "prompt_tokens": 101, "completion_tokens": 1, "total_tokens": 102}
|
174 |
+
{"model": "mistralai/Mistral-7B-Instruct-v0.3", "provider": "HuggingFace", "prompt_tokens": 101, "completion_tokens": 0, "total_tokens": 101}
|
175 |
+
{"model": "meta-llama/Meta-Llama-3-8B-Instruct", "provider": "HuggingFace", "prompt_tokens": 101, "completion_tokens": 0, "total_tokens": 101}
|
176 |
+
{"model": "openai-community/gpt2", "provider": "HuggingFace", "prompt_tokens": 101, "completion_tokens": 0, "total_tokens": 101}
|
177 |
+
{"model": "microsoft/Phi-3.5-mini-instruct", "provider": "HuggingFace", "prompt_tokens": 101, "completion_tokens": 0, "total_tokens": 101}
|
178 |
+
{"model": "stabilityai/stable-diffusion-xl-base-1.0", "provider": "HuggingFace", "prompt_tokens": 101, "completion_tokens": 0, "total_tokens": 101}
|
179 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace", "prompt_tokens": 101, "completion_tokens": 0, "total_tokens": 101}
|
180 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingFace", "prompt_tokens": 101, "completion_tokens": 145, "total_tokens": 246}
|
181 |
+
{"model": "mistralai/Mistral-Nemo-Instruct-2407", "provider": "HuggingFace", "prompt_tokens": 101, "completion_tokens": 0, "total_tokens": 101}
|
182 |
+
{"model": "phi-4-multimodal", "provider": "HuggingSpace", "prompt_tokens": 13, "completion_tokens": 4, "total_tokens": 17}
|
183 |
+
{"model": "sd-3.5", "provider": "HuggingSpace", "prompt_tokens": 13, "completion_tokens": 212, "total_tokens": 225}
|
184 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 154, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 25539, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 25693}
|
185 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 3542, "completion_tokens": 0, "total_tokens": 3542}
|
186 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 699, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3188, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3887}
|
187 |
+
{"model": "searchgpt", "provider": "PollinationsAI", "completion_tokens": 37, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 147, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 184}
|
188 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingChat", "prompt_tokens": 26, "completion_tokens": 1198, "total_tokens": 1224}
|
189 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 208, "completion_tokens": 22, "total_tokens": 230}
|
190 |
+
{"model": "auto", "provider": "OpenaiChat", "prompt_tokens": 208, "completion_tokens": 38, "total_tokens": 246}
|
191 |
+
{"model": "command-r", "provider": "HuggingSpace", "prompt_tokens": 8, "completion_tokens": 9, "total_tokens": 17}
|
192 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 355, "completion_tokens": 0, "total_tokens": 355}
|
193 |
+
{"model": "auto", "provider": "OpenaiAccount", "prompt_tokens": 13, "completion_tokens": 266, "total_tokens": 279}
|
194 |
+
{"provider": "Gemini"}
|
195 |
+
{"model": "gpt-4o-mini", "provider": "OpenaiChat"}
|
196 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat"}
|
197 |
+
{"model": "gpt-4", "provider": "OpenaiChat"}
|
198 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 83, "completion_tokens": 256, "total_tokens": 339}
|
199 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 4672, "completion_tokens": 0, "total_tokens": 4672}
|
200 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 5679, "completion_tokens": 0, "total_tokens": 5679}
|
201 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 6684, "completion_tokens": 0, "total_tokens": 6684}
|
202 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 30, "completion_tokens": 90, "total_tokens": 120}
|
203 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 165, "completion_tokens": 83, "total_tokens": 248}
|
204 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 348, "completion_tokens": 0, "total_tokens": 348}
|
205 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "Qwen_Qwen_2_72B_Instruct", "prompt_tokens": 125, "completion_tokens": 0, "total_tokens": 125}
|
206 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 44, "completion_tokens": 1168, "total_tokens": 1212}
|
207 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 1227, "completion_tokens": 1419, "total_tokens": 2646}
|
208 |
+
{"model": "mistral-7b", "provider": "Free2GPT", "prompt_tokens": 37654, "completion_tokens": 744, "total_tokens": 38398}
|
209 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 26, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 36}
|
210 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 4223, "completion_tokens": 795, "total_tokens": 5018}
|
211 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1275, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 70, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1345}
|
212 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 4223, "completion_tokens": 787, "total_tokens": 5010}
|
213 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 6625, "completion_tokens": 796, "total_tokens": 7421}
|
214 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 7441, "completion_tokens": 841, "total_tokens": 8282}
|
215 |
+
{"model": "gpt-4.5", "provider": "OpenaiChat", "prompt_tokens": 201, "completion_tokens": 1448, "total_tokens": 1649}
|
216 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 8294, "completion_tokens": 847, "total_tokens": 9141}
|
217 |
+
{"model": "o3-mini", "provider": "OpenaiChat", "prompt_tokens": 102, "completion_tokens": 2603, "total_tokens": 2705}
|
218 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 9153, "completion_tokens": 805, "total_tokens": 9958}
|
219 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 9970, "completion_tokens": 720, "total_tokens": 10690}
|
220 |
+
{"model": "o1", "provider": "OpenaiChat", "prompt_tokens": 102, "completion_tokens": 1665, "total_tokens": 1767}
|
221 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 156, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1362, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1518}
|
222 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 164, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1531, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1695}
|
223 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 14052, "completion_tokens": 351, "total_tokens": 14403}
|
224 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 11, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2613, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 1536}, "total_tokens": 2624}
|
225 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 87, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2658, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 2432}, "total_tokens": 2745}
|
226 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 14, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2764, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2778}
|
227 |
+
{"model": "deepseek-v3", "provider": "DeepSeekAPI", "prompt_tokens": 4659, "completion_tokens": 8, "total_tokens": 4667}
|
228 |
+
{"model": "mistral-7b", "provider": "Free2GPT", "prompt_tokens": 38539, "completion_tokens": 4222, "total_tokens": 42761}
|
229 |
+
{"model": "deepseek-v3", "provider": "DeepSeekAPI", "prompt_tokens": 4684, "completion_tokens": 148, "total_tokens": 4832}
|
230 |
+
{"model": "o1", "provider": "OpenaiChat", "prompt_tokens": 3899, "completion_tokens": 1753, "total_tokens": 5652}
|
231 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 17859, "completion_tokens": 554, "total_tokens": 18413}
|
232 |
+
{"model": "mistral-7b", "provider": "Free2GPT", "prompt_tokens": 42272, "completion_tokens": 2731, "total_tokens": 45003}
|
233 |
+
{"model": "mistral-7b", "provider": "Free2GPT", "prompt_tokens": 44499, "completion_tokens": 1738, "total_tokens": 46237}
|
234 |
+
{"model": "mistral-7b", "provider": "Free2GPT", "prompt_tokens": 46239, "completion_tokens": 2069, "total_tokens": 48308}
|
235 |
+
{"model": "mistral-7b", "provider": "Free2GPT", "prompt_tokens": 47930, "completion_tokens": 163, "total_tokens": 48093}
|
236 |
+
{"model": "mistral-7b", "provider": "Free2GPT", "prompt_tokens": 48462, "completion_tokens": 1616, "total_tokens": 50078}
|
237 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 22022, "completion_tokens": 735, "total_tokens": 22757}
|
238 |
+
{"model": "o1", "provider": "OpenaiChat", "prompt_tokens": 6074, "completion_tokens": 1692, "total_tokens": 7766}
|
239 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 26325, "completion_tokens": 745, "total_tokens": 27070}
|
240 |
+
{"model": "mistral-7b", "provider": "Free2GPT", "prompt_tokens": 49795, "completion_tokens": 2012, "total_tokens": 51807}
|
241 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 30773, "completion_tokens": 430, "total_tokens": 31203}
|
242 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 31369, "completion_tokens": 903, "total_tokens": 32272}
|
243 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 32284, "completion_tokens": 869, "total_tokens": 33153}
|
244 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 32284, "completion_tokens": 872, "total_tokens": 33156}
|
245 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 34052, "completion_tokens": 872, "total_tokens": 34924}
|
246 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 34947, "completion_tokens": 446, "total_tokens": 35393}
|
247 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 45298, "completion_tokens": 839, "total_tokens": 46137}
|
248 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 46197, "completion_tokens": 663, "total_tokens": 46860}
|
249 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 57731, "completion_tokens": 983, "total_tokens": 58714}
|
250 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 58737, "completion_tokens": 868, "total_tokens": 59605}
|
251 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 70272, "completion_tokens": 890, "total_tokens": 71162}
|
252 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 71174, "completion_tokens": 895, "total_tokens": 72069}
|
253 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
254 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "HuggingSpace", "prompt_tokens": 37, "completion_tokens": 0, "total_tokens": 37}
|
255 |
+
{"model": "llama", "provider": "PollinationsAI", "prompt_tokens": 40, "completion_tokens": 42, "total_tokens": 82}
|
256 |
+
{"model": "llama-scaleway", "provider": "PollinationsAI", "prompt_tokens": 94, "total_tokens": 136, "completion_tokens": 42, "prompt_tokens_details": null}
|
257 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 185, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 144, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 329}
|
258 |
+
{"model": "CohereForAI/c4ai-command-r-plus-08-2024", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 0, "total_tokens": 8}
|
259 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 30, "completion_tokens": 64, "total_tokens": 94}
|
260 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 9, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 20, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 29}
|
261 |
+
{"model": "o1-mini", "provider": "PollinationsAI", "completion_tokens": 85, "completion_tokens_details": {"reasoning_tokens": 64}, "prompt_tokens": 9, "prompt_tokens_details": {"cached_tokens": 0}, "total_tokens": 94}
|
262 |
+
{"model": "chat-llama-3-1-70b", "provider": "Glider", "prompt_tokens": 8, "completion_tokens": 8, "total_tokens": 16}
|
263 |
+
{"model": "phi", "provider": "PollinationsAI", "prompt_tokens": 28, "total_tokens": 38, "completion_tokens": 10, "audio_prompt_tokens": 0, "image_prompt_tokens": 0, "prompt_tokens_details": null}
|
264 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 973, "completion_tokens": 109, "total_tokens": 1082}
|
265 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 1091, "completion_tokens": 13, "total_tokens": 1104}
|
266 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 2703, "completion_tokens": 776, "total_tokens": 3479}
|
267 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 2703, "completion_tokens": 676, "total_tokens": 3379}
|
268 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 4168, "completion_tokens": 826, "total_tokens": 4994}
|
269 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 10, "total_tokens": 18}
|
270 |
+
{"model": "deepseek-v3", "provider": "DeepInfraChat", "prompt_tokens": 2720, "total_tokens": 2973, "completion_tokens": 253, "estimated_cost": 0.00155797}
|
271 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 5006, "completion_tokens": 9, "total_tokens": 5015}
|
272 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 32, "completion_tokens": 1222, "total_tokens": 1254}
|
273 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 1060, "completion_tokens": 522, "total_tokens": 1582}
|
274 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 1509, "completion_tokens": 62, "total_tokens": 1571}
|
275 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 5006, "completion_tokens": 518, "total_tokens": 5524}
|
276 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 1569, "completion_tokens": 2823, "total_tokens": 4392}
|
277 |
+
{"model": "gemini-2.0", "provider": "PollinationsAI", "prompt_tokens": 1581, "completion_tokens": 607, "total_tokens": 2188}
|
278 |
+
{"model": "deepseek-r1-llama", "provider": "PollinationsAI", "prompt_tokens": 1666, "total_tokens": 2077, "completion_tokens": 411, "prompt_tokens_details": null}
|
279 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 5068, "completion_tokens": 256, "total_tokens": 5324}
|
280 |
+
{"model": "flux", "provider": "HuggingSpace", "prompt_tokens": 8, "completion_tokens": 158, "total_tokens": 166}
|
281 |
+
{"model": "flux", "provider": "Blackbox", "prompt_tokens": 25, "completion_tokens": 9, "total_tokens": 34}
|
282 |
+
{"model": "flux", "provider": "HuggingSpace", "prompt_tokens": 51, "completion_tokens": 219, "total_tokens": 270}
|
283 |
+
{"model": "flux", "provider": "PollinationsImage", "prompt_tokens": 86, "completion_tokens": 265, "total_tokens": 351}
|
284 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 139, "completion_tokens": 279, "total_tokens": 418}
|
285 |
+
{"model": "flux", "provider": "HuggingSpace", "prompt_tokens": 150, "completion_tokens": 200, "total_tokens": 350}
|
286 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 22, "completion_tokens": 265, "total_tokens": 287}
|
287 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 22, "completion_tokens": 263, "total_tokens": 285}
|
288 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 22, "completion_tokens": 269, "total_tokens": 291}
|
289 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 22, "completion_tokens": 263, "total_tokens": 285}
|
290 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 22, "completion_tokens": 265, "total_tokens": 287}
|
291 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 51, "completion_tokens": 314, "total_tokens": 365}
|
292 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 80, "completion_tokens": 316, "total_tokens": 396}
|
293 |
+
{"model": "stabilityai/stable-diffusion-xl-base-1.0", "provider": "HuggingFace", "prompt_tokens": 58, "completion_tokens": 204, "total_tokens": 262}
|
294 |
+
{"model": "stabilityai/stable-diffusion-xl-base-1.0", "provider": "HuggingFace", "prompt_tokens": 58, "completion_tokens": 200, "total_tokens": 258}
|
295 |
+
{"model": "stabilityai/stable-diffusion-3.5-large", "provider": "HuggingFace", "prompt_tokens": 58, "completion_tokens": 200, "total_tokens": 258}
|
296 |
+
{"model": "stabilityai/stable-diffusion-3.5-large", "provider": "HuggingFace", "prompt_tokens": 58, "completion_tokens": 208, "total_tokens": 266}
|
297 |
+
{"model": "stabilityai/stable-diffusion-xl-base-1.0", "provider": "HuggingFace", "prompt_tokens": 27, "completion_tokens": 112, "total_tokens": 139}
|
298 |
+
{"model": "stabilityai/stable-diffusion-xl-base-1.0", "provider": "HuggingFace", "prompt_tokens": 27, "completion_tokens": 116, "total_tokens": 143}
|
299 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace", "prompt_tokens": 27, "completion_tokens": 3768, "total_tokens": 3795}
|
300 |
+
{"model": "stabilityai/stable-diffusion-3.5-large", "provider": "HuggingFace", "prompt_tokens": 27, "completion_tokens": 118, "total_tokens": 145}
|
301 |
+
{"model": "stabilityai/stable-diffusion-xl-base-1.0", "provider": "HuggingFace", "prompt_tokens": 27, "completion_tokens": 114, "total_tokens": 141}
|
302 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 27, "completion_tokens": 152, "total_tokens": 179}
|
303 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 191, "completion_tokens": 1616, "total_tokens": 1807}
|
304 |
+
{"model": "stabilityai/stable-diffusion-3.5-large", "provider": "HuggingFace", "prompt_tokens": 75, "completion_tokens": 174, "total_tokens": 249}
|
305 |
+
{"model": "stabilityai/stable-diffusion-xl-base-1.0", "provider": "HuggingFace", "prompt_tokens": 75, "completion_tokens": 168, "total_tokens": 243}
|
306 |
+
{"model": "stabilityai/stable-diffusion-3.5-large", "provider": "HuggingFace", "prompt_tokens": 75, "completion_tokens": 176, "total_tokens": 251}
|
307 |
+
{"model": "stabilityai/stable-diffusion-3.5-large", "provider": "HuggingFace", "prompt_tokens": 75, "completion_tokens": 172, "total_tokens": 247}
|
308 |
+
{"model": "stabilityai/stable-diffusion-xl-base-1.0", "provider": "HuggingFace", "prompt_tokens": 75, "completion_tokens": 170, "total_tokens": 245}
|
309 |
+
{"model": "strangerzonehf/Flux-Midjourney-Mix2-LoRA", "provider": "HuggingFace", "prompt_tokens": 27, "completion_tokens": 118, "total_tokens": 145}
|
310 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace", "prompt_tokens": 27, "completion_tokens": 3756, "total_tokens": 3783}
|
311 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 27, "completion_tokens": 314, "total_tokens": 341}
|
312 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 56, "completion_tokens": 310, "total_tokens": 366}
|
313 |
+
{"model": "stabilityai/stable-diffusion-xl-base-1.0", "provider": "HuggingFace", "prompt_tokens": 85, "completion_tokens": 112, "total_tokens": 197}
|
314 |
+
{"model": "stabilityai/stable-diffusion-xl-base-1.0", "provider": "HuggingFace", "prompt_tokens": 18, "completion_tokens": 99, "total_tokens": 117}
|
315 |
+
{"model": "stabilityai/stable-diffusion-3.5-large", "provider": "HuggingFace", "prompt_tokens": 18, "completion_tokens": 93, "total_tokens": 111}
|
316 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 18, "completion_tokens": 271, "total_tokens": 289}
|
317 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 16, "completion_tokens": 235, "total_tokens": 251}
|
318 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 20, "completion_tokens": 277, "total_tokens": 297}
|
319 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 20, "completion_tokens": 287, "total_tokens": 307}
|
usage/2025-03-11.jsonl
ADDED
@@ -0,0 +1,378 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 28, "completion_tokens": 24, "total_tokens": 52}
|
2 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 63, "completion_tokens": 22, "total_tokens": 85}
|
3 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 96, "completion_tokens": 20, "total_tokens": 116}
|
4 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 130, "completion_tokens": 25, "total_tokens": 155}
|
5 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 166, "completion_tokens": 29, "total_tokens": 195}
|
6 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 209, "completion_tokens": 99, "total_tokens": 308}
|
7 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 321, "completion_tokens": 43, "total_tokens": 364}
|
8 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 373, "completion_tokens": 30, "total_tokens": 403}
|
9 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 373, "completion_tokens": 30, "total_tokens": 403}
|
10 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 373, "completion_tokens": 27, "total_tokens": 400}
|
11 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 373, "completion_tokens": 30, "total_tokens": 403}
|
12 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 373, "completion_tokens": 27, "total_tokens": 400}
|
13 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 414, "completion_tokens": 37, "total_tokens": 451}
|
14 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 464, "completion_tokens": 27, "total_tokens": 491}
|
15 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 505, "completion_tokens": 13, "total_tokens": 518}
|
16 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 38, "completion_tokens": 116, "total_tokens": 154}
|
17 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 38, "completion_tokens": 1114, "total_tokens": 1152}
|
18 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 21, "completion_tokens": 214, "total_tokens": 235}
|
19 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 31, "completion_tokens": 250, "total_tokens": 281}
|
20 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 63, "completion_tokens": 239, "total_tokens": 302}
|
21 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 97, "completion_tokens": 257, "total_tokens": 354}
|
22 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 38, "completion_tokens": 43, "total_tokens": 81}
|
23 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 11, "completion_tokens": 21, "total_tokens": 32}
|
24 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 72, "completion_tokens": 889, "total_tokens": 961}
|
25 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 974, "completion_tokens": 860, "total_tokens": 1834}
|
26 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 1869, "completion_tokens": 862, "total_tokens": 2731}
|
27 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 20798, "completion_tokens": 848, "total_tokens": 21646}
|
28 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 21659, "completion_tokens": 823, "total_tokens": 22482}
|
29 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 22495, "completion_tokens": 840, "total_tokens": 23335}
|
30 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 23348, "completion_tokens": 869, "total_tokens": 24217}
|
31 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 24230, "completion_tokens": 835, "total_tokens": 25065}
|
32 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 25078, "completion_tokens": 810, "total_tokens": 25888}
|
33 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 25901, "completion_tokens": 879, "total_tokens": 26780}
|
34 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 26793, "completion_tokens": 877, "total_tokens": 27670}
|
35 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 27683, "completion_tokens": 879, "total_tokens": 28562}
|
36 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 28575, "completion_tokens": 825, "total_tokens": 29400}
|
37 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 29483, "completion_tokens": 828, "total_tokens": 30311}
|
38 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 30351, "completion_tokens": 812, "total_tokens": 31163}
|
39 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 31176, "completion_tokens": 833, "total_tokens": 32009}
|
40 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 32022, "completion_tokens": 897, "total_tokens": 32919}
|
41 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 32932, "completion_tokens": 838, "total_tokens": 33770}
|
42 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 33783, "completion_tokens": 882, "total_tokens": 34665}
|
43 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 34678, "completion_tokens": 752, "total_tokens": 35430}
|
44 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 36567, "completion_tokens": 335, "total_tokens": 36902}
|
45 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 36943, "completion_tokens": 968, "total_tokens": 37911}
|
46 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 37935, "completion_tokens": 810, "total_tokens": 38745}
|
47 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 38929, "completion_tokens": 832, "total_tokens": 39761}
|
48 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 39765, "completion_tokens": 878, "total_tokens": 40643}
|
49 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 40833, "completion_tokens": 825, "total_tokens": 41658}
|
50 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 41671, "completion_tokens": 898, "total_tokens": 42569}
|
51 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 60151, "completion_tokens": 393, "total_tokens": 60544}
|
52 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 60697, "completion_tokens": 850, "total_tokens": 61547}
|
53 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 462, "total_tokens": 484, "completion_tokens": 22, "prompt_tokens_details": null}
|
54 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 490, "total_tokens": 530, "completion_tokens": 40, "prompt_tokens_details": null}
|
55 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 558, "total_tokens": 587, "completion_tokens": 29, "prompt_tokens_details": null}
|
56 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 558, "total_tokens": 585, "completion_tokens": 27, "prompt_tokens_details": null}
|
57 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 558, "total_tokens": 601, "completion_tokens": 43, "prompt_tokens_details": null}
|
58 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 61591, "completion_tokens": 873, "total_tokens": 62464}
|
59 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 62524, "completion_tokens": 853, "total_tokens": 63377}
|
60 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 63419, "completion_tokens": 878, "total_tokens": 64297}
|
61 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 81887, "completion_tokens": 904, "total_tokens": 82791}
|
62 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 610, "total_tokens": 659, "completion_tokens": 49, "prompt_tokens_details": null}
|
63 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 82804, "completion_tokens": 853, "total_tokens": 83657}
|
64 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 83670, "completion_tokens": 840, "total_tokens": 84510}
|
65 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 84523, "completion_tokens": 834, "total_tokens": 85357}
|
66 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 85370, "completion_tokens": 790, "total_tokens": 86160}
|
67 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 108608, "completion_tokens": 853, "total_tokens": 109461}
|
68 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 109474, "completion_tokens": 788, "total_tokens": 110262}
|
69 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 110275, "completion_tokens": 813, "total_tokens": 111088}
|
70 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 19, "completion_tokens": 302, "total_tokens": 321}
|
71 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 111101, "completion_tokens": 803, "total_tokens": 111904}
|
72 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 111917, "completion_tokens": 781, "total_tokens": 112698}
|
73 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 112711, "completion_tokens": 891, "total_tokens": 113602}
|
74 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 11, "completion_tokens": 21, "total_tokens": 32}
|
75 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 70, "completion_tokens": 290, "total_tokens": 360}
|
76 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 21193, "completion_tokens": 892, "total_tokens": 22085}
|
77 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 22098, "completion_tokens": 821, "total_tokens": 22919}
|
78 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 22932, "completion_tokens": 858, "total_tokens": 23790}
|
79 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 23803, "completion_tokens": 865, "total_tokens": 24668}
|
80 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 24681, "completion_tokens": 861, "total_tokens": 25542}
|
81 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 25555, "completion_tokens": 815, "total_tokens": 26370}
|
82 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 26383, "completion_tokens": 821, "total_tokens": 27204}
|
83 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 27208, "completion_tokens": 828, "total_tokens": 28036}
|
84 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 28040, "completion_tokens": 813, "total_tokens": 28853}
|
85 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 28857, "completion_tokens": 801, "total_tokens": 29658}
|
86 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 29671, "completion_tokens": 808, "total_tokens": 30479}
|
87 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 30483, "completion_tokens": 792, "total_tokens": 31275}
|
88 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 31279, "completion_tokens": 871, "total_tokens": 32150}
|
89 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 32239, "completion_tokens": 469, "total_tokens": 32708}
|
90 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 32727, "completion_tokens": 879, "total_tokens": 33606}
|
91 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 33788, "completion_tokens": 706, "total_tokens": 34494}
|
92 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 34548, "completion_tokens": 850, "total_tokens": 35398}
|
93 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 35402, "completion_tokens": 831, "total_tokens": 36233}
|
94 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 36246, "completion_tokens": 772, "total_tokens": 37018}
|
95 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 37022, "completion_tokens": 748, "total_tokens": 37770}
|
96 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 37783, "completion_tokens": 797, "total_tokens": 38580}
|
97 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 38605, "completion_tokens": 822, "total_tokens": 39427}
|
98 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 39431, "completion_tokens": 813, "total_tokens": 40244}
|
99 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 40248, "completion_tokens": 767, "total_tokens": 41015}
|
100 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 41019, "completion_tokens": 723, "total_tokens": 41742}
|
101 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 41746, "completion_tokens": 862, "total_tokens": 42608}
|
102 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 42742, "completion_tokens": 837, "total_tokens": 43579}
|
103 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 43583, "completion_tokens": 788, "total_tokens": 44371}
|
104 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 44384, "completion_tokens": 832, "total_tokens": 45216}
|
105 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 45229, "completion_tokens": 868, "total_tokens": 46097}
|
106 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 46160, "completion_tokens": 905, "total_tokens": 47065}
|
107 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 47078, "completion_tokens": 841, "total_tokens": 47919}
|
108 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 47932, "completion_tokens": 816, "total_tokens": 48748}
|
109 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 48761, "completion_tokens": 880, "total_tokens": 49641}
|
110 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 42, "completion_tokens": 465, "total_tokens": 507}
|
111 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 42, "completion_tokens": 465, "total_tokens": 507}
|
112 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 49725, "completion_tokens": 883, "total_tokens": 50608}
|
113 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 50612, "completion_tokens": 841, "total_tokens": 51453}
|
114 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 51457, "completion_tokens": 814, "total_tokens": 52271}
|
115 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 52275, "completion_tokens": 864, "total_tokens": 53139}
|
116 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 53214, "completion_tokens": 847, "total_tokens": 54061}
|
117 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 54065, "completion_tokens": 833, "total_tokens": 54898}
|
118 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 54902, "completion_tokens": 839, "total_tokens": 55741}
|
119 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 55754, "completion_tokens": 815, "total_tokens": 56569}
|
120 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 56615, "completion_tokens": 889, "total_tokens": 57504}
|
121 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 57508, "completion_tokens": 823, "total_tokens": 58331}
|
122 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 58335, "completion_tokens": 828, "total_tokens": 59163}
|
123 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 59167, "completion_tokens": 892, "total_tokens": 60059}
|
124 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 60072, "completion_tokens": 831, "total_tokens": 60903}
|
125 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 18, "completion_tokens": 282, "total_tokens": 300}
|
126 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 319, "completion_tokens": 328, "total_tokens": 647}
|
127 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 671, "completion_tokens": 412, "total_tokens": 1083}
|
128 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 60916, "completion_tokens": 867, "total_tokens": 61783}
|
129 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 61796, "completion_tokens": 876, "total_tokens": 62672}
|
130 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 62685, "completion_tokens": 810, "total_tokens": 63495}
|
131 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 85511, "completion_tokens": 925, "total_tokens": 86436}
|
132 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 86440, "completion_tokens": 804, "total_tokens": 87244}
|
133 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 87248, "completion_tokens": 824, "total_tokens": 88072}
|
134 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 88076, "completion_tokens": 908, "total_tokens": 88984}
|
135 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 88997, "completion_tokens": 888, "total_tokens": 89885}
|
136 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 89995, "completion_tokens": 844, "total_tokens": 90839}
|
137 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 90852, "completion_tokens": 845, "total_tokens": 91697}
|
138 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 91718, "completion_tokens": 988, "total_tokens": 92706}
|
139 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 92797, "completion_tokens": 877, "total_tokens": 93674}
|
140 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 93678, "completion_tokens": 842, "total_tokens": 94520}
|
141 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 94533, "completion_tokens": 830, "total_tokens": 95363}
|
142 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 95376, "completion_tokens": 792, "total_tokens": 96168}
|
143 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 96181, "completion_tokens": 811, "total_tokens": 96992}
|
144 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 698, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 30, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 728}
|
145 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 97005, "completion_tokens": 891, "total_tokens": 97896}
|
146 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 97909, "completion_tokens": 608, "total_tokens": 98517}
|
147 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 880, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 746, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1626}
|
148 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1464, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1661, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3125}
|
149 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 18, "completion_tokens": 0, "total_tokens": 18}
|
150 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 13, "completion_tokens": 190, "total_tokens": 203}
|
151 |
+
{"model": "sd-3.5", "provider": "HuggingSpace", "prompt_tokens": 28, "completion_tokens": 210, "total_tokens": 238}
|
152 |
+
{"model": "turbo", "provider": "PollinationsAI", "prompt_tokens": 53, "completion_tokens": 246, "total_tokens": 299}
|
153 |
+
{"model": "turbo", "provider": "PollinationsAI", "prompt_tokens": 64, "completion_tokens": 156, "total_tokens": 220}
|
154 |
+
{"model": "turbo", "provider": "PollinationsAI", "prompt_tokens": 75, "completion_tokens": 152, "total_tokens": 227}
|
155 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 16, "completion_tokens": 362, "total_tokens": 378}
|
156 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 21, "completion_tokens": 0, "total_tokens": 21}
|
157 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 21, "completion_tokens": 0, "total_tokens": 21}
|
158 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 98549, "completion_tokens": 872, "total_tokens": 99421}
|
159 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1499, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 405, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1904}
|
160 |
+
{"model": "turbo", "provider": "PollinationsAI", "prompt_tokens": 88, "completion_tokens": 172, "total_tokens": 260}
|
161 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 99434, "completion_tokens": 855, "total_tokens": 100289}
|
162 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 100302, "completion_tokens": 797, "total_tokens": 101099}
|
163 |
+
{"model": "turbo", "provider": "PollinationsAI", "prompt_tokens": 102, "completion_tokens": 183, "total_tokens": 285}
|
164 |
+
{"model": "deepseek-v3", "provider": "DeepInfraChat", "prompt_tokens": 15, "total_tokens": 802, "completion_tokens": 787, "estimated_cost": 0.00070778}
|
165 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 101112, "completion_tokens": 879, "total_tokens": 101991}
|
166 |
+
{"model": "turbo", "provider": "PollinationsAI", "prompt_tokens": 119, "completion_tokens": 272, "total_tokens": 391}
|
167 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 102004, "completion_tokens": 866, "total_tokens": 102870}
|
168 |
+
{"model": "deepseek-v3", "provider": "DeepInfraChat", "prompt_tokens": 810, "total_tokens": 1630, "completion_tokens": 820, "estimated_cost": 0.0011267}
|
169 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 102925, "completion_tokens": 866, "total_tokens": 103791}
|
170 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 103804, "completion_tokens": 889, "total_tokens": 104693}
|
171 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 133, "completion_tokens": 181, "total_tokens": 314}
|
172 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 143, "completion_tokens": 149, "total_tokens": 292}
|
173 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 154, "completion_tokens": 150, "total_tokens": 304}
|
174 |
+
{"model": "openai-audio", "provider": "PollinationsAI", "prompt_tokens": 164, "completion_tokens": 9, "total_tokens": 173}
|
175 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 104706, "completion_tokens": 870, "total_tokens": 105576}
|
176 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 182, "completion_tokens": 155, "total_tokens": 337}
|
177 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 112726, "completion_tokens": 923, "total_tokens": 113649}
|
178 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 113662, "completion_tokens": 889, "total_tokens": 114551}
|
179 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 114583, "completion_tokens": 875, "total_tokens": 115458}
|
180 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 115462, "completion_tokens": 847, "total_tokens": 116309}
|
181 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 384, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3155, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3539}
|
182 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 116313, "completion_tokens": 791, "total_tokens": 117104}
|
183 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 117108, "completion_tokens": 789, "total_tokens": 117897}
|
184 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 117901, "completion_tokens": 872, "total_tokens": 118773}
|
185 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 118777, "completion_tokens": 883, "total_tokens": 119660}
|
186 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 119664, "completion_tokens": 855, "total_tokens": 120519}
|
187 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 120523, "completion_tokens": 871, "total_tokens": 121394}
|
188 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 157, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3555, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3712}
|
189 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 121398, "completion_tokens": 851, "total_tokens": 122249}
|
190 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 122253, "completion_tokens": 852, "total_tokens": 123105}
|
191 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 123109, "completion_tokens": 891, "total_tokens": 124000}
|
192 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 124004, "completion_tokens": 875, "total_tokens": 124879}
|
193 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 124883, "completion_tokens": 880, "total_tokens": 125763}
|
194 |
+
{"model": "flux-schnell", "provider": "PollinationsImage", "prompt_tokens": 12, "completion_tokens": 195, "total_tokens": 207}
|
195 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 125767, "completion_tokens": 631, "total_tokens": 126398}
|
196 |
+
{"model": "flux-schnell", "provider": "HuggingSpace", "prompt_tokens": 140, "completion_tokens": 351, "total_tokens": 491}
|
197 |
+
{"model": "flux-schnell", "provider": "HuggingSpace", "prompt_tokens": 140, "completion_tokens": 331, "total_tokens": 471}
|
198 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 5698, "completion_tokens": 554, "total_tokens": 6252}
|
199 |
+
{"model": "sd-3.5", "provider": "HuggingSpace", "prompt_tokens": 514, "completion_tokens": 611, "total_tokens": 1125}
|
200 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 661, "completion_tokens": 12, "total_tokens": 673}
|
201 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 112, "completion_tokens": 28, "total_tokens": 140}
|
202 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 10763, "completion_tokens": 824, "total_tokens": 11587}
|
203 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 11599, "completion_tokens": 839, "total_tokens": 12438}
|
204 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 14, "completion_tokens": 207, "total_tokens": 221}
|
205 |
+
{"model": "midijourney", "provider": "PollinationsAI", "completion_tokens": 47, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1188, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1235}
|
206 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 93, "completion_tokens": 213, "total_tokens": 306}
|
207 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 30, "completion_tokens": 328, "total_tokens": 358}
|
208 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 32, "completion_tokens": 322, "total_tokens": 354}
|
209 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 20, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 30}
|
210 |
+
{"model": "claude-3-haiku", "provider": "DDG"}
|
211 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 20, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 30}
|
212 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 370, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 42, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 412}
|
213 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 120, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 425, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 545}
|
214 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 197, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 561, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 758}
|
215 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 137, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 773, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 910}
|
216 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 851, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4323, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 5174}
|
217 |
+
{"model": "TinyLlama/TinyLlama-1.1B-Chat-v1.0", "provider": "HuggingFace", "prompt_tokens": 142, "completion_tokens": 130, "total_tokens": 272}
|
218 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 215, "completion_tokens": 355, "total_tokens": 570}
|
219 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 17, "completion_tokens": 3794, "total_tokens": 3811}
|
220 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 18, "completion_tokens": 112, "total_tokens": 130}
|
221 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 65, "completion_tokens": 43, "total_tokens": 108}
|
222 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 45, "completion_tokens": 185, "total_tokens": 230}
|
223 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 92, "completion_tokens": 304, "total_tokens": 396}
|
224 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 3703, "completion_tokens": 63, "total_tokens": 3766}
|
225 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 3781, "completion_tokens": 29, "total_tokens": 3810}
|
226 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 3801, "completion_tokens": 29, "total_tokens": 3830}
|
227 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 3752, "completion_tokens": 118, "total_tokens": 3870}
|
228 |
+
{"model": "command-r", "provider": "HuggingSpace", "prompt_tokens": 3773, "completion_tokens": 143, "total_tokens": 3916}
|
229 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 1197, "completion_tokens": 924, "total_tokens": 2121}
|
230 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 23, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3969, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3992}
|
231 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 34, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4008, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 4042}
|
232 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 633, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 7571, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 8204}
|
233 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 723, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 8224, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 8947}
|
234 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 780, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 8224, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 9004}
|
235 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 953, "completion_tokens": 0, "total_tokens": 953}
|
236 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 626, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 21521, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 22147}
|
237 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 179, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 15611, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 15790}
|
238 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 21, "completion_tokens": 626, "total_tokens": 647}
|
239 |
+
{"model": "qvq-72b", "provider": "HuggingSpace", "prompt_tokens": 21, "completion_tokens": 54, "total_tokens": 75}
|
240 |
+
{"model": "qvq-72b", "provider": "HuggingSpace", "prompt_tokens": 11, "completion_tokens": 18, "total_tokens": 29}
|
241 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 521, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 17276, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 17797}
|
242 |
+
{"model": "gpt-4o-mini", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 134, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 144}
|
243 |
+
{"model": "gpt-4o-mini", "provider": "PollinationsAI", "completion_tokens": 70, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 25656, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 25726}
|
244 |
+
{"model": "gpt-4o-mini", "provider": "PollinationsAI", "completion_tokens": 50, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 155, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 205}
|
245 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 8, "completion_tokens": 115, "total_tokens": 123}
|
246 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 170, "completion_tokens": 160, "total_tokens": 330}
|
247 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 152, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 17080, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 17232}
|
248 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 8, "completion_tokens": 220, "total_tokens": 228}
|
249 |
+
{"model": "gpt-4", "provider": "DDG", "prompt_tokens": 413, "completion_tokens": 440, "total_tokens": 853}
|
250 |
+
{"model": "stabilityai-stable-diffusion-3-5-large", "provider": "StableDiffusion35Large", "prompt_tokens": 3540, "completion_tokens": 0, "total_tokens": 3540}
|
251 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 4104, "completion_tokens": 0, "total_tokens": 4104}
|
252 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 4404, "completion_tokens": 0, "total_tokens": 4404}
|
253 |
+
{"model": "ImageGeneration", "provider": "Blackbox", "prompt_tokens": 4580, "completion_tokens": 0, "total_tokens": 4580}
|
254 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 4827, "completion_tokens": 0, "total_tokens": 4827}
|
255 |
+
{"model": "flux", "provider": "Blackbox", "prompt_tokens": 5073, "completion_tokens": 0, "total_tokens": 5073}
|
256 |
+
{"model": "flux", "provider": "HuggingSpace", "prompt_tokens": 5361, "completion_tokens": 0, "total_tokens": 5361}
|
257 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 8, "completion_tokens": 83, "total_tokens": 91}
|
258 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 8, "completion_tokens": 57, "total_tokens": 65}
|
259 |
+
{"model": "sd-3.5", "provider": "HuggingFace", "prompt_tokens": 43, "completion_tokens": 174, "total_tokens": 217}
|
260 |
+
{"model": "gpt-4", "provider": "Yqcloud", "prompt_tokens": 8, "completion_tokens": 14, "total_tokens": 22}
|
261 |
+
{"model": "sd-3.5", "provider": "HuggingFace", "prompt_tokens": 258, "completion_tokens": 174, "total_tokens": 432}
|
262 |
+
{"model": "flux-schnell", "provider": "HuggingFace", "prompt_tokens": 405, "completion_tokens": 3836, "total_tokens": 4241}
|
263 |
+
{"model": "flux-schnell", "provider": "HuggingFace", "prompt_tokens": 488, "completion_tokens": 3894, "total_tokens": 4382}
|
264 |
+
{"model": "flux-schnell", "provider": "HuggingFace", "prompt_tokens": 582, "completion_tokens": 3849, "total_tokens": 4431}
|
265 |
+
{"model": "llama", "provider": "PollinationsAI", "prompt_tokens": 9, "completion_tokens": 11, "total_tokens": 20}
|
266 |
+
{"model": "llama", "provider": "PollinationsAI", "prompt_tokens": 9, "completion_tokens": 27, "total_tokens": 36}
|
267 |
+
{"model": "llama", "provider": "PollinationsAI", "prompt_tokens": 9, "completion_tokens": 27, "total_tokens": 36}
|
268 |
+
{"model": "llama", "provider": "PollinationsAI", "prompt_tokens": 41, "completion_tokens": 25, "total_tokens": 66}
|
269 |
+
{"model": "flux", "provider": "HuggingSpace", "prompt_tokens": 967, "completion_tokens": 0, "total_tokens": 967}
|
270 |
+
{"model": "gpt-4", "provider": "Yqcloud", "prompt_tokens": 967, "completion_tokens": 0, "total_tokens": 967}
|
271 |
+
{"model": "gpt-4", "provider": "Yqcloud", "prompt_tokens": 1303, "completion_tokens": 0, "total_tokens": 1303}
|
272 |
+
{"model": "llama", "provider": "PollinationsAI", "prompt_tokens": 41, "completion_tokens": 25, "total_tokens": 66}
|
273 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 13, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 26, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 39}
|
274 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 11, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 21, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 32}
|
275 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 40, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 50, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 90}
|
276 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 841, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 112, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 953}
|
277 |
+
{"model": "llama", "provider": "PollinationsAI", "prompt_tokens": 41, "completion_tokens": 25, "total_tokens": 66}
|
278 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 89, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 967, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1056}
|
279 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 459, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1101, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1560}
|
280 |
+
{"model": "gpt-4", "provider": "DDG", "prompt_tokens": 1917, "completion_tokens": 0, "total_tokens": 1917}
|
281 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 125, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1577, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1702}
|
282 |
+
{"model": "llama", "provider": "PollinationsAI", "prompt_tokens": 17, "completion_tokens": 23, "total_tokens": 40}
|
283 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 416, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1716, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 1408}, "total_tokens": 2132}
|
284 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 85, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2148, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 1536}, "total_tokens": 2233}
|
285 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 162, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2263, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 1920}, "total_tokens": 2425}
|
286 |
+
{"model": "flux-schnell", "provider": "HuggingFace", "prompt_tokens": 582, "completion_tokens": 3851, "total_tokens": 4433}
|
287 |
+
{"model": "flux-schnell", "provider": "HuggingFace", "prompt_tokens": 703, "completion_tokens": 3894, "total_tokens": 4597}
|
288 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 152, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2457, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2609}
|
289 |
+
{"model": "gpt-4", "provider": "DDG", "prompt_tokens": 2631, "completion_tokens": 0, "total_tokens": 2631}
|
290 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 102, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2623, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 2432}, "total_tokens": 2725}
|
291 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 88, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2736, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2824}
|
292 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 544, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2866, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3410}
|
293 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 189, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3427, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3616}
|
294 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 96, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3630, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3726}
|
295 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 110, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3744, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3854}
|
296 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 143, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3866, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 4009}
|
297 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 144, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4023, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 2560}, "total_tokens": 4167}
|
298 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 174, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4188, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 4362}
|
299 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 292, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4390, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 3712}, "total_tokens": 4682}
|
300 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 288, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4697, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 4985}
|
301 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 85, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5002, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 4864}, "total_tokens": 5087}
|
302 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 183, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5126, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 5309}
|
303 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 97, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5324, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 5421}
|
304 |
+
{"model": "phi", "provider": "PollinationsAI"}
|
305 |
+
{"model": "sur-mistral", "provider": "PollinationsAI"}
|
306 |
+
{"model": "llama", "provider": "PollinationsAI"}
|
307 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 31, "completion_tokens": 495, "total_tokens": 526}
|
308 |
+
{"model": "flux", "provider": "ARTA"}
|
309 |
+
{"model": "anima_pencil_xl", "provider": "ARTA"}
|
310 |
+
{"model": "embroidery_tattoo", "provider": "ARTA"}
|
311 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 14, "completion_tokens": 21, "total_tokens": 35}
|
312 |
+
{"model": "flux-schnell", "provider": "G4F", "prompt_tokens": 14, "completion_tokens": 171, "total_tokens": 185}
|
313 |
+
{"model": "midijourney", "provider": "PollinationsAI", "completion_tokens": 44, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1272, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1316}
|
314 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 278, "completion_tokens": 1068, "total_tokens": 1346}
|
315 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 395, "completion_tokens": 1066, "total_tokens": 1461}
|
316 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 512, "completion_tokens": 1066, "total_tokens": 1578}
|
317 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 629, "completion_tokens": 1066, "total_tokens": 1695}
|
318 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 769, "completion_tokens": 1239, "total_tokens": 2008}
|
319 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 786, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 766, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1552}
|
320 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 211, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1576, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1787}
|
321 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 232, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1803, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2035}
|
322 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 3326, "completion_tokens": 244, "total_tokens": 3570}
|
323 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 3637, "completion_tokens": 1186, "total_tokens": 4823}
|
324 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 4133, "completion_tokens": 85, "total_tokens": 4218}
|
325 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 4311, "completion_tokens": 2040, "total_tokens": 6351}
|
326 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 92, "completion_tokens": 1337, "total_tokens": 1429}
|
327 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 92, "completion_tokens": 1365, "total_tokens": 1457}
|
328 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 13, "total_tokens": 21}
|
329 |
+
{"model": "gpt-4", "provider": "Copilot", "prompt_tokens": 28681, "completion_tokens": 0, "total_tokens": 28681}
|
330 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "completion_tokens": 759, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 28016, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 28775}
|
331 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "completion_tokens": 758, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 28016, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 28774}
|
332 |
+
{"model": "gpt-4", "provider": "Copilot", "prompt_tokens": 29157, "completion_tokens": 0, "total_tokens": 29157}
|
333 |
+
{"model": "gpt-4", "provider": "Copilot", "prompt_tokens": 29668, "completion_tokens": 0, "total_tokens": 29668}
|
334 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "completion_tokens": 750, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 29797, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 30547}
|
335 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 10, "completion_tokens": 0, "total_tokens": 10}
|
336 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 1367, "completion_tokens": 0, "total_tokens": 1367}
|
337 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 1367, "completion_tokens": 0, "total_tokens": 1367}
|
338 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 1367, "completion_tokens": 0, "total_tokens": 1367}
|
339 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 1415, "completion_tokens": 0, "total_tokens": 1415}
|
340 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 1465, "completion_tokens": 0, "total_tokens": 1465}
|
341 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 1521, "completion_tokens": 0, "total_tokens": 1521}
|
342 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 1587, "completion_tokens": 0, "total_tokens": 1587}
|
343 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 1587, "completion_tokens": 0, "total_tokens": 1587}
|
344 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 1587, "completion_tokens": 0, "total_tokens": 1587}
|
345 |
+
{"model": "sd-3.5", "provider": "HuggingSpace", "prompt_tokens": 1587, "completion_tokens": 0, "total_tokens": 1587}
|
346 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 9833, "completion_tokens": 1234, "total_tokens": 11067}
|
347 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 9833, "completion_tokens": 1234, "total_tokens": 11067}
|
348 |
+
{"model": "o1", "provider": "Blackbox", "prompt_tokens": 2515, "completion_tokens": 1571, "total_tokens": 4086}
|
349 |
+
{"model": "o1", "provider": "Blackbox", "prompt_tokens": 5308, "completion_tokens": 631, "total_tokens": 5939}
|
350 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 13980, "completion_tokens": 1769, "total_tokens": 15749}
|
351 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 15790, "completion_tokens": 851, "total_tokens": 16641}
|
352 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 5027, "completion_tokens": 2240, "total_tokens": 7267}
|
353 |
+
{"model": "gpt-4", "provider": "DDG", "prompt_tokens": 7321, "completion_tokens": 1131, "total_tokens": 8452}
|
354 |
+
{"model": "gpt-4", "provider": "ChatGptEs", "prompt_tokens": 8489, "completion_tokens": 1161, "total_tokens": 9650}
|
355 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 8489, "completion_tokens": 1160, "total_tokens": 9649}
|
356 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Llama-70B", "provider": "HuggingFaceAPI", "prompt_tokens": 13, "completion_tokens": 13, "total_tokens": 26}
|
357 |
+
{"model": "perplexity-ai/r1-1776", "provider": "HuggingFaceAPI", "prompt_tokens": 8, "total_tokens": 134, "completion_tokens": 126}
|
358 |
+
{"model": "perplexity-ai/r1-1776", "provider": "HuggingFaceAPI", "prompt_tokens": 8, "total_tokens": 199, "completion_tokens": 191}
|
359 |
+
{"model": "HuggingFaceH4/zephyr-7b-alpha", "provider": "HuggingFaceAPI", "prompt_tokens": 8, "completion_tokens": 52, "total_tokens": 60}
|
360 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFaceAPI", "prompt_tokens": 11, "total_tokens": 83, "completion_tokens": 72}
|
361 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 57, "total_tokens": 65}
|
362 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 73, "completion_tokens": 132, "total_tokens": 205}
|
363 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 121, "completion_tokens": 251, "total_tokens": 372}
|
364 |
+
{"model": "Sao10K/L3-70B-Euryale-v2.1", "provider": "HuggingFaceAPI", "prompt_tokens": 11, "completion_tokens": 18, "total_tokens": 29, "prompt_tokens_details": null, "completion_tokens_details": null}
|
365 |
+
{"model": "microsoft/Phi-3-medium-128k-instruct", "provider": "HuggingFaceAPI", "prompt_tokens": 8, "completion_tokens": 9, "total_tokens": 17}
|
366 |
+
{"model": "google/gemma-2-27b-it", "provider": "HuggingFaceAPI", "prompt_tokens": 8, "completion_tokens": 12, "total_tokens": 20}
|
367 |
+
{"model": "tokyotech-llm/Llama-3.1-Swallow-8B-Instruct-v0.3", "provider": "HuggingFaceAPI", "prompt_tokens": 8, "completion_tokens": 14, "total_tokens": 22}
|
368 |
+
{"model": "perplexity-ai/r1-1776", "provider": "HuggingFaceAPI", "prompt_tokens": 6, "total_tokens": 100, "completion_tokens": 94}
|
369 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 38, "completion_tokens": 263, "total_tokens": 301}
|
370 |
+
{"model": "sd-3.5", "provider": "HuggingFace", "prompt_tokens": 40, "completion_tokens": 72, "total_tokens": 112}
|
371 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 17, "completion_tokens": 210, "total_tokens": 227}
|
372 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 17, "completion_tokens": 212, "total_tokens": 229}
|
373 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 17, "completion_tokens": 210, "total_tokens": 227}
|
374 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 17, "completion_tokens": 214, "total_tokens": 231}
|
375 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 17, "completion_tokens": 212, "total_tokens": 229}
|
376 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 17, "completion_tokens": 218, "total_tokens": 235}
|
377 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 21, "completion_tokens": 1170, "total_tokens": 1191}
|
378 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 5023, "completion_tokens": 1265, "total_tokens": 6288}
|
usage/2025-03-12.jsonl
ADDED
@@ -0,0 +1,204 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 24, "completion_tokens": 187, "total_tokens": 211}
|
2 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 34, "completion_tokens": 28, "total_tokens": 62}
|
3 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 71, "completion_tokens": 1, "total_tokens": 72}
|
4 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 1120, "completion_tokens": 8, "total_tokens": 1128}
|
5 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 1139, "completion_tokens": 27, "total_tokens": 1166}
|
6 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 1178, "completion_tokens": 10, "total_tokens": 1188}
|
7 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 1198, "completion_tokens": 15, "total_tokens": 1213}
|
8 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 1224, "completion_tokens": 529, "total_tokens": 1753}
|
9 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 1769, "completion_tokens": 9, "total_tokens": 1778}
|
10 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 1769, "completion_tokens": 59, "total_tokens": 1828}
|
11 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 1769, "completion_tokens": 9, "total_tokens": 1778}
|
12 |
+
{"model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "provider": "HuggingFace", "prompt_tokens": 1794, "completion_tokens": 10, "total_tokens": 1804}
|
13 |
+
{"model": "gemini-1.5-pro", "provider": "Free2GPT", "prompt_tokens": 11, "completion_tokens": 11, "total_tokens": 22}
|
14 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 18, "completion_tokens": 75, "total_tokens": 93}
|
15 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 13, "completion_tokens": 20, "total_tokens": 33}
|
16 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 73, "completion_tokens": 263, "total_tokens": 336}
|
17 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 19497, "completion_tokens": 815, "total_tokens": 20312}
|
18 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 20325, "completion_tokens": 769, "total_tokens": 21094}
|
19 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 21098, "completion_tokens": 818, "total_tokens": 21916}
|
20 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 21929, "completion_tokens": 723, "total_tokens": 22652}
|
21 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 22665, "completion_tokens": 724, "total_tokens": 23389}
|
22 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 23402, "completion_tokens": 803, "total_tokens": 24205}
|
23 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 24218, "completion_tokens": 819, "total_tokens": 25037}
|
24 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 25050, "completion_tokens": 844, "total_tokens": 25894}
|
25 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 25907, "completion_tokens": 806, "total_tokens": 26713}
|
26 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 26726, "completion_tokens": 792, "total_tokens": 27518}
|
27 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 27531, "completion_tokens": 881, "total_tokens": 28412}
|
28 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 28425, "completion_tokens": 839, "total_tokens": 29264}
|
29 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 29277, "completion_tokens": 796, "total_tokens": 30073}
|
30 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 30086, "completion_tokens": 825, "total_tokens": 30911}
|
31 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 30924, "completion_tokens": 815, "total_tokens": 31739}
|
32 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 31743, "completion_tokens": 852, "total_tokens": 32595}
|
33 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 32608, "completion_tokens": 819, "total_tokens": 33427}
|
34 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 33440, "completion_tokens": 812, "total_tokens": 34252}
|
35 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 34265, "completion_tokens": 911, "total_tokens": 35176}
|
36 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 35198, "completion_tokens": 981, "total_tokens": 36179}
|
37 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 36209, "completion_tokens": 1081, "total_tokens": 37290}
|
38 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 46778, "completion_tokens": 1028, "total_tokens": 47806}
|
39 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 47838, "completion_tokens": 849, "total_tokens": 48687}
|
40 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 48700, "completion_tokens": 839, "total_tokens": 49539}
|
41 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 49543, "completion_tokens": 797, "total_tokens": 50340}
|
42 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 50344, "completion_tokens": 779, "total_tokens": 51123}
|
43 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 51127, "completion_tokens": 848, "total_tokens": 51975}
|
44 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 52016, "completion_tokens": 869, "total_tokens": 52885}
|
45 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 49, "completion_tokens": 109, "total_tokens": 158}
|
46 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 87511, "completion_tokens": 307, "total_tokens": 87818}
|
47 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 87838, "completion_tokens": 237, "total_tokens": 88075}
|
48 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 88099, "completion_tokens": 256, "total_tokens": 88355}
|
49 |
+
{"model": "Qwen/Qwen2.5-Coder-32B-Instruct", "provider": "HuggingFace", "prompt_tokens": 39, "completion_tokens": 16, "total_tokens": 55}
|
50 |
+
{"model": "deepseek-ai/DeepSeek-R1", "provider": "HuggingFaceAPI", "prompt_tokens": 13, "total_tokens": 29, "completion_tokens": 16}
|
51 |
+
{"model": "microsoft/phi-4", "provider": "HuggingFaceAPI"}
|
52 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 8100, "completion_tokens": 141, "total_tokens": 8241}
|
53 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 40, "completion_tokens": 33, "total_tokens": 73}
|
54 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 112, "completion_tokens": 28, "total_tokens": 140}
|
55 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 174, "completion_tokens": 111, "total_tokens": 285}
|
56 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 360, "completion_tokens": 88, "total_tokens": 448}
|
57 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 509, "completion_tokens": 81, "total_tokens": 590}
|
58 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 33, "completion_tokens": 38, "total_tokens": 71}
|
59 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 85, "completion_tokens": 2797, "total_tokens": 2882}
|
60 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 340, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 320, "rejected_prediction_tokens": 0}, "prompt_tokens": 9, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 349}
|
61 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 9, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 20, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 29}
|
62 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 190, "completion_tokens": 828, "total_tokens": 1018}
|
63 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 12, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 22, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 34}
|
64 |
+
{"model": "o1", "provider": "Blackbox", "prompt_tokens": 53, "completion_tokens": 41, "total_tokens": 94}
|
65 |
+
{"model": "gpt-4", "provider": "ChatGptEs", "prompt_tokens": 121, "completion_tokens": 42, "total_tokens": 163}
|
66 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1740, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 122, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1862}
|
67 |
+
{"model": "gemini-1.5-pro", "provider": "Free2GPT", "prompt_tokens": 223, "completion_tokens": 80, "total_tokens": 303}
|
68 |
+
{"model": "gemini-1.5-pro", "provider": "FreeGpt", "prompt_tokens": 316, "completion_tokens": 58, "total_tokens": 374}
|
69 |
+
{"model": "claude-3-haiku", "provider": "DDG", "prompt_tokens": 386, "completion_tokens": 128, "total_tokens": 514}
|
70 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 552, "completion_tokens": 376, "total_tokens": 928}
|
71 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 945, "completion_tokens": 691, "total_tokens": 1636}
|
72 |
+
{"model": "qwq-32b", "provider": "Blackbox", "prompt_tokens": 11, "completion_tokens": 0, "total_tokens": 11}
|
73 |
+
{"model": "qwq-32b", "provider": "Blackbox", "prompt_tokens": 39, "completion_tokens": 0, "total_tokens": 39}
|
74 |
+
{"model": "qwq-32b", "provider": "Blackbox", "prompt_tokens": 110, "completion_tokens": 0, "total_tokens": 110}
|
75 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 1648, "completion_tokens": 856, "total_tokens": 2504}
|
76 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 2516, "completion_tokens": 843, "total_tokens": 3359}
|
77 |
+
{"model": "qwq-32b", "provider": "Blackbox", "prompt_tokens": 696, "completion_tokens": 0, "total_tokens": 696}
|
78 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 10, "total_tokens": 90, "completion_tokens": 80, "estimated_cost": 0.00019950000000000002}
|
79 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 10, "completion_tokens": 517, "total_tokens": 527, "prompt_tokens_details": {"cached_tokens": 0}, "prompt_cache_hit_tokens": 0, "prompt_cache_miss_tokens": 10}
|
80 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 5, "total_tokens": 419, "completion_tokens": 414, "estimated_cost": 0.0009973500000000001}
|
81 |
+
{"model": "gpt-4o-mini", "provider": "ChatGptEs", "prompt_tokens": 11, "completion_tokens": 486, "total_tokens": 497}
|
82 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 540, "completion_tokens": 315, "total_tokens": 855}
|
83 |
+
{"model": "gpt-4o-mini", "provider": "ChatGptEs", "prompt_tokens": 908, "completion_tokens": 386, "total_tokens": 1294}
|
84 |
+
{"model": "gemini-1.5-pro", "provider": "FreeGpt", "prompt_tokens": 19, "completion_tokens": 546, "total_tokens": 565}
|
85 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 11, "completion_tokens": 494, "total_tokens": 505}
|
86 |
+
{"model": "chat-llama-3-1-70b", "provider": "Glider", "prompt_tokens": 565, "completion_tokens": 1041, "total_tokens": 1606}
|
87 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 15, "completion_tokens": 1024, "total_tokens": 1039}
|
88 |
+
{"model": "gpt-4", "provider": "DDG", "prompt_tokens": 10, "completion_tokens": 369, "total_tokens": 379}
|
89 |
+
{"model": "gpt-4", "provider": "ChatGptEs", "prompt_tokens": 10, "completion_tokens": 505, "total_tokens": 515}
|
90 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 15, "completion_tokens": 668, "total_tokens": 683}
|
91 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 19, "completion_tokens": 527, "total_tokens": 546}
|
92 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 815, "completion_tokens": 293, "total_tokens": 1108}
|
93 |
+
{"model": "gemini-1.5-pro", "provider": "Free2GPT", "prompt_tokens": 1234, "completion_tokens": 1016, "total_tokens": 2250}
|
94 |
+
{"model": "gemini-1.5-pro", "provider": "Free2GPT", "prompt_tokens": 14, "completion_tokens": 58, "total_tokens": 72}
|
95 |
+
{"model": "gpt-4", "provider": "DDG", "prompt_tokens": 11, "completion_tokens": 605, "total_tokens": 616}
|
96 |
+
{"model": "gpt-4o-mini", "provider": "ChatGptEs", "prompt_tokens": 9, "completion_tokens": 475, "total_tokens": 484}
|
97 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 758, "completion_tokens": 252, "total_tokens": 1010}
|
98 |
+
{"model": "gpt-4o-mini", "provider": "ChatGptEs", "prompt_tokens": 1108, "completion_tokens": 362, "total_tokens": 1470}
|
99 |
+
{"model": "gpt-4o-mini", "provider": "ChatGptEs", "prompt_tokens": 10, "completion_tokens": 317, "total_tokens": 327}
|
100 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 368, "completion_tokens": 828, "total_tokens": 1196}
|
101 |
+
{"model": "flux-pro", "provider": "PollinationsImage", "prompt_tokens": 8, "completion_tokens": 23657, "total_tokens": 23665}
|
102 |
+
{"model": "flux-pro", "provider": "PollinationsImage", "prompt_tokens": 11, "completion_tokens": 246, "total_tokens": 257}
|
103 |
+
{"model": "flux-pro", "provider": "PollinationsImage", "prompt_tokens": 21, "completion_tokens": 145, "total_tokens": 166}
|
104 |
+
{"model": "gpt-4", "provider": "DDG", "prompt_tokens": 34, "completion_tokens": 21, "total_tokens": 55}
|
105 |
+
{"model": "gpt-4", "provider": "DDG", "prompt_tokens": 66, "completion_tokens": 47, "total_tokens": 113}
|
106 |
+
{"model": "gpt-4", "provider": "Yqcloud", "prompt_tokens": 125, "completion_tokens": 81, "total_tokens": 206}
|
107 |
+
{"model": "gpt-4", "provider": "DDG", "prompt_tokens": 15, "completion_tokens": 21, "total_tokens": 36}
|
108 |
+
{"model": "flux-pro", "provider": "PollinationsImage", "prompt_tokens": 45, "completion_tokens": 151, "total_tokens": 196}
|
109 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 57, "completion_tokens": 51, "total_tokens": 108}
|
110 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 121, "completion_tokens": 80, "total_tokens": 201}
|
111 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 218, "completion_tokens": 89, "total_tokens": 307}
|
112 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 319, "completion_tokens": 10, "total_tokens": 329}
|
113 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 355, "completion_tokens": 34, "total_tokens": 389}
|
114 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 405, "completion_tokens": 10, "total_tokens": 415}
|
115 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1564, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 101, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1665}
|
116 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 1106, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 768, "rejected_prediction_tokens": 0}, "prompt_tokens": 48, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1154}
|
117 |
+
{"model": "watercolor", "provider": "ARTA"}
|
118 |
+
{"model": "f_pro", "provider": "ARTA"}
|
119 |
+
{"model": "anime_tattoo", "provider": "ARTA"}
|
120 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1649, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 316, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1965}
|
121 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 57, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 684, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 741}
|
122 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 15, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1035, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1050}
|
123 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 208, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 755, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 963}
|
124 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 447, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 984, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1431}
|
125 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 69, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 24, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 93}
|
126 |
+
{"model": "o1-mini", "provider": "PollinationsAI", "completion_tokens": 218, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 192, "rejected_prediction_tokens": 0}, "prompt_tokens": 13, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 231}
|
127 |
+
{"model": "o1-mini", "provider": "PollinationsAI", "completion_tokens": 1501, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 768, "rejected_prediction_tokens": 0}, "prompt_tokens": 140, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1641}
|
128 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 9, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 21, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 30}
|
129 |
+
{"model": "o1-mini", "provider": "PollinationsAI", "completion_tokens": 84, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 64, "rejected_prediction_tokens": 0}, "prompt_tokens": 10, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 94}
|
130 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1450, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1497, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2947}
|
131 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 38, "completion_tokens": 463, "total_tokens": 501}
|
132 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1489, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3004, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 4493}
|
133 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1572, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4515, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 6087}
|
134 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1782, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 6560, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 8342}
|
135 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1837, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 8365, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 10202}
|
136 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 297, "completion_tokens": 736, "total_tokens": 1033}
|
137 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 1567, "completion_tokens": 401, "total_tokens": 1968}
|
138 |
+
{"model": "flux-schnell", "provider": "PollinationsAI", "prompt_tokens": 19, "completion_tokens": 279, "total_tokens": 298}
|
139 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 19, "completion_tokens": 68, "total_tokens": 87}
|
140 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 23, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 27, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 50}
|
141 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 34, "completion_tokens": 453, "total_tokens": 487}
|
142 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 34, "completion_tokens": 449, "total_tokens": 483}
|
143 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 34, "completion_tokens": 447, "total_tokens": 481}
|
144 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 2206, "completion_tokens": 140, "total_tokens": 2346}
|
145 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 2436, "completion_tokens": 96, "total_tokens": 2532}
|
146 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 253, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 32, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 285}
|
147 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 222, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 348, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 570}
|
148 |
+
{"model": "openai", "provider": "PollinationsAI", "prompt_tokens": 8, "completion_tokens": 9, "total_tokens": 17}
|
149 |
+
{"model": "openai", "provider": "PollinationsAI", "prompt_tokens": 8, "completion_tokens": 9, "total_tokens": 17}
|
150 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 670, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 594, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1264}
|
151 |
+
{"model": "openai", "provider": "PollinationsAI", "prompt_tokens": 8, "completion_tokens": 9, "total_tokens": 17}
|
152 |
+
{"model": "gemini-1.5-pro", "provider": "FreeGpt", "prompt_tokens": 440, "completion_tokens": 786, "total_tokens": 1226}
|
153 |
+
{"model": "gemini-1.5-pro", "provider": "Free2GPT", "prompt_tokens": 440, "completion_tokens": 318, "total_tokens": 758}
|
154 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 1558, "completion_tokens": 678, "total_tokens": 2236}
|
155 |
+
{"model": "flux", "provider": "ARTA", "prompt_tokens": 8, "completion_tokens": 171, "total_tokens": 179}
|
156 |
+
{"model": "flux", "provider": "ARTA", "prompt_tokens": 8, "completion_tokens": 159, "total_tokens": 167}
|
157 |
+
{"model": "flux", "provider": "ARTA", "prompt_tokens": 8, "completion_tokens": 667, "total_tokens": 675}
|
158 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 19, "completion_tokens": 181, "total_tokens": 200}
|
159 |
+
{"model": "chat-llama-3-1-70b", "provider": "Glider", "prompt_tokens": 213, "completion_tokens": 594, "total_tokens": 807}
|
160 |
+
{"model": "chat-llama-3-1-70b", "provider": "Glider", "prompt_tokens": 2254, "completion_tokens": 952, "total_tokens": 3206}
|
161 |
+
{"model": "gemini-1.5-pro", "provider": "FreeGpt", "prompt_tokens": 2254, "completion_tokens": 1435, "total_tokens": 3689}
|
162 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1438, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1277, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2715}
|
163 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 31, "completion_tokens": 87, "total_tokens": 118}
|
164 |
+
{"model": "deepseek-r1-llama", "provider": "PollinationsAI", "prompt_tokens": 98, "total_tokens": 118, "completion_tokens": 20, "prompt_tokens_details": null}
|
165 |
+
{"model": "Qwen/QwQ-32B-Preview", "provider": "HuggingFace", "prompt_tokens": 37, "completion_tokens": 10, "total_tokens": 47}
|
166 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 37, "completion_tokens": 117, "total_tokens": 154}
|
167 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct", "provider": "HuggingFace", "prompt_tokens": 37, "completion_tokens": 11, "total_tokens": 48}
|
168 |
+
{"model": "openai-audio", "provider": "PollinationsAI", "prompt_tokens": 37, "completion_tokens": 10, "total_tokens": 47}
|
169 |
+
{"model": "mistral", "provider": "PollinationsAI", "prompt_tokens": 93, "total_tokens": 151, "completion_tokens": 58, "prompt_tokens_details": null}
|
170 |
+
{"model": "perplexity-ai/r1-1776", "provider": "HuggingFaceAPI", "prompt_tokens": 6, "total_tokens": 101, "completion_tokens": 95}
|
171 |
+
{"provider": "Gemini", "prompt_tokens": 8, "completion_tokens": 10, "total_tokens": 18}
|
172 |
+
{"model": "deepseek-v3", "provider": "DeepSeekAPI", "prompt_tokens": 8, "completion_tokens": 11, "total_tokens": 19}
|
173 |
+
{"model": "deepseek-v3", "provider": "DeepSeekAPI", "prompt_tokens": 9, "completion_tokens": 11, "total_tokens": 20}
|
174 |
+
{"provider": "Gemini", "prompt_tokens": 29, "completion_tokens": 12, "total_tokens": 41}
|
175 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 150, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 128, "rejected_prediction_tokens": 0}, "prompt_tokens": 82, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 232}
|
176 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 341, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 320, "rejected_prediction_tokens": 0}, "prompt_tokens": 82, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 423}
|
177 |
+
{"model": "llama", "provider": "PollinationsAI", "prompt_tokens": 87, "completion_tokens": 45, "total_tokens": 132}
|
178 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 68, "completion_tokens": 399, "total_tokens": 467}
|
179 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 31, "completion_tokens": 66, "total_tokens": 97}
|
180 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-32B", "provider": "HuggingChat", "prompt_tokens": 9, "completion_tokens": 98, "total_tokens": 107}
|
181 |
+
{"model": "perplexity-ai/r1-1776", "provider": "HuggingFaceAPI", "prompt_tokens": 7, "total_tokens": 107, "completion_tokens": 100}
|
182 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 23, "completion_tokens": 133, "total_tokens": 156}
|
183 |
+
{"model": "deepseek", "provider": "PollinationsAI", "prompt_tokens": 186, "completion_tokens": 13, "total_tokens": 199, "prompt_tokens_details": {"cached_tokens": 0}, "prompt_cache_hit_tokens": 0, "prompt_cache_miss_tokens": 186}
|
184 |
+
{"model": "deepseek", "provider": "PollinationsAI", "prompt_tokens": 204, "completion_tokens": 50, "total_tokens": 254, "prompt_tokens_details": {"cached_tokens": 192}, "prompt_cache_hit_tokens": 192, "prompt_cache_miss_tokens": 12}
|
185 |
+
{"model": "deepseek", "provider": "PollinationsAI", "prompt_tokens": 266, "completion_tokens": 107, "total_tokens": 373, "prompt_tokens_details": {"cached_tokens": 192}, "prompt_cache_hit_tokens": 192, "prompt_cache_miss_tokens": 74}
|
186 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 19, "completion_tokens": 77, "total_tokens": 96}
|
187 |
+
{"model": "qwen-2.5-coder-32b", "provider": "HuggingFace", "prompt_tokens": 36, "completion_tokens": 20, "total_tokens": 56}
|
188 |
+
{"model": "gpt-4", "provider": "DDG", "prompt_tokens": 76, "completion_tokens": 0, "total_tokens": 76}
|
189 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "completion_tokens": 267, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 419, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 686}
|
190 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 908, "completion_tokens": 499, "total_tokens": 1407, "prompt_tokens_details": {"cached_tokens": 0}, "prompt_cache_hit_tokens": 0, "prompt_cache_miss_tokens": 908}
|
191 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 2031, "completion_tokens": 0, "total_tokens": 2031}
|
192 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 2067, "completion_tokens": 0, "total_tokens": 2067}
|
193 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 2108, "completion_tokens": 0, "total_tokens": 2108}
|
194 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 2203, "completion_tokens": 0, "total_tokens": 2203}
|
195 |
+
{"model": "command-r7b", "provider": "HuggingSpace", "prompt_tokens": 18, "completion_tokens": 9, "total_tokens": 27}
|
196 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 9, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 25, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 34}
|
197 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 19, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 46, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 65}
|
198 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 74, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 84}
|
199 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1134, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3994, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 5128}
|
200 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 33, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 21, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 54}
|
201 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 1400, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4039, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 5439}
|
202 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 469, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 448, "rejected_prediction_tokens": 0}, "prompt_tokens": 4144, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 4613}
|
203 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 1338, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 576, "rejected_prediction_tokens": 0}, "prompt_tokens": 4144, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 3968}, "total_tokens": 5482}
|
204 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 4008, "completion_tokens": 831, "total_tokens": 4839}
|
usage/2025-03-13.jsonl
ADDED
@@ -0,0 +1,331 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 11, "total_tokens": 370, "completion_tokens": 359, "estimated_cost": 0.00010902}
|
2 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct", "provider": "DeepInfraChat", "prompt_tokens": 11, "total_tokens": 21, "completion_tokens": 10, "estimated_cost": 6.53e-06}
|
3 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 32, "total_tokens": 56, "completion_tokens": 24, "estimated_cost": 1.104e-05}
|
4 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 67, "total_tokens": 108, "completion_tokens": 41, "estimated_cost": 2.0340000000000002e-05}
|
5 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 120, "total_tokens": 186, "completion_tokens": 66, "estimated_cost": 3.4200000000000005e-05}
|
6 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 197, "total_tokens": 251, "completion_tokens": 54, "estimated_cost": 3.9840000000000005e-05}
|
7 |
+
{"model": "stabilityai-stable-diffusion-3-5-large", "provider": "HuggingSpace", "prompt_tokens": 13, "completion_tokens": 200, "total_tokens": 213}
|
8 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 11, "completion_tokens": 1030, "total_tokens": 1041}
|
9 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 94, "completion_tokens": 831, "total_tokens": 925}
|
10 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 938, "completion_tokens": 816, "total_tokens": 1754}
|
11 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 1792, "completion_tokens": 116, "total_tokens": 1908}
|
12 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 9755, "completion_tokens": 826, "total_tokens": 10581}
|
13 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 10585, "completion_tokens": 805, "total_tokens": 11390}
|
14 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 11394, "completion_tokens": 846, "total_tokens": 12240}
|
15 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 12244, "completion_tokens": 813, "total_tokens": 13057}
|
16 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 13061, "completion_tokens": 854, "total_tokens": 13915}
|
17 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 13919, "completion_tokens": 977, "total_tokens": 14896}
|
18 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 14900, "completion_tokens": 906, "total_tokens": 15806}
|
19 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 15819, "completion_tokens": 855, "total_tokens": 16674}
|
20 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 16687, "completion_tokens": 822, "total_tokens": 17509}
|
21 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 17522, "completion_tokens": 796, "total_tokens": 18318}
|
22 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 18322, "completion_tokens": 835, "total_tokens": 19157}
|
23 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 19161, "completion_tokens": 864, "total_tokens": 20025}
|
24 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 20029, "completion_tokens": 847, "total_tokens": 20876}
|
25 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 20880, "completion_tokens": 822, "total_tokens": 21702}
|
26 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 21706, "completion_tokens": 891, "total_tokens": 22597}
|
27 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 22601, "completion_tokens": 876, "total_tokens": 23477}
|
28 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 23481, "completion_tokens": 827, "total_tokens": 24308}
|
29 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 24312, "completion_tokens": 930, "total_tokens": 25242}
|
30 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 25255, "completion_tokens": 986, "total_tokens": 26241}
|
31 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 26254, "completion_tokens": 1086, "total_tokens": 27340}
|
32 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 27361, "completion_tokens": 844, "total_tokens": 28205}
|
33 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 28209, "completion_tokens": 883, "total_tokens": 29092}
|
34 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 29096, "completion_tokens": 828, "total_tokens": 29924}
|
35 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 29928, "completion_tokens": 802, "total_tokens": 30730}
|
36 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 30743, "completion_tokens": 817, "total_tokens": 31560}
|
37 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 31573, "completion_tokens": 784, "total_tokens": 32357}
|
38 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 32370, "completion_tokens": 861, "total_tokens": 33231}
|
39 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 33244, "completion_tokens": 907, "total_tokens": 34151}
|
40 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 34164, "completion_tokens": 866, "total_tokens": 35030}
|
41 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 35043, "completion_tokens": 840, "total_tokens": 35883}
|
42 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 35887, "completion_tokens": 848, "total_tokens": 36735}
|
43 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 40183, "completion_tokens": 854, "total_tokens": 41037}
|
44 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 40183, "completion_tokens": 950, "total_tokens": 41133}
|
45 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 94, "completion_tokens": 836, "total_tokens": 930}
|
46 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 42869, "completion_tokens": 111, "total_tokens": 42980}
|
47 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 94, "completion_tokens": 839, "total_tokens": 933}
|
48 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 971, "completion_tokens": 98, "total_tokens": 1069}
|
49 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 12368, "completion_tokens": 824, "total_tokens": 13192}
|
50 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 13196, "completion_tokens": 782, "total_tokens": 13978}
|
51 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 13982, "completion_tokens": 810, "total_tokens": 14792}
|
52 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 14805, "completion_tokens": 834, "total_tokens": 15639}
|
53 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 15643, "completion_tokens": 902, "total_tokens": 16545}
|
54 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 16549, "completion_tokens": 795, "total_tokens": 17344}
|
55 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 17348, "completion_tokens": 793, "total_tokens": 18141}
|
56 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 18154, "completion_tokens": 951, "total_tokens": 19105}
|
57 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 19109, "completion_tokens": 833, "total_tokens": 19942}
|
58 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 19946, "completion_tokens": 761, "total_tokens": 20707}
|
59 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 18154, "completion_tokens": 966, "total_tokens": 19120}
|
60 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 21681, "completion_tokens": 856, "total_tokens": 22537}
|
61 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 22541, "completion_tokens": 875, "total_tokens": 23416}
|
62 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 23420, "completion_tokens": 865, "total_tokens": 24285}
|
63 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 24289, "completion_tokens": 855, "total_tokens": 25144}
|
64 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 25148, "completion_tokens": 791, "total_tokens": 25939}
|
65 |
+
{"model": "gpt-4", "provider": "Yqcloud", "prompt_tokens": 10, "completion_tokens": 132, "total_tokens": 142}
|
66 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 25943, "completion_tokens": 859, "total_tokens": 26802}
|
67 |
+
{"model": "gpt-4", "provider": "Copilot", "prompt_tokens": 176, "completion_tokens": 49, "total_tokens": 225}
|
68 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 26806, "completion_tokens": 857, "total_tokens": 27663}
|
69 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 27667, "completion_tokens": 839, "total_tokens": 28506}
|
70 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 28510, "completion_tokens": 867, "total_tokens": 29377}
|
71 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 29390, "completion_tokens": 978, "total_tokens": 30368}
|
72 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 30572, "completion_tokens": 717, "total_tokens": 31289}
|
73 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 72, "completion_tokens": 793, "total_tokens": 865}
|
74 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 72, "completion_tokens": 778, "total_tokens": 850}
|
75 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 49, "completion_tokens": 763, "total_tokens": 812}
|
76 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 31344, "completion_tokens": 865, "total_tokens": 32209}
|
77 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 9, "completion_tokens": 29, "total_tokens": 38}
|
78 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 32685, "completion_tokens": 921, "total_tokens": 33606}
|
79 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 41773, "completion_tokens": 853, "total_tokens": 42626}
|
80 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 42639, "completion_tokens": 864, "total_tokens": 43503}
|
81 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 43507, "completion_tokens": 819, "total_tokens": 44326}
|
82 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 44339, "completion_tokens": 878, "total_tokens": 45217}
|
83 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 45230, "completion_tokens": 951, "total_tokens": 46181}
|
84 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 46185, "completion_tokens": 911, "total_tokens": 47096}
|
85 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 47109, "completion_tokens": 843, "total_tokens": 47952}
|
86 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 47956, "completion_tokens": 842, "total_tokens": 48798}
|
87 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 48802, "completion_tokens": 820, "total_tokens": 49622}
|
88 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 49626, "completion_tokens": 941, "total_tokens": 50567}
|
89 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 50728, "completion_tokens": 947, "total_tokens": 51675}
|
90 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 51688, "completion_tokens": 853, "total_tokens": 52541}
|
91 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 52554, "completion_tokens": 815, "total_tokens": 53369}
|
92 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 53373, "completion_tokens": 838, "total_tokens": 54211}
|
93 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 54215, "completion_tokens": 844, "total_tokens": 55059}
|
94 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 55063, "completion_tokens": 823, "total_tokens": 55886}
|
95 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 55890, "completion_tokens": 866, "total_tokens": 56756}
|
96 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 56774, "completion_tokens": 690, "total_tokens": 57464}
|
97 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 57538, "completion_tokens": 898, "total_tokens": 58436}
|
98 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 58440, "completion_tokens": 891, "total_tokens": 59331}
|
99 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 59335, "completion_tokens": 895, "total_tokens": 60230}
|
100 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 60234, "completion_tokens": 853, "total_tokens": 61087}
|
101 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 61091, "completion_tokens": 930, "total_tokens": 62021}
|
102 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 62025, "completion_tokens": 862, "total_tokens": 62887}
|
103 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 62891, "completion_tokens": 863, "total_tokens": 63754}
|
104 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 63758, "completion_tokens": 937, "total_tokens": 64695}
|
105 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 64699, "completion_tokens": 904, "total_tokens": 65603}
|
106 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 65607, "completion_tokens": 980, "total_tokens": 66587}
|
107 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 66591, "completion_tokens": 984, "total_tokens": 67575}
|
108 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 67579, "completion_tokens": 991, "total_tokens": 68570}
|
109 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 68583, "completion_tokens": 918, "total_tokens": 69501}
|
110 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 69505, "completion_tokens": 957, "total_tokens": 70462}
|
111 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 70466, "completion_tokens": 914, "total_tokens": 71380}
|
112 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 71384, "completion_tokens": 961, "total_tokens": 72345}
|
113 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 72349, "completion_tokens": 999, "total_tokens": 73348}
|
114 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 73352, "completion_tokens": 903, "total_tokens": 74255}
|
115 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 74259, "completion_tokens": 977, "total_tokens": 75236}
|
116 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 75240, "completion_tokens": 994, "total_tokens": 76234}
|
117 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 76238, "completion_tokens": 844, "total_tokens": 77082}
|
118 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 77086, "completion_tokens": 955, "total_tokens": 78041}
|
119 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 78045, "completion_tokens": 976, "total_tokens": 79021}
|
120 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 79025, "completion_tokens": 1001, "total_tokens": 80026}
|
121 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 80030, "completion_tokens": 975, "total_tokens": 81005}
|
122 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 81009, "completion_tokens": 967, "total_tokens": 81976}
|
123 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 81980, "completion_tokens": 999, "total_tokens": 82979}
|
124 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 82983, "completion_tokens": 1001, "total_tokens": 83984}
|
125 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 83988, "completion_tokens": 947, "total_tokens": 84935}
|
126 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 84939, "completion_tokens": 1028, "total_tokens": 85967}
|
127 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 68583, "completion_tokens": 896, "total_tokens": 69479}
|
128 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 86902, "completion_tokens": 807, "total_tokens": 87709}
|
129 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 98620, "completion_tokens": 874, "total_tokens": 99494}
|
130 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 99507, "completion_tokens": 840, "total_tokens": 100347}
|
131 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 100360, "completion_tokens": 886, "total_tokens": 101246}
|
132 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 101259, "completion_tokens": 883, "total_tokens": 102142}
|
133 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 6, "total_tokens": 120, "completion_tokens": 114, "estimated_cost": 0.00027810000000000004}
|
134 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 120, "completion_tokens": 112, "total_tokens": 232, "prompt_tokens_details": {"cached_tokens": 0}, "prompt_cache_hit_tokens": 0, "prompt_cache_miss_tokens": 120}
|
135 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 102155, "completion_tokens": 878, "total_tokens": 103033}
|
136 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 103046, "completion_tokens": 836, "total_tokens": 103882}
|
137 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 103895, "completion_tokens": 793, "total_tokens": 104688}
|
138 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 104701, "completion_tokens": 840, "total_tokens": 105541}
|
139 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 105554, "completion_tokens": 856, "total_tokens": 106410}
|
140 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 106414, "completion_tokens": 813, "total_tokens": 107227}
|
141 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 107231, "completion_tokens": 863, "total_tokens": 108094}
|
142 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 108098, "completion_tokens": 838, "total_tokens": 108936}
|
143 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 108940, "completion_tokens": 822, "total_tokens": 109762}
|
144 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 109766, "completion_tokens": 600, "total_tokens": 110366}
|
145 |
+
{"model": "qwen-qwen2-72b-instruct", "provider": "HuggingSpace", "prompt_tokens": 2964, "completion_tokens": 1, "total_tokens": 2965}
|
146 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 122600, "completion_tokens": 919, "total_tokens": 123519}
|
147 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 123532, "completion_tokens": 882, "total_tokens": 124414}
|
148 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 124427, "completion_tokens": 827, "total_tokens": 125254}
|
149 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 125267, "completion_tokens": 857, "total_tokens": 126124}
|
150 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 126137, "completion_tokens": 855, "total_tokens": 126992}
|
151 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 126996, "completion_tokens": 846, "total_tokens": 127842}
|
152 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 127855, "completion_tokens": 837, "total_tokens": 128692}
|
153 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 128705, "completion_tokens": 885, "total_tokens": 129590}
|
154 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 129603, "completion_tokens": 884, "total_tokens": 130487}
|
155 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 130500, "completion_tokens": 889, "total_tokens": 131389}
|
156 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 131402, "completion_tokens": 860, "total_tokens": 132262}
|
157 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 132275, "completion_tokens": 794, "total_tokens": 133069}
|
158 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 133082, "completion_tokens": 819, "total_tokens": 133901}
|
159 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 133914, "completion_tokens": 849, "total_tokens": 134763}
|
160 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 134767, "completion_tokens": 780, "total_tokens": 135547}
|
161 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 150993, "completion_tokens": 938, "total_tokens": 151931}
|
162 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 151944, "completion_tokens": 877, "total_tokens": 152821}
|
163 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 152834, "completion_tokens": 885, "total_tokens": 153719}
|
164 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 153732, "completion_tokens": 878, "total_tokens": 154610}
|
165 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 154614, "completion_tokens": 894, "total_tokens": 155508}
|
166 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 155521, "completion_tokens": 931, "total_tokens": 156452}
|
167 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 156456, "completion_tokens": 919, "total_tokens": 157375}
|
168 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 174404, "completion_tokens": 848, "total_tokens": 175252}
|
169 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 175265, "completion_tokens": 933, "total_tokens": 176198}
|
170 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 176202, "completion_tokens": 887, "total_tokens": 177089}
|
171 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 177102, "completion_tokens": 890, "total_tokens": 177992}
|
172 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 177996, "completion_tokens": 878, "total_tokens": 178874}
|
173 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 178878, "completion_tokens": 900, "total_tokens": 179778}
|
174 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 179791, "completion_tokens": 872, "total_tokens": 180663}
|
175 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 180676, "completion_tokens": 818, "total_tokens": 181494}
|
176 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 181507, "completion_tokens": 803, "total_tokens": 182310}
|
177 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 182323, "completion_tokens": 792, "total_tokens": 183115}
|
178 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 183128, "completion_tokens": 902, "total_tokens": 184030}
|
179 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 184043, "completion_tokens": 928, "total_tokens": 184971}
|
180 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 203782, "completion_tokens": 812, "total_tokens": 204594}
|
181 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 204607, "completion_tokens": 881, "total_tokens": 205488}
|
182 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 205492, "completion_tokens": 927, "total_tokens": 206419}
|
183 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 206432, "completion_tokens": 914, "total_tokens": 207346}
|
184 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 207359, "completion_tokens": 900, "total_tokens": 208259}
|
185 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 208272, "completion_tokens": 882, "total_tokens": 209154}
|
186 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 209167, "completion_tokens": 856, "total_tokens": 210023}
|
187 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 210027, "completion_tokens": 879, "total_tokens": 210906}
|
188 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 210910, "completion_tokens": 842, "total_tokens": 211752}
|
189 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 211756, "completion_tokens": 829, "total_tokens": 212585}
|
190 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 212589, "completion_tokens": 878, "total_tokens": 213467}
|
191 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 213471, "completion_tokens": 863, "total_tokens": 214334}
|
192 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 214338, "completion_tokens": 928, "total_tokens": 215266}
|
193 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 234064, "completion_tokens": 611, "total_tokens": 234675}
|
194 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 237142, "completion_tokens": 804, "total_tokens": 237946}
|
195 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 238019, "completion_tokens": 905, "total_tokens": 238924}
|
196 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 238928, "completion_tokens": 839, "total_tokens": 239767}
|
197 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 239771, "completion_tokens": 872, "total_tokens": 240643}
|
198 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 240647, "completion_tokens": 802, "total_tokens": 241449}
|
199 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 241453, "completion_tokens": 734, "total_tokens": 242187}
|
200 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 263623, "completion_tokens": 1008, "total_tokens": 264631}
|
201 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 264644, "completion_tokens": 978, "total_tokens": 265622}
|
202 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 265635, "completion_tokens": 903, "total_tokens": 266538}
|
203 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 266542, "completion_tokens": 843, "total_tokens": 267385}
|
204 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 267389, "completion_tokens": 848, "total_tokens": 268237}
|
205 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 268241, "completion_tokens": 839, "total_tokens": 269080}
|
206 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 269084, "completion_tokens": 813, "total_tokens": 269897}
|
207 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 269901, "completion_tokens": 877, "total_tokens": 270778}
|
208 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 292519, "completion_tokens": 970, "total_tokens": 293489}
|
209 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 20, "completion_tokens": 203, "total_tokens": 223}
|
210 |
+
{"model": "graffiti", "provider": "ARTA", "prompt_tokens": 19, "completion_tokens": 208, "total_tokens": 227}
|
211 |
+
{"model": "graffiti", "provider": "ARTA", "prompt_tokens": 19, "completion_tokens": 212, "total_tokens": 231}
|
212 |
+
{"model": "graffiti", "provider": "ARTA", "prompt_tokens": 38, "completion_tokens": 200, "total_tokens": 238}
|
213 |
+
{"model": "graffiti", "provider": "ARTA", "prompt_tokens": 54, "completion_tokens": 189, "total_tokens": 243}
|
214 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 37, "completion_tokens": 0, "total_tokens": 37}
|
215 |
+
{"model": "graffiti", "provider": "ARTA", "prompt_tokens": 76, "completion_tokens": 219, "total_tokens": 295}
|
216 |
+
{"model": "graffiti", "provider": "ARTA", "prompt_tokens": 76, "completion_tokens": 215, "total_tokens": 291}
|
217 |
+
{"model": "cinematic_art", "provider": "ARTA", "prompt_tokens": 76, "completion_tokens": 225, "total_tokens": 301}
|
218 |
+
{"model": "cinematic_art", "provider": "ARTA", "prompt_tokens": 76, "completion_tokens": 205, "total_tokens": 281}
|
219 |
+
{"model": "cinematic_art", "provider": "ARTA", "prompt_tokens": 76, "completion_tokens": 209, "total_tokens": 285}
|
220 |
+
{"model": "cinematic_art", "provider": "ARTA", "prompt_tokens": 76, "completion_tokens": 203, "total_tokens": 279}
|
221 |
+
{"model": "cinematic_art", "provider": "ARTA", "prompt_tokens": 76, "completion_tokens": 195, "total_tokens": 271}
|
222 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 17, "completion_tokens": 694, "total_tokens": 711}
|
223 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 577, "completion_tokens": 533, "total_tokens": 1110}
|
224 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 1429, "completion_tokens": 0, "total_tokens": 1429}
|
225 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 26, "completion_tokens": 0, "total_tokens": 26}
|
226 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 191, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 31, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 222}
|
227 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 72, "completion_tokens": 970, "total_tokens": 1042}
|
228 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 557, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 42, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 599}
|
229 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 703, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 616, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1319}
|
230 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 12, "completion_tokens": 782, "total_tokens": 794}
|
231 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 12, "completion_tokens": 843, "total_tokens": 855}
|
232 |
+
{"model": "phi-4", "provider": "DeepInfraChat", "prompt_tokens": 4796, "total_tokens": 5077, "completion_tokens": 281, "estimated_cost": 0.00037506}
|
233 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 125, "completion_tokens": 1163, "total_tokens": 1288}
|
234 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 332, "completion_tokens": 23097, "total_tokens": 23429}
|
235 |
+
{"model": "sdxl-turbo", "provider": "ImageLabs", "prompt_tokens": 407, "completion_tokens": 3281, "total_tokens": 3688}
|
236 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 12, "completion_tokens": 189, "total_tokens": 201}
|
237 |
+
{"model": "anime_tattoo", "provider": "ARTA"}
|
238 |
+
{"model": "gpt-4o-mini", "provider": "PollinationsAI"}
|
239 |
+
{"model": "gpt-4o-mini", "provider": "PollinationsAI"}
|
240 |
+
{"model": "llama", "provider": "PollinationsAI", "prompt_tokens": 41, "completion_tokens": 24, "total_tokens": 65}
|
241 |
+
{"model": "deepseek", "provider": "PollinationsAI", "prompt_tokens": 42, "completion_tokens": 36, "total_tokens": 78, "prompt_tokens_details": {"cached_tokens": 0}, "prompt_cache_hit_tokens": 0, "prompt_cache_miss_tokens": 42}
|
242 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 0, "completion_tokens": 249, "total_tokens": 249}
|
243 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 3657, "completion_tokens": 1592, "total_tokens": 5249}
|
244 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 669, "completion_tokens": 883, "total_tokens": 1552}
|
245 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 30, "completion_tokens": 573, "total_tokens": 603}
|
246 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 614, "completion_tokens": 46, "total_tokens": 660}
|
247 |
+
{"model": "gpt-4o", "provider": "Copilot", "prompt_tokens": 5046, "completion_tokens": 369, "total_tokens": 5415}
|
248 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 139, "completion_tokens": 313, "total_tokens": 452}
|
249 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 484, "completion_tokens": 429, "total_tokens": 913}
|
250 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 928, "completion_tokens": 482, "total_tokens": 1410}
|
251 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 0, "completion_tokens": 134, "total_tokens": 134}
|
252 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 0, "completion_tokens": 96, "total_tokens": 96}
|
253 |
+
{"model": "flux", "provider": "PollinationsImage"}
|
254 |
+
{"model": "flux", "provider": "PollinationsImage"}
|
255 |
+
{"model": "flux", "provider": "PollinationsImage"}
|
256 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI"}
|
257 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 268, "completion_tokens": 298, "total_tokens": 566}
|
258 |
+
{"model": "gemini-1.5-pro", "provider": "Free2GPT", "prompt_tokens": 609, "completion_tokens": 585, "total_tokens": 1194}
|
259 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 1242, "completion_tokens": 662, "total_tokens": 1904}
|
260 |
+
{"model": "chicano", "provider": "ARTA", "prompt_tokens": 113, "completion_tokens": 264, "total_tokens": 377}
|
261 |
+
{"model": "chicano", "provider": "ARTA", "prompt_tokens": 113, "completion_tokens": 252, "total_tokens": 365}
|
262 |
+
{"model": "chicano", "provider": "ARTA", "prompt_tokens": 113, "completion_tokens": 264, "total_tokens": 377}
|
263 |
+
{"model": "chicano", "provider": "ARTA", "prompt_tokens": 150, "completion_tokens": 260, "total_tokens": 410}
|
264 |
+
{"model": "chicano", "provider": "ARTA", "prompt_tokens": 187, "completion_tokens": 270, "total_tokens": 457}
|
265 |
+
{"model": "chicano", "provider": "ARTA", "prompt_tokens": 211, "completion_tokens": 219, "total_tokens": 430}
|
266 |
+
{"model": "graffiti", "provider": "ARTA", "prompt_tokens": 35, "completion_tokens": 278, "total_tokens": 313}
|
267 |
+
{"model": "graffiti", "provider": "ARTA", "prompt_tokens": 35, "completion_tokens": 254, "total_tokens": 289}
|
268 |
+
{"model": "stabilityai/stable-diffusion-xl-base-1.0", "provider": "HuggingFace", "prompt_tokens": 55, "completion_tokens": 150, "total_tokens": 205}
|
269 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 8, "completion_tokens": 9, "total_tokens": 17}
|
270 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 38, "completion_tokens": 731, "total_tokens": 769}
|
271 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 787, "completion_tokens": 154, "total_tokens": 941}
|
272 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 963, "completion_tokens": 578, "total_tokens": 1541}
|
273 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 1559, "completion_tokens": 282, "total_tokens": 1841}
|
274 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 1856, "completion_tokens": 861, "total_tokens": 2717}
|
275 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 2731, "completion_tokens": 927, "total_tokens": 3658}
|
276 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 85, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 64, "rejected_prediction_tokens": 0}, "prompt_tokens": 9, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 94}
|
277 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 20, "completion_tokens": 69, "total_tokens": 89}
|
278 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 20, "completion_tokens": 216, "total_tokens": 236}
|
279 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 673, "completion_tokens": 69, "total_tokens": 742}
|
280 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 855, "completion_tokens": 55, "total_tokens": 910}
|
281 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 921, "completion_tokens": 48, "total_tokens": 969}
|
282 |
+
{"model": "gpt-4o", "provider": "Copilot", "prompt_tokens": 921, "completion_tokens": 31, "total_tokens": 952}
|
283 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 921, "completion_tokens": 234, "total_tokens": 1155}
|
284 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 921, "completion_tokens": 62, "total_tokens": 983}
|
285 |
+
{"model": "gpt-4o", "provider": "Copilot", "prompt_tokens": 986, "completion_tokens": 57, "total_tokens": 1043}
|
286 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 986, "completion_tokens": 54, "total_tokens": 1040}
|
287 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 986, "completion_tokens": 43, "total_tokens": 1029}
|
288 |
+
{"model": "gpt-4o", "provider": "Copilot", "prompt_tokens": 986, "completion_tokens": 58, "total_tokens": 1044}
|
289 |
+
{"model": "gpt-4o", "provider": "Copilot", "prompt_tokens": 986, "completion_tokens": 58, "total_tokens": 1044}
|
290 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 986, "completion_tokens": 54, "total_tokens": 1040}
|
291 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 986, "completion_tokens": 54, "total_tokens": 1040}
|
292 |
+
{"model": "gpt-4o", "provider": "Copilot", "prompt_tokens": 986, "completion_tokens": 56, "total_tokens": 1042}
|
293 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 986, "completion_tokens": 54, "total_tokens": 1040}
|
294 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 986, "completion_tokens": 63, "total_tokens": 1049}
|
295 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 986, "completion_tokens": 43, "total_tokens": 1029}
|
296 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 986, "completion_tokens": 62, "total_tokens": 1048}
|
297 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 986, "completion_tokens": 62, "total_tokens": 1048}
|
298 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 986, "completion_tokens": 228, "total_tokens": 1214}
|
299 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 986, "completion_tokens": 53, "total_tokens": 1039}
|
300 |
+
{"model": "gpt-4o", "provider": "Copilot", "prompt_tokens": 986, "completion_tokens": 58, "total_tokens": 1044}
|
301 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 13, "completion_tokens": 340, "total_tokens": 353}
|
302 |
+
{"model": "qwq-32b", "provider": "HuggingFace", "prompt_tokens": 13, "completion_tokens": 1409, "total_tokens": 1422}
|
303 |
+
{"model": "gemini-2.0-flash", "provider": "Gemini", "prompt_tokens": 8, "completion_tokens": 2085, "total_tokens": 2093}
|
304 |
+
{"model": "gemini-2.0-flash", "provider": "Blackbox", "prompt_tokens": 2102, "completion_tokens": 648, "total_tokens": 2750}
|
305 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 14, "completion_tokens": 72, "total_tokens": 86}
|
306 |
+
{"model": "flux-schnell", "provider": "PollinationsImage", "prompt_tokens": 44, "completion_tokens": 254, "total_tokens": 298}
|
307 |
+
{"model": "flux-schnell", "provider": "HuggingFace", "prompt_tokens": 60, "completion_tokens": 3731, "total_tokens": 3791}
|
308 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 79, "completion_tokens": 692, "total_tokens": 771}
|
309 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 555, "completion_tokens": 567, "total_tokens": 1122}
|
310 |
+
{"model": "command-r", "provider": "HuggingSpace", "prompt_tokens": 933, "completion_tokens": 303, "total_tokens": 1236}
|
311 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 835, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4860, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 5695}
|
312 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 293502, "completion_tokens": 919, "total_tokens": 294421}
|
313 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 294617, "completion_tokens": 924, "total_tokens": 295541}
|
314 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 21711, "completion_tokens": 961, "total_tokens": 22672}
|
315 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 22676, "completion_tokens": 866, "total_tokens": 23542}
|
316 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 23546, "completion_tokens": 813, "total_tokens": 24359}
|
317 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 24363, "completion_tokens": 840, "total_tokens": 25203}
|
318 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 25207, "completion_tokens": 836, "total_tokens": 26043}
|
319 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 26047, "completion_tokens": 847, "total_tokens": 26894}
|
320 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 26898, "completion_tokens": 836, "total_tokens": 27734}
|
321 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 27738, "completion_tokens": 852, "total_tokens": 28590}
|
322 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 28594, "completion_tokens": 854, "total_tokens": 29448}
|
323 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 29452, "completion_tokens": 860, "total_tokens": 30312}
|
324 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 30316, "completion_tokens": 865, "total_tokens": 31181}
|
325 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 31185, "completion_tokens": 792, "total_tokens": 31977}
|
326 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 31981, "completion_tokens": 843, "total_tokens": 32824}
|
327 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 32828, "completion_tokens": 854, "total_tokens": 33682}
|
328 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 33686, "completion_tokens": 848, "total_tokens": 34534}
|
329 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 34538, "completion_tokens": 827, "total_tokens": 35365}
|
330 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 35369, "completion_tokens": 881, "total_tokens": 36250}
|
331 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 36254, "completion_tokens": 853, "total_tokens": 37107}
|
usage/2025-03-14.jsonl
ADDED
@@ -0,0 +1,383 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 37111, "completion_tokens": 917, "total_tokens": 38028}
|
2 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 311067, "completion_tokens": 890, "total_tokens": 311957}
|
3 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 311961, "completion_tokens": 884, "total_tokens": 312845}
|
4 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 312849, "completion_tokens": 858, "total_tokens": 313707}
|
5 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 313711, "completion_tokens": 871, "total_tokens": 314582}
|
6 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 314595, "completion_tokens": 892, "total_tokens": 315487}
|
7 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 315582, "completion_tokens": 873, "total_tokens": 316455}
|
8 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 316459, "completion_tokens": 932, "total_tokens": 317391}
|
9 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 317395, "completion_tokens": 887, "total_tokens": 318282}
|
10 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 318286, "completion_tokens": 942, "total_tokens": 319228}
|
11 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 319241, "completion_tokens": 909, "total_tokens": 320150}
|
12 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 320163, "completion_tokens": 866, "total_tokens": 321029}
|
13 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 321077, "completion_tokens": 879, "total_tokens": 321956}
|
14 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 321960, "completion_tokens": 800, "total_tokens": 322760}
|
15 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 322773, "completion_tokens": 887, "total_tokens": 323660}
|
16 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 323673, "completion_tokens": 857, "total_tokens": 324530}
|
17 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 324778, "completion_tokens": 899, "total_tokens": 325677}
|
18 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 325681, "completion_tokens": 840, "total_tokens": 326521}
|
19 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 8, "completion_tokens": 10, "total_tokens": 18}
|
20 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 326534, "completion_tokens": 850, "total_tokens": 327384}
|
21 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 327397, "completion_tokens": 857, "total_tokens": 328254}
|
22 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 328258, "completion_tokens": 922, "total_tokens": 329180}
|
23 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 329205, "completion_tokens": 393, "total_tokens": 329598}
|
24 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 346147, "completion_tokens": 916, "total_tokens": 347063}
|
25 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 347088, "completion_tokens": 232, "total_tokens": 347320}
|
26 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 347341, "completion_tokens": 48, "total_tokens": 347389}
|
27 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 347544, "completion_tokens": 447, "total_tokens": 347991}
|
28 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 377051, "completion_tokens": 853, "total_tokens": 377904}
|
29 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 377908, "completion_tokens": 801, "total_tokens": 378709}
|
30 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 378713, "completion_tokens": 862, "total_tokens": 379575}
|
31 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 379588, "completion_tokens": 832, "total_tokens": 380420}
|
32 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 380433, "completion_tokens": 805, "total_tokens": 381238}
|
33 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 381251, "completion_tokens": 845, "total_tokens": 382096}
|
34 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 382109, "completion_tokens": 873, "total_tokens": 382982}
|
35 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 382995, "completion_tokens": 856, "total_tokens": 383851}
|
36 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 383864, "completion_tokens": 846, "total_tokens": 384710}
|
37 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 384723, "completion_tokens": 816, "total_tokens": 385539}
|
38 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 385552, "completion_tokens": 823, "total_tokens": 386375}
|
39 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 386388, "completion_tokens": 809, "total_tokens": 387197}
|
40 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 387210, "completion_tokens": 755, "total_tokens": 387965}
|
41 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 387978, "completion_tokens": 717, "total_tokens": 388695}
|
42 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 388708, "completion_tokens": 757, "total_tokens": 389465}
|
43 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 389478, "completion_tokens": 750, "total_tokens": 390228}
|
44 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 390241, "completion_tokens": 782, "total_tokens": 391023}
|
45 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 391036, "completion_tokens": 813, "total_tokens": 391849}
|
46 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 391862, "completion_tokens": 817, "total_tokens": 392679}
|
47 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 392692, "completion_tokens": 836, "total_tokens": 393528}
|
48 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 393541, "completion_tokens": 614, "total_tokens": 394155}
|
49 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 14110, "completion_tokens": 840, "total_tokens": 14950}
|
50 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 14954, "completion_tokens": 840, "total_tokens": 15794}
|
51 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 15798, "completion_tokens": 828, "total_tokens": 16626}
|
52 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 16630, "completion_tokens": 867, "total_tokens": 17497}
|
53 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 17501, "completion_tokens": 876, "total_tokens": 18377}
|
54 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 18381, "completion_tokens": 866, "total_tokens": 19247}
|
55 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 19251, "completion_tokens": 847, "total_tokens": 20098}
|
56 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 20102, "completion_tokens": 800, "total_tokens": 20902}
|
57 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 20906, "completion_tokens": 846, "total_tokens": 21752}
|
58 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 21756, "completion_tokens": 794, "total_tokens": 22550}
|
59 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 22554, "completion_tokens": 780, "total_tokens": 23334}
|
60 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 23338, "completion_tokens": 769, "total_tokens": 24107}
|
61 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 24111, "completion_tokens": 773, "total_tokens": 24884}
|
62 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 394981, "completion_tokens": 845, "total_tokens": 395826}
|
63 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 24111, "completion_tokens": 773, "total_tokens": 24884}
|
64 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 24888, "completion_tokens": 767, "total_tokens": 25655}
|
65 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 25659, "completion_tokens": 796, "total_tokens": 26455}
|
66 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 26459, "completion_tokens": 824, "total_tokens": 27283}
|
67 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 27287, "completion_tokens": 814, "total_tokens": 28101}
|
68 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 28105, "completion_tokens": 870, "total_tokens": 28975}
|
69 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 28988, "completion_tokens": 367, "total_tokens": 29355}
|
70 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 396278, "completion_tokens": 822, "total_tokens": 397100}
|
71 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 397104, "completion_tokens": 768, "total_tokens": 397872}
|
72 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 397885, "completion_tokens": 765, "total_tokens": 398650}
|
73 |
+
{"model": "sd-3.5", "provider": "HuggingSpace", "prompt_tokens": 10, "completion_tokens": 197, "total_tokens": 207}
|
74 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 398663, "completion_tokens": 773, "total_tokens": 399436}
|
75 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 399469, "completion_tokens": 771, "total_tokens": 400240}
|
76 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 400244, "completion_tokens": 764, "total_tokens": 401008}
|
77 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 401021, "completion_tokens": 771, "total_tokens": 401792}
|
78 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 432870, "completion_tokens": 624, "total_tokens": 433494}
|
79 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 433930, "completion_tokens": 813, "total_tokens": 434743}
|
80 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 434747, "completion_tokens": 815, "total_tokens": 435562}
|
81 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 435575, "completion_tokens": 786, "total_tokens": 436361}
|
82 |
+
{"model": "deepseek-v3", "provider": "OIVSCode", "prompt_tokens": 16, "completion_tokens": 0, "total_tokens": 16}
|
83 |
+
{"model": "deepseek-v3", "provider": "DeepInfraChat", "prompt_tokens": 11, "total_tokens": 345, "completion_tokens": 334, "estimated_cost": 0.00030265}
|
84 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 11, "total_tokens": 937, "completion_tokens": 926, "estimated_cost": 0.00223065}
|
85 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 436430, "completion_tokens": 757, "total_tokens": 437187}
|
86 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 437215, "completion_tokens": 818, "total_tokens": 438033}
|
87 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 438090, "completion_tokens": 848, "total_tokens": 438938}
|
88 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 438951, "completion_tokens": 39, "total_tokens": 438990}
|
89 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 477722, "completion_tokens": 813, "total_tokens": 478535}
|
90 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 478548, "completion_tokens": 828, "total_tokens": 479376}
|
91 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 12, "completion_tokens": 499, "total_tokens": 511}
|
92 |
+
{"model": "qwen-2.5-coder-32b", "provider": "PollinationsAI", "prompt_tokens": 543, "completion_tokens": 74, "total_tokens": 617}
|
93 |
+
{"model": "qwen-2.5-coder-32b", "provider": "PollinationsAI", "prompt_tokens": 5567, "completion_tokens": 2209, "total_tokens": 7776}
|
94 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 479794, "completion_tokens": 837, "total_tokens": 480631}
|
95 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 484823, "completion_tokens": 833, "total_tokens": 485656}
|
96 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 485669, "completion_tokens": 815, "total_tokens": 486484}
|
97 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 486497, "completion_tokens": 798, "total_tokens": 487295}
|
98 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 487308, "completion_tokens": 841, "total_tokens": 488149}
|
99 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 522195, "completion_tokens": 845, "total_tokens": 523040}
|
100 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 523161, "completion_tokens": 808, "total_tokens": 523969}
|
101 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 523973, "completion_tokens": 599, "total_tokens": 524572}
|
102 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 524595, "completion_tokens": 576, "total_tokens": 525171}
|
103 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 525217, "completion_tokens": 862, "total_tokens": 526079}
|
104 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 555684, "completion_tokens": 789, "total_tokens": 556473}
|
105 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 556494, "completion_tokens": 422, "total_tokens": 556916}
|
106 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 25, "completion_tokens": 218, "total_tokens": 243}
|
107 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 45025, "completion_tokens": 879, "total_tokens": 45904}
|
108 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 45908, "completion_tokens": 884, "total_tokens": 46792}
|
109 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 46805, "completion_tokens": 853, "total_tokens": 47658}
|
110 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 47671, "completion_tokens": 826, "total_tokens": 48497}
|
111 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 48501, "completion_tokens": 841, "total_tokens": 49342}
|
112 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 49346, "completion_tokens": 870, "total_tokens": 50216}
|
113 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 50220, "completion_tokens": 796, "total_tokens": 51016}
|
114 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 51020, "completion_tokens": 852, "total_tokens": 51872}
|
115 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 12, "completion_tokens": 0, "total_tokens": 12}
|
116 |
+
{"model": "deepseek-v3", "provider": "DeepInfraChat", "prompt_tokens": 236, "total_tokens": 737, "completion_tokens": 501, "estimated_cost": 0.00056153}
|
117 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 51946, "completion_tokens": 822, "total_tokens": 52768}
|
118 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 52781, "completion_tokens": 781, "total_tokens": 53562}
|
119 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 53566, "completion_tokens": 790, "total_tokens": 54356}
|
120 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 57, "total_tokens": 65}
|
121 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 54369, "completion_tokens": 836, "total_tokens": 55205}
|
122 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 55218, "completion_tokens": 855, "total_tokens": 56073}
|
123 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 56086, "completion_tokens": 812, "total_tokens": 56898}
|
124 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 56902, "completion_tokens": 790, "total_tokens": 57692}
|
125 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 57705, "completion_tokens": 815, "total_tokens": 58520}
|
126 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 58524, "completion_tokens": 766, "total_tokens": 59290}
|
127 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 59294, "completion_tokens": 822, "total_tokens": 60116}
|
128 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 85253, "completion_tokens": 656, "total_tokens": 85909}
|
129 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 85937, "completion_tokens": 619, "total_tokens": 86556}
|
130 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 4014, "completion_tokens": 832, "total_tokens": 4846}
|
131 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 4850, "completion_tokens": 850, "total_tokens": 5700}
|
132 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 5704, "completion_tokens": 862, "total_tokens": 6566}
|
133 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 6570, "completion_tokens": 851, "total_tokens": 7421}
|
134 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 7425, "completion_tokens": 800, "total_tokens": 8225}
|
135 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 8229, "completion_tokens": 706, "total_tokens": 8935}
|
136 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 13277, "completion_tokens": 544, "total_tokens": 13821}
|
137 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 18139, "completion_tokens": 459, "total_tokens": 18598}
|
138 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 18686, "completion_tokens": 911, "total_tokens": 19597}
|
139 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 19601, "completion_tokens": 805, "total_tokens": 20406}
|
140 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 20410, "completion_tokens": 861, "total_tokens": 21271}
|
141 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 21322, "completion_tokens": 885, "total_tokens": 22207}
|
142 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 22235, "completion_tokens": 928, "total_tokens": 23163}
|
143 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 128, "completion_tokens": 1033, "total_tokens": 1161}
|
144 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 1165, "completion_tokens": 1040, "total_tokens": 2205}
|
145 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 2209, "completion_tokens": 1072, "total_tokens": 3281}
|
146 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 3285, "completion_tokens": 1072, "total_tokens": 4357}
|
147 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 4361, "completion_tokens": 1070, "total_tokens": 5431}
|
148 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 5435, "completion_tokens": 1094, "total_tokens": 6529}
|
149 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 6533, "completion_tokens": 1080, "total_tokens": 7613}
|
150 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 7617, "completion_tokens": 1084, "total_tokens": 8701}
|
151 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 8705, "completion_tokens": 1091, "total_tokens": 9796}
|
152 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 9800, "completion_tokens": 1120, "total_tokens": 10920}
|
153 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 10924, "completion_tokens": 1110, "total_tokens": 12034}
|
154 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 12038, "completion_tokens": 1102, "total_tokens": 13140}
|
155 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 86577, "completion_tokens": 49, "total_tokens": 86626}
|
156 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 118837, "completion_tokens": 878, "total_tokens": 119715}
|
157 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 119719, "completion_tokens": 846, "total_tokens": 120565}
|
158 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 120569, "completion_tokens": 859, "total_tokens": 121428}
|
159 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 121432, "completion_tokens": 860, "total_tokens": 122292}
|
160 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 122296, "completion_tokens": 838, "total_tokens": 123134}
|
161 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 123138, "completion_tokens": 849, "total_tokens": 123987}
|
162 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 123991, "completion_tokens": 838, "total_tokens": 124829}
|
163 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 124833, "completion_tokens": 828, "total_tokens": 125661}
|
164 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 125665, "completion_tokens": 829, "total_tokens": 126494}
|
165 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 126498, "completion_tokens": 787, "total_tokens": 127285}
|
166 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 131556, "completion_tokens": 839, "total_tokens": 132395}
|
167 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 132399, "completion_tokens": 840, "total_tokens": 133239}
|
168 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 133243, "completion_tokens": 818, "total_tokens": 134061}
|
169 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 134065, "completion_tokens": 825, "total_tokens": 134890}
|
170 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 134912, "completion_tokens": 823, "total_tokens": 135735}
|
171 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 135748, "completion_tokens": 686, "total_tokens": 136434}
|
172 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 155104, "completion_tokens": 903, "total_tokens": 156007}
|
173 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 156011, "completion_tokens": 859, "total_tokens": 156870}
|
174 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 156874, "completion_tokens": 837, "total_tokens": 157711}
|
175 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 157732, "completion_tokens": 416, "total_tokens": 158148}
|
176 |
+
{"model": "deepseek-v3", "provider": "Blackbox", "prompt_tokens": 16, "completion_tokens": 0, "total_tokens": 16}
|
177 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 177208, "completion_tokens": 909, "total_tokens": 178117}
|
178 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 178121, "completion_tokens": 907, "total_tokens": 179028}
|
179 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 179041, "completion_tokens": 899, "total_tokens": 179940}
|
180 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 179953, "completion_tokens": 864, "total_tokens": 180817}
|
181 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 180830, "completion_tokens": 935, "total_tokens": 181765}
|
182 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 181787, "completion_tokens": 410, "total_tokens": 182197}
|
183 |
+
{"model": "claude", "provider": "PollinationsAI", "prompt_tokens": 10, "completion_tokens": 184, "total_tokens": 194}
|
184 |
+
{"model": "searchgpt", "provider": "PollinationsAI", "completion_tokens": 266, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 319, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 585}
|
185 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 182221, "completion_tokens": 912, "total_tokens": 183133}
|
186 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 183146, "completion_tokens": 118, "total_tokens": 183264}
|
187 |
+
{"model": "deepseek-v3", "provider": "DeepInfraChat", "prompt_tokens": 740, "total_tokens": 1421, "completion_tokens": 681, "estimated_cost": 0.0009686899999999999}
|
188 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 25, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 35}
|
189 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 74, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 84}
|
190 |
+
{"model": "qwen-coder", "provider": "PollinationsAI", "prompt_tokens": 154, "total_tokens": 184, "completion_tokens": 30, "prompt_tokens_details": null}
|
191 |
+
{"model": "qwen-coder", "provider": "PollinationsAI", "prompt_tokens": 194, "total_tokens": 241, "completion_tokens": 47, "prompt_tokens_details": null}
|
192 |
+
{"model": "deepseek-v3", "provider": "DeepSeekAPI", "prompt_tokens": 8, "completion_tokens": 11, "total_tokens": 19}
|
193 |
+
{"model": "deepseek-v3", "provider": "DeepInfraChat", "prompt_tokens": 11, "total_tokens": 583, "completion_tokens": 572, "estimated_cost": 0.0005144699999999999}
|
194 |
+
{"model": "deepseek-v3", "provider": "DeepInfraChat", "prompt_tokens": 9, "total_tokens": 624, "completion_tokens": 615, "estimated_cost": 0.00055176}
|
195 |
+
{"model": "deepseek-v3", "provider": "OIVSCode", "prompt_tokens": 18, "completion_tokens": 0, "total_tokens": 18}
|
196 |
+
{"model": "qvq-72b", "provider": "HuggingSpace", "prompt_tokens": 18, "completion_tokens": 0, "total_tokens": 18}
|
197 |
+
{"model": "qvq-72b", "provider": "HuggingSpace", "prompt_tokens": 174, "completion_tokens": 0, "total_tokens": 174}
|
198 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 125, "total_tokens": 274, "completion_tokens": 149, "estimated_cost": 0.00045135}
|
199 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 10, "total_tokens": 170, "completion_tokens": 160, "estimated_cost": 0.00039150000000000003}
|
200 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 321, "completion_tokens": 590, "total_tokens": 911}
|
201 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 758, "completion_tokens": 0, "total_tokens": 758}
|
202 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 1408, "total_tokens": 2278, "completion_tokens": 870, "estimated_cost": 0.003144}
|
203 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 1910, "completion_tokens": 474, "total_tokens": 2384, "prompt_tokens_details": {"cached_tokens": 0}, "prompt_cache_hit_tokens": 0, "prompt_cache_miss_tokens": 1910}
|
204 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 3766, "completion_tokens": 1005, "total_tokens": 4771}
|
205 |
+
{"model": "qvq-72b", "provider": "HuggingSpace", "prompt_tokens": 27, "completion_tokens": 0, "total_tokens": 27}
|
206 |
+
{"model": "qvq-72b", "provider": "HuggingSpace", "prompt_tokens": 240, "completion_tokens": 0, "total_tokens": 240}
|
207 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 8, "completion_tokens": 9, "total_tokens": 17}
|
208 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 31, "completion_tokens": 688, "total_tokens": 719}
|
209 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 736, "completion_tokens": 449, "total_tokens": 1185}
|
210 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 1212, "completion_tokens": 142, "total_tokens": 1354}
|
211 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 1367, "completion_tokens": 1731, "total_tokens": 3098}
|
212 |
+
{"model": "gpt-4", "provider": "DDG", "prompt_tokens": 3109, "completion_tokens": 1034, "total_tokens": 4143}
|
213 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 4147, "completion_tokens": 2230, "total_tokens": 6377}
|
214 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 8, "completion_tokens": 13, "total_tokens": 21}
|
215 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 44, "completion_tokens": 57, "total_tokens": 101}
|
216 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 66, "completion_tokens": 545, "total_tokens": 611}
|
217 |
+
{"model": "gpt-4", "provider": "Yqcloud", "prompt_tokens": 45, "completion_tokens": 566, "total_tokens": 611}
|
218 |
+
{"model": "gpt-4", "provider": "Yqcloud", "prompt_tokens": 642, "completion_tokens": 1804, "total_tokens": 2446}
|
219 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 2458, "completion_tokens": 1097, "total_tokens": 3555}
|
220 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 3567, "completion_tokens": 1580, "total_tokens": 5147}
|
221 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 5159, "completion_tokens": 1793, "total_tokens": 6952}
|
222 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 6963, "completion_tokens": 1492, "total_tokens": 8455}
|
223 |
+
{"model": "qwen-2.5-coder-32b", "provider": "PollinationsAI", "prompt_tokens": 38, "completion_tokens": 1549, "total_tokens": 1587}
|
224 |
+
{"model": "qwen-2.5-coder-32b", "provider": "PollinationsAI", "prompt_tokens": 1611, "completion_tokens": 1558, "total_tokens": 3169}
|
225 |
+
{"model": "qwen-2.5-coder-32b", "provider": "PollinationsAI", "prompt_tokens": 2694, "completion_tokens": 1169, "total_tokens": 3863}
|
226 |
+
{"model": "qwen-2.5-coder-32b", "provider": "PollinationsAI", "prompt_tokens": 2698, "completion_tokens": 1706, "total_tokens": 4404}
|
227 |
+
{"model": "qwen-2.5-coder-32b", "provider": "PollinationsAI", "prompt_tokens": 15, "completion_tokens": 99, "total_tokens": 114}
|
228 |
+
{"model": "qwen-2.5-coder-32b", "provider": "PollinationsAI", "prompt_tokens": 2804, "completion_tokens": 205, "total_tokens": 3009}
|
229 |
+
{"model": "deepseek-ai/DeepSeek-V3", "provider": "DeepInfraChat", "prompt_tokens": 2944, "total_tokens": 4353, "completion_tokens": 1409, "estimated_cost": 0.0026965699999999997}
|
230 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 3041, "completion_tokens": 1024, "total_tokens": 4065}
|
231 |
+
{"model": "tulu3-405b", "provider": "AllenAI", "prompt_tokens": 4151, "completion_tokens": 478, "total_tokens": 4629}
|
232 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 4646, "completion_tokens": 1026, "total_tokens": 5672}
|
233 |
+
{"model": "openai", "provider": "PollinationsAI", "prompt_tokens": 4646, "completion_tokens": 1316, "total_tokens": 5962}
|
234 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 6010, "completion_tokens": 1045, "total_tokens": 7055}
|
235 |
+
{"model": "chat-llama-3-1-70b", "provider": "Glider", "prompt_tokens": 8118, "completion_tokens": 1209, "total_tokens": 9327}
|
236 |
+
{"model": "gemini-1.5-pro", "provider": "FreeGpt", "prompt_tokens": 9404, "completion_tokens": 1194, "total_tokens": 10598}
|
237 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1169, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 34, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1203}
|
238 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1390, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1224, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2614}
|
239 |
+
{"model": "sd-3.5", "provider": "HuggingFace", "prompt_tokens": 384, "completion_tokens": 467, "total_tokens": 851}
|
240 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 130, "completion_tokens": 153, "total_tokens": 283}
|
241 |
+
{"model": "gpt-4", "provider": "DDG", "prompt_tokens": 300, "completion_tokens": 636, "total_tokens": 936}
|
242 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 948, "completion_tokens": 1409, "total_tokens": 2357}
|
243 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 2402, "completion_tokens": 1574, "total_tokens": 3976}
|
244 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 3991, "completion_tokens": 1814, "total_tokens": 5805}
|
245 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 5818, "completion_tokens": 1842, "total_tokens": 7660}
|
246 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 7707, "completion_tokens": 1791, "total_tokens": 9498}
|
247 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 9562, "completion_tokens": 1781, "total_tokens": 11343}
|
248 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 11395, "completion_tokens": 1763, "total_tokens": 13158}
|
249 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 13194, "completion_tokens": 1753, "total_tokens": 14947}
|
250 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 14965, "completion_tokens": 1854, "total_tokens": 16819}
|
251 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 16849, "completion_tokens": 1803, "total_tokens": 18652}
|
252 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 18687, "completion_tokens": 1608, "total_tokens": 20295}
|
253 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 20317, "completion_tokens": 1732, "total_tokens": 22049}
|
254 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 22062, "completion_tokens": 1871, "total_tokens": 23933}
|
255 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 23973, "completion_tokens": 1616, "total_tokens": 25589}
|
256 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 25607, "completion_tokens": 921, "total_tokens": 26528}
|
257 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 26539, "completion_tokens": 1557, "total_tokens": 28096}
|
258 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 28109, "completion_tokens": 1858, "total_tokens": 29967}
|
259 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 29979, "completion_tokens": 1354, "total_tokens": 31333}
|
260 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 31343, "completion_tokens": 1693, "total_tokens": 33036}
|
261 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 33046, "completion_tokens": 1708, "total_tokens": 34754}
|
262 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 34764, "completion_tokens": 1695, "total_tokens": 36459}
|
263 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 36471, "completion_tokens": 1670, "total_tokens": 38141}
|
264 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 38178, "completion_tokens": 1703, "total_tokens": 39881}
|
265 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 39903, "completion_tokens": 848, "total_tokens": 40751}
|
266 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 8580, "completion_tokens": 1277, "total_tokens": 9857}
|
267 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 9883, "completion_tokens": 1803, "total_tokens": 11686}
|
268 |
+
{"model": "claude-email", "provider": "PollinationsAI", "completion_tokens": 56, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 10, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 66}
|
269 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 8, "completion_tokens": 9, "total_tokens": 17}
|
270 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 12, "completion_tokens": 189, "total_tokens": 201}
|
271 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 31, "completion_tokens": 254, "total_tokens": 285}
|
272 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 25, "completion_tokens": 84, "total_tokens": 109}
|
273 |
+
{"model": "chat-llama-3-1-70b", "provider": "Glider", "prompt_tokens": 122, "completion_tokens": 214, "total_tokens": 336}
|
274 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 371, "completion_tokens": 277, "total_tokens": 648}
|
275 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 653, "completion_tokens": 397, "total_tokens": 1050}
|
276 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 1091, "completion_tokens": 343, "total_tokens": 1434}
|
277 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 1453, "completion_tokens": 12, "total_tokens": 1465}
|
278 |
+
{"model": "phi-4", "provider": "PollinationsAI", "prompt_tokens": 1475, "completion_tokens": 14, "total_tokens": 1489}
|
279 |
+
{"model": "phi-4", "provider": "PollinationsAI", "prompt_tokens": 1498, "completion_tokens": 26, "total_tokens": 1524}
|
280 |
+
{"model": "phi-4", "provider": "PollinationsAI", "prompt_tokens": 1498, "completion_tokens": 14, "total_tokens": 1512}
|
281 |
+
{"model": "phi-4", "provider": "DeepInfraChat", "prompt_tokens": 1495, "total_tokens": 1753, "completion_tokens": 258, "estimated_cost": 0.00014077}
|
282 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 1813, "completion_tokens": 50, "total_tokens": 1863}
|
283 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 1879, "completion_tokens": 137, "total_tokens": 2016}
|
284 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 2038, "completion_tokens": 198, "total_tokens": 2236}
|
285 |
+
{"model": "o1", "provider": "Blackbox", "prompt_tokens": 2250, "completion_tokens": 10, "total_tokens": 2260}
|
286 |
+
{"model": "o1", "provider": "Blackbox", "prompt_tokens": 2250, "completion_tokens": 10, "total_tokens": 2260}
|
287 |
+
{"model": "o1", "provider": "Blackbox", "prompt_tokens": 2284, "completion_tokens": 44, "total_tokens": 2328}
|
288 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 75, "completion_tokens": 0, "total_tokens": 75}
|
289 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 1068, "completion_tokens": 0, "total_tokens": 1068}
|
290 |
+
{"model": "Claude-Sonnet-3.5 (Premium)", "provider": "Blackbox", "prompt_tokens": 2097, "completion_tokens": 0, "total_tokens": 2097}
|
291 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 895, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 94, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 989}
|
292 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 1839, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 192, "rejected_prediction_tokens": 0}, "prompt_tokens": 30, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1869}
|
293 |
+
{"model": "command-r", "provider": "HuggingSpace", "prompt_tokens": 413, "completion_tokens": 1025, "total_tokens": 1438}
|
294 |
+
{"model": "claude", "provider": "PollinationsAI", "prompt_tokens": 1233, "completion_tokens": 184, "total_tokens": 1417}
|
295 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 1445, "completion_tokens": 2325, "total_tokens": 3770}
|
296 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 30, "completion_tokens": 66, "total_tokens": 96}
|
297 |
+
{"model": "graffiti", "provider": "ARTA", "prompt_tokens": 21, "completion_tokens": 206, "total_tokens": 227}
|
298 |
+
{"model": "graffiti", "provider": "ARTA", "prompt_tokens": 36, "completion_tokens": 182, "total_tokens": 218}
|
299 |
+
{"model": "graffiti", "provider": "ARTA", "prompt_tokens": 51, "completion_tokens": 182, "total_tokens": 233}
|
300 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 77, "completion_tokens": 613, "total_tokens": 690}
|
301 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 98, "completion_tokens": 480, "total_tokens": 578}
|
302 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 117, "completion_tokens": 398, "total_tokens": 515}
|
303 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 171, "completion_tokens": 1107, "total_tokens": 1278}
|
304 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 11703, "completion_tokens": 1414, "total_tokens": 13117}
|
305 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 13205, "completion_tokens": 1470, "total_tokens": 14675}
|
306 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 18, "completion_tokens": 439, "total_tokens": 457}
|
307 |
+
{"model": "turbo", "provider": "PollinationsAI", "prompt_tokens": 38, "completion_tokens": 441, "total_tokens": 479}
|
308 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 58, "completion_tokens": 441, "total_tokens": 499}
|
309 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 58, "completion_tokens": 447, "total_tokens": 505}
|
310 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 20, "completion_tokens": 517, "total_tokens": 537}
|
311 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 20, "completion_tokens": 519, "total_tokens": 539}
|
312 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 20, "completion_tokens": 513, "total_tokens": 533}
|
313 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 20, "completion_tokens": 513, "total_tokens": 533}
|
314 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 15, "completion_tokens": 348, "total_tokens": 363}
|
315 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 27, "completion_tokens": 163, "total_tokens": 190}
|
316 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 15, "completion_tokens": 228, "total_tokens": 243}
|
317 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 57, "completion_tokens": 1004, "total_tokens": 1061}
|
318 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 39, "completion_tokens": 169, "total_tokens": 208}
|
319 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 53, "completion_tokens": 187, "total_tokens": 240}
|
320 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 67, "completion_tokens": 185, "total_tokens": 252}
|
321 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 81, "completion_tokens": 177, "total_tokens": 258}
|
322 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 16, "completion_tokens": 219, "total_tokens": 235}
|
323 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 16, "completion_tokens": 223, "total_tokens": 239}
|
324 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 34, "completion_tokens": 221, "total_tokens": 255}
|
325 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 34, "completion_tokens": 221, "total_tokens": 255}
|
326 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 34, "completion_tokens": 219, "total_tokens": 253}
|
327 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 57, "completion_tokens": 221, "total_tokens": 278}
|
328 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 57, "completion_tokens": 225, "total_tokens": 282}
|
329 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 75, "completion_tokens": 223, "total_tokens": 298}
|
330 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 75, "completion_tokens": 223, "total_tokens": 298}
|
331 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 75, "completion_tokens": 223, "total_tokens": 298}
|
332 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 75, "completion_tokens": 221, "total_tokens": 296}
|
333 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 75, "completion_tokens": 217, "total_tokens": 292}
|
334 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 75, "completion_tokens": 221, "total_tokens": 296}
|
335 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 75, "completion_tokens": 215, "total_tokens": 290}
|
336 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 18, "completion_tokens": 277, "total_tokens": 295}
|
337 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 18, "completion_tokens": 275, "total_tokens": 293}
|
338 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 18, "completion_tokens": 273, "total_tokens": 291}
|
339 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 18, "completion_tokens": 271, "total_tokens": 289}
|
340 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 38, "completion_tokens": 277, "total_tokens": 315}
|
341 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 38, "completion_tokens": 283, "total_tokens": 321}
|
342 |
+
{"model": "turbo", "provider": "PollinationsAI", "prompt_tokens": 58, "completion_tokens": 269, "total_tokens": 327}
|
343 |
+
{"model": "turbo", "provider": "PollinationsAI", "prompt_tokens": 78, "completion_tokens": 273, "total_tokens": 351}
|
344 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 98, "completion_tokens": 277, "total_tokens": 375}
|
345 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 118, "completion_tokens": 279, "total_tokens": 397}
|
346 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 128, "completion_tokens": 153, "total_tokens": 281}
|
347 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 146, "completion_tokens": 221, "total_tokens": 367}
|
348 |
+
{"model": "llama-3.1-70b", "provider": "Blackbox", "prompt_tokens": 12, "completion_tokens": 255, "total_tokens": 267}
|
349 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 146, "completion_tokens": 219, "total_tokens": 365}
|
350 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 8, "completion_tokens": 153, "total_tokens": 161}
|
351 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 8, "completion_tokens": 155, "total_tokens": 163}
|
352 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 8, "completion_tokens": 153, "total_tokens": 161}
|
353 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 23, "completion_tokens": 157, "total_tokens": 180}
|
354 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 23, "completion_tokens": 155, "total_tokens": 178}
|
355 |
+
{"model": "turbo", "provider": "PollinationsAI", "prompt_tokens": 33, "completion_tokens": 149, "total_tokens": 182}
|
356 |
+
{"model": "turbo", "provider": "PollinationsAI", "prompt_tokens": 33, "completion_tokens": 153, "total_tokens": 186}
|
357 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 33, "completion_tokens": 147, "total_tokens": 180}
|
358 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 33, "completion_tokens": 145, "total_tokens": 178}
|
359 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 33, "completion_tokens": 153, "total_tokens": 186}
|
360 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 33, "completion_tokens": 153, "total_tokens": 186}
|
361 |
+
{"model": "gpt-4", "provider": "Yqcloud", "prompt_tokens": 707, "completion_tokens": 1983, "total_tokens": 2690}
|
362 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 11, "completion_tokens": 168, "total_tokens": 179}
|
363 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 11, "completion_tokens": 176, "total_tokens": 187}
|
364 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 11, "completion_tokens": 168, "total_tokens": 179}
|
365 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 11, "completion_tokens": 176, "total_tokens": 187}
|
366 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 11, "completion_tokens": 172, "total_tokens": 183}
|
367 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 100, "completion_tokens": 870, "total_tokens": 970}
|
368 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 87, "completion_tokens": 866, "total_tokens": 953}
|
369 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 176, "completion_tokens": 872, "total_tokens": 1048}
|
370 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 265, "completion_tokens": 864, "total_tokens": 1129}
|
371 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 354, "completion_tokens": 870, "total_tokens": 1224}
|
372 |
+
{"model": "gpt-4", "provider": "DDG", "prompt_tokens": 2711, "completion_tokens": 1026, "total_tokens": 3737}
|
373 |
+
{"model": "gpt-4", "provider": "DDG", "prompt_tokens": 3782, "completion_tokens": 1027, "total_tokens": 4809}
|
374 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 4819, "completion_tokens": 2025, "total_tokens": 6844}
|
375 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 6864, "completion_tokens": 1935, "total_tokens": 8799}
|
376 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 8827, "completion_tokens": 2131, "total_tokens": 10958}
|
377 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 10980, "completion_tokens": 1920, "total_tokens": 12900}
|
378 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 9, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 30, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 39}
|
379 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 321, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 329, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 650}
|
380 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 235, "completion_tokens": 466, "total_tokens": 701}
|
381 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 257, "completion_tokens": 228, "total_tokens": 485}
|
382 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 13052, "completion_tokens": 1903, "total_tokens": 14955}
|
383 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 14996, "completion_tokens": 1958, "total_tokens": 16954}
|
usage/2025-03-15.jsonl
ADDED
@@ -0,0 +1,152 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 17071, "completion_tokens": 2030, "total_tokens": 19101}
|
2 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 19116, "completion_tokens": 1244, "total_tokens": 20360}
|
3 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 20398, "completion_tokens": 2031, "total_tokens": 22429}
|
4 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 22441, "completion_tokens": 1960, "total_tokens": 24401}
|
5 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 24738, "completion_tokens": 1690, "total_tokens": 26428}
|
6 |
+
{"model": "dall-e-3", "provider": "PollinationsImage", "prompt_tokens": 41, "completion_tokens": 506, "total_tokens": 547}
|
7 |
+
{"model": "flux", "provider": "PollinationsImage", "prompt_tokens": 41, "completion_tokens": 504, "total_tokens": 545}
|
8 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 41, "completion_tokens": 504, "total_tokens": 545}
|
9 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 19, "completion_tokens": 3048, "total_tokens": 3067}
|
10 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 108, "completion_tokens": 917, "total_tokens": 1025}
|
11 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 201, "completion_tokens": 852, "total_tokens": 1053}
|
12 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 294, "completion_tokens": 812, "total_tokens": 1106}
|
13 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 384, "completion_tokens": 801, "total_tokens": 1185}
|
14 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 481, "completion_tokens": 822, "total_tokens": 1303}
|
15 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 583, "completion_tokens": 877, "total_tokens": 1460}
|
16 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 677, "completion_tokens": 807, "total_tokens": 1484}
|
17 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 803, "completion_tokens": 1165, "total_tokens": 1968}
|
18 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 933, "completion_tokens": 1213, "total_tokens": 2146}
|
19 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1071, "completion_tokens": 1240, "total_tokens": 2311}
|
20 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1098, "completion_tokens": 328, "total_tokens": 1426}
|
21 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1125, "completion_tokens": 326, "total_tokens": 1451}
|
22 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1152, "completion_tokens": 330, "total_tokens": 1482}
|
23 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1179, "completion_tokens": 332, "total_tokens": 1511}
|
24 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1206, "completion_tokens": 330, "total_tokens": 1536}
|
25 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1233, "completion_tokens": 332, "total_tokens": 1565}
|
26 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1254, "completion_tokens": 263, "total_tokens": 1517}
|
27 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1275, "completion_tokens": 265, "total_tokens": 1540}
|
28 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1296, "completion_tokens": 263, "total_tokens": 1559}
|
29 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1433, "completion_tokens": 1228, "total_tokens": 2661}
|
30 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1561, "completion_tokens": 1115, "total_tokens": 2676}
|
31 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1690, "completion_tokens": 1154, "total_tokens": 2844}
|
32 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1820, "completion_tokens": 1145, "total_tokens": 2965}
|
33 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 1945, "completion_tokens": 1164, "total_tokens": 3109}
|
34 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 2062, "completion_tokens": 1048, "total_tokens": 3110}
|
35 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 2178, "completion_tokens": 1023, "total_tokens": 3201}
|
36 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 2291, "completion_tokens": 1004, "total_tokens": 3295}
|
37 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 88, "completion_tokens": 851, "total_tokens": 939}
|
38 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 181, "completion_tokens": 918, "total_tokens": 1099}
|
39 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 284, "completion_tokens": 948, "total_tokens": 1232}
|
40 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 387, "completion_tokens": 904, "total_tokens": 1291}
|
41 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 489, "completion_tokens": 885, "total_tokens": 1374}
|
42 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 587, "completion_tokens": 933, "total_tokens": 1520}
|
43 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 675, "completion_tokens": 833, "total_tokens": 1508}
|
44 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 791, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 46, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 837}
|
45 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 1327, "completion_tokens": 1158, "total_tokens": 2485}
|
46 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 3571, "completion_tokens": 360, "total_tokens": 3931}
|
47 |
+
{"model": "command-r7b", "provider": "HuggingSpace", "prompt_tokens": 6605, "completion_tokens": 1457, "total_tokens": 8062}
|
48 |
+
{"model": "command-r7b", "provider": "HuggingSpace", "prompt_tokens": 9407, "completion_tokens": 1523, "total_tokens": 10930}
|
49 |
+
{"model": "llama-3.2-11b", "provider": "HuggingFace", "prompt_tokens": 16370, "completion_tokens": 3299, "total_tokens": 19669}
|
50 |
+
{"model": "HuggingFaceH4/zephyr-7b-alpha", "provider": "HuggingFace", "prompt_tokens": 25320, "completion_tokens": 29, "total_tokens": 25349}
|
51 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 29430, "completion_tokens": 1617, "total_tokens": 31047}
|
52 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 31081, "completion_tokens": 304, "total_tokens": 31385}
|
53 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 31447, "completion_tokens": 461, "total_tokens": 31908}
|
54 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 31447, "completion_tokens": 340, "total_tokens": 31787}
|
55 |
+
{"model": "command-r-plus-08-2024", "provider": "HuggingSpace", "prompt_tokens": 36137, "completion_tokens": 2155, "total_tokens": 38292}
|
56 |
+
{"model": "command-r-plus-08-2024", "provider": "HuggingSpace", "prompt_tokens": 39628, "completion_tokens": 1657, "total_tokens": 41285}
|
57 |
+
{"model": "command-r-plus-08-2024", "provider": "HuggingSpace", "prompt_tokens": 43882, "completion_tokens": 1562, "total_tokens": 45444}
|
58 |
+
{"model": "command-r-plus-08-2024", "provider": "HuggingSpace", "prompt_tokens": 43882, "completion_tokens": 2024, "total_tokens": 45906}
|
59 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1168, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2752, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3920}
|
60 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1176, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5126, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 6302}
|
61 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1247, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5384, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 6631}
|
62 |
+
{"model": "command-r-plus-08-2024", "provider": "HuggingSpace", "prompt_tokens": 47494, "completion_tokens": 1083, "total_tokens": 48577}
|
63 |
+
{"model": "command-r-plus-08-2024", "provider": "HuggingSpace", "prompt_tokens": 48647, "completion_tokens": 548, "total_tokens": 49195}
|
64 |
+
{"model": "command-r-plus-08-2024", "provider": "HuggingSpace", "prompt_tokens": 49264, "completion_tokens": 504, "total_tokens": 49768}
|
65 |
+
{"model": "command-r-plus-08-2024", "provider": "HuggingSpace", "prompt_tokens": 49787, "completion_tokens": 599, "total_tokens": 50386}
|
66 |
+
{"model": "command-r-plus-08-2024", "provider": "HuggingSpace", "prompt_tokens": 50413, "completion_tokens": 650, "total_tokens": 51063}
|
67 |
+
{"model": "command-r-plus-08-2024", "provider": "HuggingSpace", "prompt_tokens": 51106, "completion_tokens": 567, "total_tokens": 51673}
|
68 |
+
{"model": "qwq-32b", "provider": "HuggingFace", "prompt_tokens": 51106, "completion_tokens": 136, "total_tokens": 51242}
|
69 |
+
{"model": "qwq-32b", "provider": "HuggingFace", "prompt_tokens": 51690, "completion_tokens": 176, "total_tokens": 51866}
|
70 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 29, "completion_tokens": 701, "total_tokens": 730}
|
71 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 44, "completion_tokens": 68, "total_tokens": 112}
|
72 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 66, "completion_tokens": 283, "total_tokens": 349}
|
73 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 11, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 21, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 32}
|
74 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 570, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 121, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 691}
|
75 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 742, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 716, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1458}
|
76 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 9, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 20, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 29}
|
77 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 50, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 43, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 93}
|
78 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 30, "completion_tokens": 523, "total_tokens": 553}
|
79 |
+
{"model": "DeepSeek-R1", "provider": "Blackbox", "prompt_tokens": 824, "completion_tokens": 1, "total_tokens": 825}
|
80 |
+
{"model": "o1-mini", "provider": "PollinationsAI", "completion_tokens": 941, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 128, "rejected_prediction_tokens": 0}, "prompt_tokens": 19, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 960}
|
81 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1418, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 30, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1448}
|
82 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 15, "completion_tokens": 176, "total_tokens": 191}
|
83 |
+
{"model": "qwen-coder", "provider": "PollinationsAI", "prompt_tokens": 112, "total_tokens": 854, "completion_tokens": 742, "prompt_tokens_details": null}
|
84 |
+
{"model": "qwen-coder", "provider": "PollinationsAI", "prompt_tokens": 912, "total_tokens": 2296, "completion_tokens": 1384, "prompt_tokens_details": null}
|
85 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 1175, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2148, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3323}
|
86 |
+
{"model": "claude-3-haiku", "provider": "DDG", "prompt_tokens": 10, "completion_tokens": 57, "total_tokens": 67}
|
87 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 12, "completion_tokens": 0, "total_tokens": 12}
|
88 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 516, "completion_tokens": 294, "total_tokens": 810}
|
89 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 32, "completion_tokens": 2287, "total_tokens": 2319}
|
90 |
+
{"model": "midjourney", "provider": "PollinationsImage", "prompt_tokens": 26822, "completion_tokens": 3409, "total_tokens": 30231}
|
91 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 26822, "completion_tokens": 1683, "total_tokens": 28505}
|
92 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 28924, "completion_tokens": 1557, "total_tokens": 30481}
|
93 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 10, "completion_tokens": 26, "total_tokens": 36}
|
94 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 30533, "completion_tokens": 1506, "total_tokens": 32039}
|
95 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 16, "completion_tokens": 500, "total_tokens": 516}
|
96 |
+
{"model": "gpt-4o-mini", "provider": "ChatGptEs", "prompt_tokens": 11, "completion_tokens": 23, "total_tokens": 34}
|
97 |
+
{"model": "gpt-4o-mini", "provider": "ChatGptEs", "prompt_tokens": 21, "completion_tokens": 43, "total_tokens": 64}
|
98 |
+
{"model": "flux-schnell", "provider": "PollinationsImage", "prompt_tokens": 619, "completion_tokens": 1046, "total_tokens": 1665}
|
99 |
+
{"model": "flux-schnell", "provider": "PollinationsImage", "prompt_tokens": 746, "completion_tokens": 1046, "total_tokens": 1792}
|
100 |
+
{"model": "flux-schnell", "provider": "HuggingSpace", "prompt_tokens": 27, "completion_tokens": 256, "total_tokens": 283}
|
101 |
+
{"model": "o3-mini", "provider": "PollinationsAI", "prompt_tokens": 27, "completion_tokens": 38, "total_tokens": 65}
|
102 |
+
{"model": "o3-mini", "provider": "PollinationsAI", "prompt_tokens": 27, "completion_tokens": 52, "total_tokens": 79}
|
103 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 148, "completion_tokens": 150, "total_tokens": 298}
|
104 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 419, "completion_tokens": 109, "total_tokens": 528}
|
105 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 37, "completion_tokens": 326, "total_tokens": 363}
|
106 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 385, "completion_tokens": 341, "total_tokens": 726}
|
107 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 37, "completion_tokens": 242, "total_tokens": 279}
|
108 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 301, "completion_tokens": 183, "total_tokens": 484}
|
109 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 495, "completion_tokens": 64, "total_tokens": 559}
|
110 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 32192, "completion_tokens": 1622, "total_tokens": 33814}
|
111 |
+
{"model": "o3-mini", "provider": "Copilot", "prompt_tokens": 588, "completion_tokens": 203, "total_tokens": 791}
|
112 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 823, "completion_tokens": 73, "total_tokens": 896}
|
113 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 823, "completion_tokens": 293, "total_tokens": 1116}
|
114 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 33965, "completion_tokens": 781, "total_tokens": 34746}
|
115 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 34774, "completion_tokens": 789, "total_tokens": 35563}
|
116 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 35583, "completion_tokens": 2065, "total_tokens": 37648}
|
117 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 21, "completion_tokens": 91, "total_tokens": 112}
|
118 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 61, "completion_tokens": 280, "total_tokens": 341}
|
119 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 37708, "completion_tokens": 1249, "total_tokens": 38957}
|
120 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 38969, "completion_tokens": 1824, "total_tokens": 40793}
|
121 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 45, "completion_tokens": 819, "total_tokens": 864}
|
122 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 11, "completion_tokens": 117, "total_tokens": 128}
|
123 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 11, "completion_tokens": 59, "total_tokens": 70}
|
124 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 40867, "completion_tokens": 1471, "total_tokens": 42338}
|
125 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 42443, "completion_tokens": 534, "total_tokens": 42977}
|
126 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 43093, "completion_tokens": 740, "total_tokens": 43833}
|
127 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 43851, "completion_tokens": 151, "total_tokens": 44002}
|
128 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 44432, "completion_tokens": 722, "total_tokens": 45154}
|
129 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 45302, "completion_tokens": 1052, "total_tokens": 46354}
|
130 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 46576, "completion_tokens": 1356, "total_tokens": 47932}
|
131 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 47969, "completion_tokens": 1139, "total_tokens": 49108}
|
132 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 49354, "completion_tokens": 1030, "total_tokens": 50384}
|
133 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 50405, "completion_tokens": 788, "total_tokens": 51193}
|
134 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 646, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 33, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 679}
|
135 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 18, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 21, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 39}
|
136 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1045, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 737, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1782}
|
137 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1920, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1807, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3727}
|
138 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 51210, "completion_tokens": 2009, "total_tokens": 53219}
|
139 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 53238, "completion_tokens": 1038, "total_tokens": 54276}
|
140 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1181, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3759, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 4940}
|
141 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 54285, "completion_tokens": 1228, "total_tokens": 55513}
|
142 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 55548, "completion_tokens": 1453, "total_tokens": 57001}
|
143 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1326, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5289, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 6615}
|
144 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 57019, "completion_tokens": 1777, "total_tokens": 58796}
|
145 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1528, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 6655, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 8183}
|
146 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1094, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 6655, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 7749}
|
147 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 58817, "completion_tokens": 1876, "total_tokens": 60693}
|
148 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 838, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 9301, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 10139}
|
149 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 60790, "completion_tokens": 578, "total_tokens": 61368}
|
150 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 60790, "completion_tokens": 1684, "total_tokens": 62474}
|
151 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1657, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 10161, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 11818}
|
152 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 978, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 11846, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 12824}
|
usage/2025-03-16.jsonl
ADDED
@@ -0,0 +1,277 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1876, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 12844, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 14720}
|
2 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1269, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 14769, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 12672}, "total_tokens": 16038}
|
3 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 41, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 16062, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 16103}
|
4 |
+
{"model": "gemini-1.5-pro", "provider": "FreeGpt", "prompt_tokens": 1479, "completion_tokens": 823, "total_tokens": 2302}
|
5 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 2316, "completion_tokens": 690, "total_tokens": 3006}
|
6 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 3023, "completion_tokens": 341, "total_tokens": 3364}
|
7 |
+
{"model": "deepseek-ai/DeepSeek-V3", "provider": "DeepInfraChat", "prompt_tokens": 2585, "total_tokens": 3355, "completion_tokens": 770, "estimated_cost": 0.00195195}
|
8 |
+
{"model": "gemini-1.5-pro", "provider": "FreeGpt", "prompt_tokens": 4485, "completion_tokens": 294, "total_tokens": 4779}
|
9 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 5371, "completion_tokens": 573, "total_tokens": 5944}
|
10 |
+
{"model": "gemini-1.5-pro", "provider": "FreeGpt", "prompt_tokens": 5964, "completion_tokens": 838, "total_tokens": 6802}
|
11 |
+
{"model": "gemini-1.5-pro", "provider": "FreeGpt", "prompt_tokens": 6820, "completion_tokens": 413, "total_tokens": 7233}
|
12 |
+
{"model": "openai", "provider": "PollinationsAI", "prompt_tokens": 7253, "completion_tokens": 768, "total_tokens": 8021}
|
13 |
+
{"model": "openai", "provider": "PollinationsAI", "prompt_tokens": 8046, "completion_tokens": 768, "total_tokens": 8814}
|
14 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 8851, "completion_tokens": 801, "total_tokens": 9652}
|
15 |
+
{"model": "gemini-1.5-pro", "provider": "FreeGpt", "prompt_tokens": 9691, "completion_tokens": 557, "total_tokens": 10248}
|
16 |
+
{"model": "chat-llama-3-1-70b", "provider": "Glider", "prompt_tokens": 10282, "completion_tokens": 243, "total_tokens": 10525}
|
17 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 10547, "completion_tokens": 786, "total_tokens": 11333}
|
18 |
+
{"model": "chat-llama-3-1-70b", "provider": "Glider", "prompt_tokens": 11371, "completion_tokens": 425, "total_tokens": 11796}
|
19 |
+
{"model": "gemini-1.5-pro", "provider": "FreeGpt", "prompt_tokens": 11814, "completion_tokens": 691, "total_tokens": 12505}
|
20 |
+
{"model": "gemini-1.5-pro", "provider": "FreeGpt", "prompt_tokens": 12517, "completion_tokens": 196, "total_tokens": 12713}
|
21 |
+
{"model": "chat-llama-3-1-70b", "provider": "Glider", "prompt_tokens": 12733, "completion_tokens": 280, "total_tokens": 13013}
|
22 |
+
{"model": "gemini-1.5-pro", "provider": "FreeGpt", "prompt_tokens": 13035, "completion_tokens": 463, "total_tokens": 13498}
|
23 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 63137, "completion_tokens": 1874, "total_tokens": 65011}
|
24 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 65149, "completion_tokens": 1840, "total_tokens": 66989}
|
25 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 67058, "completion_tokens": 1973, "total_tokens": 69031}
|
26 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 21, "completion_tokens": 143, "total_tokens": 164}
|
27 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 28, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 185, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 213}
|
28 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 11, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 20, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 31}
|
29 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 527, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2205, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2732}
|
30 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 520, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2750, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3270}
|
31 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 756, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3323, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 4079}
|
32 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 971, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4113, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 5084}
|
33 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 783, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5124, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 5907}
|
34 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 783, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5959, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 5760}, "total_tokens": 6742}
|
35 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 556, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 6765, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 7321}
|
36 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 793, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 7351, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 8144}
|
37 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 937, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 8167, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 9104}
|
38 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 832, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 9130, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 9962}
|
39 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 806, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 9993, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 9728}, "total_tokens": 10799}
|
40 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 771, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 10829, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 10624}, "total_tokens": 11600}
|
41 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 743, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 11645, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 12388}
|
42 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 805, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 12413, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 13218}
|
43 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 671, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 13240, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 6528}, "total_tokens": 13911}
|
44 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 831, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 13969, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 13696}, "total_tokens": 14800}
|
45 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 993, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 14837, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 15830}
|
46 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 735, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 15851, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 14592}, "total_tokens": 16586}
|
47 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 857, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 16646, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 17503}
|
48 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 685, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 17542, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 18227}
|
49 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 870, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 18293, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 19163}
|
50 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 934, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 19200, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 20134}
|
51 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 852, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 20160, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 19968}, "total_tokens": 21012}
|
52 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1019, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 21047, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 20864}, "total_tokens": 22066}
|
53 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 994, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 22137, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 18048}, "total_tokens": 23131}
|
54 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 866, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 23151, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 24017}
|
55 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1021, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 24103, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 25124}
|
56 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 956, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 25182, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 26138}
|
57 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 1783, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 1024, "rejected_prediction_tokens": 0}, "prompt_tokens": 27977, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 29760}
|
58 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 2160, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 1280, "rejected_prediction_tokens": 0}, "prompt_tokens": 28760, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 30920}
|
59 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "completion_tokens": 3931, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 2944, "rejected_prediction_tokens": 0}, "prompt_tokens": 29797, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 33728}
|
60 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 890, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 27860, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 28750}
|
61 |
+
{"model": "o1-mini", "provider": "PollinationsAI", "completion_tokens": 2389, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 1472, "rejected_prediction_tokens": 0}, "prompt_tokens": 29797, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 29696}, "total_tokens": 32186}
|
62 |
+
{"model": "o1-mini", "provider": "PollinationsAI", "completion_tokens": 2834, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 1984, "rejected_prediction_tokens": 0}, "prompt_tokens": 30899, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 33733}
|
63 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 34, "completion_tokens": 147, "total_tokens": 181}
|
64 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 11, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 29, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 40}
|
65 |
+
{"model": "o1-mini", "provider": "PollinationsAI", "completion_tokens": 470, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 448, "rejected_prediction_tokens": 0}, "prompt_tokens": 62, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 532}
|
66 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 9, "completion_tokens": 190, "total_tokens": 199}
|
67 |
+
{"model": "gpt-4", "provider": "Copilot", "prompt_tokens": 45, "completion_tokens": 1409, "total_tokens": 1454}
|
68 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 69211, "completion_tokens": 1860, "total_tokens": 71071}
|
69 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 71166, "completion_tokens": 2051, "total_tokens": 73217}
|
70 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 39, "completion_tokens": 320, "total_tokens": 359}
|
71 |
+
{"model": "gemini-1.5-pro", "provider": "Free2GPT", "prompt_tokens": 403, "completion_tokens": 50, "total_tokens": 453}
|
72 |
+
{"model": "deepseek-ai/DeepSeek-V3", "provider": "DeepInfraChat", "prompt_tokens": 571, "total_tokens": 1111, "completion_tokens": 540, "estimated_cost": 0.00076039}
|
73 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 11, "completion_tokens": 25, "total_tokens": 36}
|
74 |
+
{"model": "gemini-1.5-pro", "provider": "Free2GPT", "prompt_tokens": 75, "completion_tokens": 50, "total_tokens": 125}
|
75 |
+
{"model": "chat-llama-3-1-70b", "provider": "Glider", "prompt_tokens": 58, "completion_tokens": 157, "total_tokens": 215}
|
76 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 53, "completion_tokens": 31, "total_tokens": 84}
|
77 |
+
{"model": "gemini-1.5-pro", "provider": "Free2GPT", "prompt_tokens": 88, "completion_tokens": 50, "total_tokens": 138}
|
78 |
+
{"model": "deepseek-ai/DeepSeek-V3", "provider": "DeepInfraChat", "prompt_tokens": 25, "total_tokens": 682, "completion_tokens": 657, "estimated_cost": 0.00059698}
|
79 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 974, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 70, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1044}
|
80 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 43, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 26, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 69}
|
81 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 157, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 95, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 252}
|
82 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 201, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 270, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 471}
|
83 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 215, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 509, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 724}
|
84 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 382, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 813, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1195}
|
85 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 76, "completion_tokens": 0, "total_tokens": 76}
|
86 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 488, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 505, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 993}
|
87 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 975, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1329, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2304}
|
88 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 1014, "completion_tokens": 0, "total_tokens": 1014}
|
89 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 1511, "completion_tokens": 0, "total_tokens": 1511}
|
90 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 974, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2407, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3381}
|
91 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 2176, "completion_tokens": 0, "total_tokens": 2176}
|
92 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 545, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2756, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3301}
|
93 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1245, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3703, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 4948}
|
94 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 3307, "total_tokens": 3607, "completion_tokens": 300, "estimated_cost": 0.00048684000000000005}
|
95 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 3607, "completion_tokens": 0, "total_tokens": 3607}
|
96 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 526, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 3872, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 4398}
|
97 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 4453, "completion_tokens": 0, "total_tokens": 4453}
|
98 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 13, "completion_tokens": 170, "total_tokens": 183}
|
99 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 13, "completion_tokens": 172, "total_tokens": 185}
|
100 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 37, "completion_tokens": 224, "total_tokens": 261}
|
101 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 59, "completion_tokens": 253, "total_tokens": 312}
|
102 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 59, "completion_tokens": 253, "total_tokens": 312}
|
103 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 59, "completion_tokens": 253, "total_tokens": 312}
|
104 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 59, "completion_tokens": 251, "total_tokens": 310}
|
105 |
+
{"model": "qwen-2.5-coder-32b", "provider": "HuggingFace", "prompt_tokens": 15, "completion_tokens": 146, "total_tokens": 161}
|
106 |
+
{"model": "qwen-2.5-coder-32b", "provider": "HuggingFace", "prompt_tokens": 177, "completion_tokens": 89, "total_tokens": 266}
|
107 |
+
{"model": "qwen-2.5-coder-32b", "provider": "HuggingFace", "prompt_tokens": 282, "completion_tokens": 66, "total_tokens": 348}
|
108 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 46, "completion_tokens": 1601, "total_tokens": 1647}
|
109 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 27, "completion_tokens": 966, "total_tokens": 993}
|
110 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 4951, "completion_tokens": 0, "total_tokens": 4951}
|
111 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 5722, "completion_tokens": 0, "total_tokens": 5722}
|
112 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 6160, "completion_tokens": 0, "total_tokens": 6160}
|
113 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 6741, "total_tokens": 7311, "completion_tokens": 570, "estimated_cost": 0.00097992}
|
114 |
+
{"model": "gemini-1.5-pro", "provider": "FreeGpt", "prompt_tokens": 155, "completion_tokens": 473, "total_tokens": 628}
|
115 |
+
{"model": "tulu3-405b", "provider": "AllenAI", "prompt_tokens": 155, "completion_tokens": 1280, "total_tokens": 1435}
|
116 |
+
{"model": "flux", "provider": "ARTA", "prompt_tokens": 3746, "completion_tokens": 1213, "total_tokens": 4959}
|
117 |
+
{"model": "tulu3-405b", "provider": "AllenAI", "prompt_tokens": 3915, "completion_tokens": 607, "total_tokens": 4522}
|
118 |
+
{"model": "llama-3.1-70b", "provider": "Glider", "prompt_tokens": 6122, "completion_tokens": 669, "total_tokens": 6791}
|
119 |
+
{"model": "flux", "provider": "HuggingSpace", "prompt_tokens": 7058, "completion_tokens": 618, "total_tokens": 7676}
|
120 |
+
{"model": "sdxl-turbo", "provider": "ImageLabs", "prompt_tokens": 7861, "completion_tokens": 560, "total_tokens": 8421}
|
121 |
+
{"model": "flux", "provider": "HuggingSpace", "prompt_tokens": 8265, "completion_tokens": 1004, "total_tokens": 9269}
|
122 |
+
{"model": "medieval", "provider": "ARTA", "prompt_tokens": 9866, "completion_tokens": 606, "total_tokens": 10472}
|
123 |
+
{"model": "voodoohop-flux-1-schnell", "provider": "VoodoohopFlux1Schnell", "prompt_tokens": 11467, "completion_tokens": 986, "total_tokens": 12453}
|
124 |
+
{"model": "black-forest-labs-flux-1-dev", "provider": "BlackForestLabsFlux1Dev", "prompt_tokens": 13467, "completion_tokens": 1026, "total_tokens": 14493}
|
125 |
+
{"model": "gemini-1.5-pro", "provider": "Free2GPT", "prompt_tokens": 48, "completion_tokens": 1995, "total_tokens": 2043}
|
126 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 2062, "completion_tokens": 2062, "total_tokens": 4124}
|
127 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 775, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 7567, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 8342}
|
128 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 4158, "completion_tokens": 587, "total_tokens": 4745}
|
129 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 4158, "completion_tokens": 536, "total_tokens": 4694}
|
130 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 131, "completion_tokens": 385, "total_tokens": 516}
|
131 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 131, "completion_tokens": 111, "total_tokens": 242}
|
132 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 8381, "completion_tokens": 0, "total_tokens": 8381}
|
133 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 9021, "completion_tokens": 0, "total_tokens": 9021}
|
134 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 9668, "completion_tokens": 0, "total_tokens": 9668}
|
135 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 505, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 10379, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 10884}
|
136 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 10929, "completion_tokens": 0, "total_tokens": 10929}
|
137 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 11424, "total_tokens": 11996, "completion_tokens": 572, "estimated_cost": 0.0015424800000000002}
|
138 |
+
{"model": "flux", "provider": "ARTA", "prompt_tokens": 15, "completion_tokens": 196, "total_tokens": 211}
|
139 |
+
{"model": "flux", "provider": "ARTA", "prompt_tokens": 15, "completion_tokens": 198, "total_tokens": 213}
|
140 |
+
{"model": "flux", "provider": "ARTA", "prompt_tokens": 34, "completion_tokens": 203, "total_tokens": 237}
|
141 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 12354, "completion_tokens": 0, "total_tokens": 12354}
|
142 |
+
{"model": "flux", "provider": "ARTA", "prompt_tokens": 34, "completion_tokens": 205, "total_tokens": 239}
|
143 |
+
{"model": "flux", "provider": "ARTA", "prompt_tokens": 34, "completion_tokens": 197, "total_tokens": 231}
|
144 |
+
{"model": "flux", "provider": "ARTA", "prompt_tokens": 34, "completion_tokens": 193, "total_tokens": 227}
|
145 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 13072, "completion_tokens": 0, "total_tokens": 13072}
|
146 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 13072, "completion_tokens": 0, "total_tokens": 13072}
|
147 |
+
{"model": "deepseek-r1-llama", "provider": "PollinationsAI", "prompt_tokens": 134, "total_tokens": 156, "completion_tokens": 22, "prompt_tokens_details": null}
|
148 |
+
{"model": "deepseek-r1-llama", "provider": "PollinationsAI", "prompt_tokens": 99, "total_tokens": 111, "completion_tokens": 12, "prompt_tokens_details": null}
|
149 |
+
{"model": "deepseek-r1-llama", "provider": "PollinationsAI", "prompt_tokens": 2634, "total_tokens": 2975, "completion_tokens": 341, "prompt_tokens_details": null}
|
150 |
+
{"model": "gemini-thinking", "provider": "PollinationsAI", "prompt_tokens": 49, "completion_tokens": 18, "total_tokens": 67}
|
151 |
+
{"model": "gemini-thinking", "provider": "PollinationsAI", "prompt_tokens": 48, "completion_tokens": 20, "total_tokens": 68}
|
152 |
+
{"model": "gemini-thinking", "provider": "PollinationsAI", "prompt_tokens": 2180, "completion_tokens": 583, "total_tokens": 2763}
|
153 |
+
{"model": "gemini-thinking", "provider": "PollinationsAI", "prompt_tokens": 2773, "completion_tokens": 517, "total_tokens": 3290}
|
154 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 14442, "completion_tokens": 0, "total_tokens": 14442}
|
155 |
+
{"model": "hypnosis-tracy", "provider": "PollinationsAI", "completion_tokens": 37, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 903, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 940}
|
156 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 685, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2801, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3486}
|
157 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 15174, "completion_tokens": 0, "total_tokens": 15174}
|
158 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 15938, "total_tokens": 16494, "completion_tokens": 556, "estimated_cost": 0.00207936}
|
159 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 929, "total_tokens": 1660, "completion_tokens": 731, "estimated_cost": 0.00033078000000000003}
|
160 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 492, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1378, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1870}
|
161 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 16551, "total_tokens": 17007, "completion_tokens": 456, "estimated_cost": 0.00212292}
|
162 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 16977, "completion_tokens": 0, "total_tokens": 16977}
|
163 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 787, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 17553, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 18340}
|
164 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 18368, "completion_tokens": 0, "total_tokens": 18368}
|
165 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 19069, "completion_tokens": 0, "total_tokens": 19069}
|
166 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 19662, "total_tokens": 20109, "completion_tokens": 447, "estimated_cost": 0.0024935400000000003}
|
167 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 20361, "completion_tokens": 0, "total_tokens": 20361}
|
168 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 20968, "completion_tokens": 0, "total_tokens": 20968}
|
169 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 183, "completion_tokens": 276, "total_tokens": 459}
|
170 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 183, "completion_tokens": 129, "total_tokens": 312}
|
171 |
+
{"model": "o3-mini", "provider": "DDG", "prompt_tokens": 732, "completion_tokens": 167, "total_tokens": 899}
|
172 |
+
{"model": "qwq-32b", "provider": "HuggingFace", "prompt_tokens": 213, "completion_tokens": 0, "total_tokens": 213}
|
173 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 21742, "completion_tokens": 0, "total_tokens": 21742}
|
174 |
+
{"model": "qwq-32b", "provider": "HuggingFace", "prompt_tokens": 213, "completion_tokens": 0, "total_tokens": 213}
|
175 |
+
{"model": "qwq-32b", "provider": "HuggingFace", "prompt_tokens": 213, "completion_tokens": 0, "total_tokens": 213}
|
176 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 22551, "total_tokens": 22899, "completion_tokens": 348, "estimated_cost": 0.0028105200000000004}
|
177 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 736, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 22895, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 23631}
|
178 |
+
{"model": "claude-email", "provider": "PollinationsAI", "completion_tokens": 372, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 209, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 581}
|
179 |
+
{"model": "claude-email", "provider": "PollinationsAI", "completion_tokens": 171, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 209, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 380}
|
180 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 23692, "total_tokens": 24317, "completion_tokens": 625, "estimated_cost": 0.00303054}
|
181 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 24342, "total_tokens": 24943, "completion_tokens": 601, "estimated_cost": 0.00310134}
|
182 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 24902, "completion_tokens": 0, "total_tokens": 24902}
|
183 |
+
{"model": "claude-email", "provider": "PollinationsAI", "completion_tokens": 224, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 418, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 642}
|
184 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 25479, "total_tokens": 25915, "completion_tokens": 436, "estimated_cost": 0.00318828}
|
185 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 25855, "completion_tokens": 0, "total_tokens": 25855}
|
186 |
+
{"model": "claude-email", "provider": "PollinationsAI", "completion_tokens": 248, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 663, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 911}
|
187 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 26408, "completion_tokens": 0, "total_tokens": 26408}
|
188 |
+
{"model": "claude-email", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 663, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 673}
|
189 |
+
{"model": "claude-email", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 663, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 673}
|
190 |
+
{"model": "claude-email", "provider": "PollinationsAI", "completion_tokens": 217, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 663, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 880}
|
191 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 27217, "completion_tokens": 0, "total_tokens": 27217}
|
192 |
+
{"model": "claude-email", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1186, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1196}
|
193 |
+
{"model": "claude-email", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1186, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1196}
|
194 |
+
{"model": "claude-email", "provider": "PollinationsAI", "completion_tokens": 250, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1186, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1436}
|
195 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 70, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1186, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1256}
|
196 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 27917, "completion_tokens": 0, "total_tokens": 27917}
|
197 |
+
{"model": "qvq-72b", "provider": "HuggingSpace", "prompt_tokens": 1197, "completion_tokens": 0, "total_tokens": 1197}
|
198 |
+
{"model": "qwen-2.5-1m-demo", "provider": "HuggingSpace", "prompt_tokens": 1197, "completion_tokens": 0, "total_tokens": 1197}
|
199 |
+
{"model": "qwen-2.5-1m-demo", "provider": "HuggingSpace", "prompt_tokens": 1197, "completion_tokens": 0, "total_tokens": 1197}
|
200 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 28327, "completion_tokens": 0, "total_tokens": 28327}
|
201 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 29013, "completion_tokens": 0, "total_tokens": 29013}
|
202 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 29682, "completion_tokens": 0, "total_tokens": 29682}
|
203 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 1197, "completion_tokens": 0, "total_tokens": 1197}
|
204 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 1501, "completion_tokens": 0, "total_tokens": 1501}
|
205 |
+
{"model": "o3-mini", "provider": "Blackbox", "prompt_tokens": 1043, "completion_tokens": 186, "total_tokens": 1229}
|
206 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 1733, "completion_tokens": 0, "total_tokens": 1733}
|
207 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 1733, "completion_tokens": 0, "total_tokens": 1733}
|
208 |
+
{"model": "o3-mini", "provider": "PollinationsAI", "prompt_tokens": 1382, "completion_tokens": 291, "total_tokens": 1673}
|
209 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 2062, "completion_tokens": 0, "total_tokens": 2062}
|
210 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 2062, "completion_tokens": 0, "total_tokens": 2062}
|
211 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 2421, "completion_tokens": 0, "total_tokens": 2421}
|
212 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 2421, "completion_tokens": 0, "total_tokens": 2421}
|
213 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 2421, "completion_tokens": 0, "total_tokens": 2421}
|
214 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 2421, "completion_tokens": 0, "total_tokens": 2421}
|
215 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 2421, "completion_tokens": 0, "total_tokens": 2421}
|
216 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 2421, "completion_tokens": 0, "total_tokens": 2421}
|
217 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 3560, "completion_tokens": 0, "total_tokens": 3560}
|
218 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 3759, "completion_tokens": 0, "total_tokens": 3759}
|
219 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 3869, "completion_tokens": 0, "total_tokens": 3869}
|
220 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 3980, "completion_tokens": 0, "total_tokens": 3980}
|
221 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 4099, "completion_tokens": 0, "total_tokens": 4099}
|
222 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 4251, "completion_tokens": 0, "total_tokens": 4251}
|
223 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 4395, "completion_tokens": 0, "total_tokens": 4395}
|
224 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 4513, "completion_tokens": 0, "total_tokens": 4513}
|
225 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 4640, "completion_tokens": 0, "total_tokens": 4640}
|
226 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 4747, "completion_tokens": 0, "total_tokens": 4747}
|
227 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 4935, "completion_tokens": 0, "total_tokens": 4935}
|
228 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 5062, "completion_tokens": 0, "total_tokens": 5062}
|
229 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 5173, "completion_tokens": 0, "total_tokens": 5173}
|
230 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 5268, "completion_tokens": 0, "total_tokens": 5268}
|
231 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 5403, "completion_tokens": 0, "total_tokens": 5403}
|
232 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 5514, "completion_tokens": 0, "total_tokens": 5514}
|
233 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 5623, "completion_tokens": 0, "total_tokens": 5623}
|
234 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 5760, "completion_tokens": 0, "total_tokens": 5760}
|
235 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 5890, "completion_tokens": 0, "total_tokens": 5890}
|
236 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 41, "completion_tokens": 258, "total_tokens": 299}
|
237 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 6034, "completion_tokens": 0, "total_tokens": 6034}
|
238 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 6189, "completion_tokens": 0, "total_tokens": 6189}
|
239 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 6396, "completion_tokens": 0, "total_tokens": 6396}
|
240 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 6564, "completion_tokens": 0, "total_tokens": 6564}
|
241 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 6737, "completion_tokens": 0, "total_tokens": 6737}
|
242 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 6849, "completion_tokens": 0, "total_tokens": 6849}
|
243 |
+
{"model": "Qwen/Qwen2.5-72B-Instruct", "provider": "HuggingFace", "prompt_tokens": 6962, "completion_tokens": 0, "total_tokens": 6962}
|
244 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 575, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 695, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1270}
|
245 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 1506, "completion_tokens": 0, "total_tokens": 1506}
|
246 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 2159, "completion_tokens": 0, "total_tokens": 2159}
|
247 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 2678, "total_tokens": 3182, "completion_tokens": 504, "estimated_cost": 0.00047256}
|
248 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 598, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2970, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3568}
|
249 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 3853, "total_tokens": 4279, "completion_tokens": 426, "estimated_cost": 0.00059016}
|
250 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 4295, "total_tokens": 4781, "completion_tokens": 486, "estimated_cost": 0.0006612}
|
251 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 4792, "completion_tokens": 0, "total_tokens": 4792}
|
252 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 484, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5164, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 5648}
|
253 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 648, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5194, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 5842}
|
254 |
+
{"model": "gemini-1.5-pro", "provider": "Free2GPT", "prompt_tokens": 514, "completion_tokens": 1021, "total_tokens": 1535}
|
255 |
+
{"model": "gpt-4", "provider": "Copilot", "prompt_tokens": 1556, "completion_tokens": 648, "total_tokens": 2204}
|
256 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 2835, "completion_tokens": 1366, "total_tokens": 4201}
|
257 |
+
{"model": "gpt-4", "provider": "ChatGptEs", "prompt_tokens": 4263, "completion_tokens": 847, "total_tokens": 5110}
|
258 |
+
{"model": "blackboxai", "provider": "Blackbox", "prompt_tokens": 4263, "completion_tokens": 961, "total_tokens": 5224}
|
259 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 6089, "completion_tokens": 882, "total_tokens": 6971}
|
260 |
+
{"model": "sdxl-turbo", "provider": "ImageLabs", "prompt_tokens": 6982, "completion_tokens": 3076, "total_tokens": 10058}
|
261 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 163, "completion_tokens": 641, "total_tokens": 804}
|
262 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 514, "completion_tokens": 1021, "total_tokens": 1535}
|
263 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 1684, "completion_tokens": 25, "total_tokens": 1709}
|
264 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 1731, "completion_tokens": 7, "total_tokens": 1738}
|
265 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 1731, "completion_tokens": 11, "total_tokens": 1742}
|
266 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 1791, "completion_tokens": 175, "total_tokens": 1966}
|
267 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 1986, "completion_tokens": 171, "total_tokens": 2157}
|
268 |
+
{"model": "evil", "provider": "PollinationsAI", "prompt_tokens": 1986, "completion_tokens": 179, "total_tokens": 2165}
|
269 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 49, "completion_tokens": 241, "total_tokens": 290}
|
270 |
+
{"model": "midijourney", "provider": "PollinationsAI", "completion_tokens": 230, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1414, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1644}
|
271 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 86, "completion_tokens": 707, "total_tokens": 793}
|
272 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 99, "completion_tokens": 190, "total_tokens": 289}
|
273 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 99, "completion_tokens": 190, "total_tokens": 289}
|
274 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 15, "completion_tokens": 46, "total_tokens": 61}
|
275 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 117, "completion_tokens": 172, "total_tokens": 289}
|
276 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 308, "completion_tokens": 866, "total_tokens": 1174}
|
277 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 1178, "completion_tokens": 910, "total_tokens": 2088}
|
usage/2025-03-17.jsonl
ADDED
@@ -0,0 +1,343 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "deepseek-chat", "provider": "Blackbox", "prompt_tokens": 20, "completion_tokens": 114, "total_tokens": 134}
|
2 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 18, "completion_tokens": 181, "total_tokens": 199}
|
3 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 73267, "completion_tokens": 420, "total_tokens": 73687}
|
4 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 73732, "completion_tokens": 654, "total_tokens": 74386}
|
5 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 74458, "completion_tokens": 607, "total_tokens": 75065}
|
6 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 75144, "completion_tokens": 854, "total_tokens": 75998}
|
7 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 76011, "completion_tokens": 853, "total_tokens": 76864}
|
8 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 76879, "completion_tokens": 1730, "total_tokens": 78609}
|
9 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 10, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 25, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 35}
|
10 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 64, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 51, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 115}
|
11 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1274, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4119, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 5393}
|
12 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1259, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5405, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 6664}
|
13 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 78619, "completion_tokens": 1467, "total_tokens": 80086}
|
14 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 80103, "completion_tokens": 1844, "total_tokens": 81947}
|
15 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 81964, "completion_tokens": 1678, "total_tokens": 83642}
|
16 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 1681, "completion_tokens": 29, "total_tokens": 1710}
|
17 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 83658, "completion_tokens": 863, "total_tokens": 84521}
|
18 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 84536, "completion_tokens": 2062, "total_tokens": 86598}
|
19 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 86618, "completion_tokens": 619, "total_tokens": 87237}
|
20 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 87287, "completion_tokens": 1760, "total_tokens": 89047}
|
21 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 89228, "completion_tokens": 1934, "total_tokens": 91162}
|
22 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 91174, "completion_tokens": 563, "total_tokens": 91737}
|
23 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 91749, "completion_tokens": 1261, "total_tokens": 93010}
|
24 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 93025, "completion_tokens": 1662, "total_tokens": 94687}
|
25 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 94706, "completion_tokens": 923, "total_tokens": 95629}
|
26 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 95713, "completion_tokens": 1410, "total_tokens": 97123}
|
27 |
+
{"model": "o1-mini", "provider": "PollinationsAI", "completion_tokens": 824, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 704, "rejected_prediction_tokens": 0}, "prompt_tokens": 6732, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 7556}
|
28 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 209, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 6554, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 6763}
|
29 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 87, "completion_tokens": 396, "total_tokens": 483}
|
30 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 2134, "completion_tokens": 852, "total_tokens": 2986}
|
31 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 2990, "completion_tokens": 765, "total_tokens": 3755}
|
32 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 3759, "completion_tokens": 803, "total_tokens": 4562}
|
33 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 4566, "completion_tokens": 840, "total_tokens": 5406}
|
34 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 5410, "completion_tokens": 820, "total_tokens": 6230}
|
35 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 274, "completion_tokens": 315, "total_tokens": 589}
|
36 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 6259, "completion_tokens": 844, "total_tokens": 7103}
|
37 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 7107, "completion_tokens": 760, "total_tokens": 7867}
|
38 |
+
{"model": "Qwen/QwQ-32B", "provider": "HuggingFace", "prompt_tokens": 36, "completion_tokens": 316, "total_tokens": 352}
|
39 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 367, "completion_tokens": 190, "total_tokens": 557}
|
40 |
+
{"model": "Qwen/QwQ-32B-Preview", "provider": "HuggingFace", "prompt_tokens": 90, "completion_tokens": 3, "total_tokens": 93}
|
41 |
+
{"model": "Qwen/QwQ-32B-Preview", "provider": "HuggingFace", "prompt_tokens": 103, "completion_tokens": 110, "total_tokens": 213}
|
42 |
+
{"model": "Qwen/QwQ-32B-Preview", "provider": "HuggingFace", "prompt_tokens": 225, "completion_tokens": 397, "total_tokens": 622}
|
43 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 28, "completion_tokens": 34, "total_tokens": 62}
|
44 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 71, "completion_tokens": 37, "total_tokens": 108}
|
45 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 118, "completion_tokens": 57, "total_tokens": 175}
|
46 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 185, "completion_tokens": 136, "total_tokens": 321}
|
47 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 185, "completion_tokens": 203, "total_tokens": 388}
|
48 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 331, "completion_tokens": 102, "total_tokens": 433}
|
49 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 445, "completion_tokens": 71, "total_tokens": 516}
|
50 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 543, "completion_tokens": 431, "total_tokens": 974}
|
51 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 1004, "completion_tokens": 363, "total_tokens": 1367}
|
52 |
+
{"model": "command-r-plus", "provider": "HuggingSpace", "prompt_tokens": 1404, "completion_tokens": 504, "total_tokens": 1908}
|
53 |
+
{"model": "qvq-72b", "provider": "HuggingSpace", "prompt_tokens": 13, "completion_tokens": 0, "total_tokens": 13}
|
54 |
+
{"model": "sd-3.5", "provider": "HuggingFace", "prompt_tokens": 18, "completion_tokens": 89, "total_tokens": 107}
|
55 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 18, "completion_tokens": 247, "total_tokens": 265}
|
56 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 22, "completion_tokens": 271, "total_tokens": 293}
|
57 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 22, "completion_tokens": 273, "total_tokens": 295}
|
58 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 22, "completion_tokens": 269, "total_tokens": 291}
|
59 |
+
{"model": "flux-schnell", "provider": "PollinationsAI", "prompt_tokens": 22, "completion_tokens": 277, "total_tokens": 299}
|
60 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 154, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 933, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1087}
|
61 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 6616, "total_tokens": 6968, "completion_tokens": 352, "estimated_cost": 0.00089952}
|
62 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 260, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1117, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1377}
|
63 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 6988, "completion_tokens": 0, "total_tokens": 6988}
|
64 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 352, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 7092, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 7444}
|
65 |
+
{"model": "flux", "provider": "PollinationsAI", "prompt_tokens": 119, "completion_tokens": 1104, "total_tokens": 1223}
|
66 |
+
{"model": "flux-pro", "provider": "PollinationsAI", "prompt_tokens": 119, "completion_tokens": 1106, "total_tokens": 1225}
|
67 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 119, "completion_tokens": 1106, "total_tokens": 1225}
|
68 |
+
{"model": "flux-schnell", "provider": "PollinationsAI", "prompt_tokens": 119, "completion_tokens": 1108, "total_tokens": 1227}
|
69 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 119, "completion_tokens": 1116, "total_tokens": 1235}
|
70 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 119, "completion_tokens": 1112, "total_tokens": 1231}
|
71 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 7692, "completion_tokens": 0, "total_tokens": 7692}
|
72 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 8198, "completion_tokens": 0, "total_tokens": 8198}
|
73 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 8938, "completion_tokens": 0, "total_tokens": 8938}
|
74 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 9191, "completion_tokens": 0, "total_tokens": 9191}
|
75 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 570, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 9472, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 10042}
|
76 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 507, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 10148, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 10655}
|
77 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 10904, "completion_tokens": 0, "total_tokens": 10904}
|
78 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 11257, "total_tokens": 11732, "completion_tokens": 475, "estimated_cost": 0.0014933400000000001}
|
79 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 11760, "completion_tokens": 0, "total_tokens": 11760}
|
80 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 12447, "total_tokens": 12838, "completion_tokens": 391, "estimated_cost": 0.00161094}
|
81 |
+
{"model": "qvq-72b", "provider": "HuggingSpace", "prompt_tokens": 15, "completion_tokens": 0, "total_tokens": 15}
|
82 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 12875, "total_tokens": 13070, "completion_tokens": 195, "estimated_cost": 0.0016034999999999999}
|
83 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 13107, "completion_tokens": 0, "total_tokens": 13107}
|
84 |
+
{"model": "qvq-72b", "provider": "HuggingSpace", "prompt_tokens": 70, "completion_tokens": 0, "total_tokens": 70}
|
85 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 13667, "completion_tokens": 0, "total_tokens": 13667}
|
86 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 74, "total_tokens": 159, "completion_tokens": 85, "estimated_cost": 0.00022685}
|
87 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 701, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 39, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 740}
|
88 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 14041, "completion_tokens": 0, "total_tokens": 14041}
|
89 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1332, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 751, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2083}
|
90 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1106, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2139, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 3245}
|
91 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 37, "completion_tokens": 426, "total_tokens": 463}
|
92 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 14548, "completion_tokens": 0, "total_tokens": 14548}
|
93 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 722, "completion_tokens": 152, "total_tokens": 874}
|
94 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 15158, "completion_tokens": 0, "total_tokens": 15158}
|
95 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 15838, "total_tokens": 16227, "completion_tokens": 389, "estimated_cost": 0.0020172600000000003}
|
96 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 16198, "completion_tokens": 0, "total_tokens": 16198}
|
97 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 270, "completion_tokens": 625, "total_tokens": 895}
|
98 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 14, "completion_tokens": 129, "total_tokens": 143}
|
99 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 36, "completion_tokens": 322, "total_tokens": 358}
|
100 |
+
{"model": "sdxl-turbo", "provider": "PollinationsImage", "prompt_tokens": 26, "completion_tokens": 126, "total_tokens": 152}
|
101 |
+
{"model": "sdxl-turbo", "provider": "ImageLabs", "prompt_tokens": 26, "completion_tokens": 94, "total_tokens": 120}
|
102 |
+
{"model": "gpt-4o-mini", "provider": "OIVSCode", "prompt_tokens": 43, "completion_tokens": 358, "total_tokens": 401}
|
103 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 357, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2287, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2644}
|
104 |
+
{"model": "midijourney", "provider": "PollinationsAI", "completion_tokens": 618, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 6813, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 7431}
|
105 |
+
{"model": "midijourney", "provider": "PollinationsAI", "completion_tokens": 325, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 6234, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 6559}
|
106 |
+
{"model": "midijourney", "provider": "PollinationsAI", "completion_tokens": 598, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 7424, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 8022}
|
107 |
+
{"model": "midijourney", "provider": "PollinationsAI", "completion_tokens": 640, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 8242, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 8882}
|
108 |
+
{"model": "midijourney", "provider": "PollinationsAI", "completion_tokens": 542, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1818, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2360}
|
109 |
+
{"model": "midijourney", "provider": "PollinationsAI", "completion_tokens": 87, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2418, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2505}
|
110 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 55, "completion_tokens": 594, "total_tokens": 649}
|
111 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 112, "completion_tokens": 596, "total_tokens": 708}
|
112 |
+
{"model": "midijourney", "provider": "PollinationsAI", "completion_tokens": 188, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2273, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2461}
|
113 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 1243, "completion_tokens": 1487, "total_tokens": 2730}
|
114 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 29, "completion_tokens": 1641, "total_tokens": 1670}
|
115 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 1378, "completion_tokens": 1369, "total_tokens": 2747}
|
116 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 19277, "completion_tokens": 661, "total_tokens": 19938}
|
117 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 16724, "completion_tokens": 0, "total_tokens": 16724}
|
118 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 17468, "completion_tokens": 0, "total_tokens": 17468}
|
119 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 18298, "completion_tokens": 0, "total_tokens": 18298}
|
120 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 19060, "completion_tokens": 0, "total_tokens": 19060}
|
121 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 20891, "total_tokens": 21434, "completion_tokens": 543, "estimated_cost": 0.0026698200000000007}
|
122 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 748, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 21250, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 21998}
|
123 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 620, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 22016, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 22636}
|
124 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 22914, "total_tokens": 23461, "completion_tokens": 547, "estimated_cost": 0.0029137799999999995}
|
125 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 23455, "completion_tokens": 0, "total_tokens": 23455}
|
126 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 24075, "completion_tokens": 0, "total_tokens": 24075}
|
127 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 24854, "completion_tokens": 0, "total_tokens": 24854}
|
128 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 25766, "total_tokens": 26165, "completion_tokens": 399, "estimated_cost": 0.00321162}
|
129 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 26222, "total_tokens": 26796, "completion_tokens": 574, "estimated_cost": 0.00331884}
|
130 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 26908, "completion_tokens": 0, "total_tokens": 26908}
|
131 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 9, "completion_tokens": 186, "total_tokens": 195}
|
132 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 658, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 27129, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 27787}
|
133 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 28013, "completion_tokens": 0, "total_tokens": 28013}
|
134 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 28365, "completion_tokens": 0, "total_tokens": 28365}
|
135 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 960, "completion_tokens": 716, "total_tokens": 1676}
|
136 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 28631, "completion_tokens": 0, "total_tokens": 28631}
|
137 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 1967, "completion_tokens": 374, "total_tokens": 2341}
|
138 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 2497, "completion_tokens": 672, "total_tokens": 3169}
|
139 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 3439, "completion_tokens": 770, "total_tokens": 4209}
|
140 |
+
{"model": "midijourney", "provider": "PollinationsAI", "completion_tokens": 154, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1166, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1320}
|
141 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 178, "completion_tokens": 216, "total_tokens": 394}
|
142 |
+
{"model": "flux-dev", "provider": "PollinationsAI", "prompt_tokens": 178, "completion_tokens": 214, "total_tokens": 392}
|
143 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 178, "completion_tokens": 216, "total_tokens": 394}
|
144 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 20, "total_tokens": 547, "completion_tokens": 527, "estimated_cost": 0.00016050000000000003}
|
145 |
+
{"model": "black-forest-labs/FLUX.1-schnell", "provider": "HuggingFace", "prompt_tokens": 178, "completion_tokens": 3760, "total_tokens": 3938}
|
146 |
+
{"model": "flux-schnell", "provider": "PollinationsAI", "prompt_tokens": 178, "completion_tokens": 216, "total_tokens": 394}
|
147 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 34, "completion_tokens": 0, "total_tokens": 34}
|
148 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 440, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 473, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 913}
|
149 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 4496, "completion_tokens": 1247, "total_tokens": 5743}
|
150 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 14, "completion_tokens": 78, "total_tokens": 92}
|
151 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 116, "completion_tokens": 54, "total_tokens": 170}
|
152 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 186, "completion_tokens": 31, "total_tokens": 217}
|
153 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 234, "completion_tokens": 45, "total_tokens": 279}
|
154 |
+
{"model": "Copilot", "provider": "CopilotAccount", "prompt_tokens": 20, "completion_tokens": 93, "total_tokens": 113}
|
155 |
+
{"model": "Copilot", "provider": "CopilotAccount", "prompt_tokens": 128, "completion_tokens": 37, "total_tokens": 165}
|
156 |
+
{"model": "Copilot", "provider": "CopilotAccount", "prompt_tokens": 178, "completion_tokens": 70, "total_tokens": 248}
|
157 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 23, "completion_tokens": 46, "total_tokens": 69}
|
158 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 85, "completion_tokens": 86, "total_tokens": 171}
|
159 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 183, "completion_tokens": 70, "total_tokens": 253}
|
160 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 262, "completion_tokens": 53, "total_tokens": 315}
|
161 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 335, "completion_tokens": 66, "total_tokens": 401}
|
162 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 9, "completion_tokens": 96, "total_tokens": 105}
|
163 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 120, "completion_tokens": 164, "total_tokens": 284}
|
164 |
+
{"model": "Copilot", "provider": "CopilotAccount", "prompt_tokens": 302, "completion_tokens": 67, "total_tokens": 369}
|
165 |
+
{"model": "Copilot", "provider": "CopilotAccount", "prompt_tokens": 17, "completion_tokens": 89, "total_tokens": 106}
|
166 |
+
{"model": "Copilot", "provider": "CopilotAccount", "prompt_tokens": 17, "completion_tokens": 128, "total_tokens": 145}
|
167 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 17, "completion_tokens": 87, "total_tokens": 104}
|
168 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 167, "completion_tokens": 32, "total_tokens": 199}
|
169 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 215, "completion_tokens": 48, "total_tokens": 263}
|
170 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 286, "completion_tokens": 116, "total_tokens": 402}
|
171 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 426, "completion_tokens": 149, "total_tokens": 575}
|
172 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 23, "completion_tokens": 293, "total_tokens": 316}
|
173 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 37, "completion_tokens": 66, "total_tokens": 103}
|
174 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 15, "completion_tokens": 135, "total_tokens": 150}
|
175 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 56, "total_tokens": 817, "completion_tokens": 761, "estimated_cost": 0.00023501999999999998}
|
176 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 919, "total_tokens": 1725, "completion_tokens": 806, "estimated_cost": 0.00035208000000000006}
|
177 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 21, "completion_tokens": 0, "total_tokens": 21}
|
178 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 108, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 675, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 783}
|
179 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 800, "completion_tokens": 0, "total_tokens": 800}
|
180 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 12, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 35, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 47}
|
181 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 20, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 58, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 78}
|
182 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 478, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 107, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 585}
|
183 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 1832, "completion_tokens": 0, "total_tokens": 1832}
|
184 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 2442, "completion_tokens": 0, "total_tokens": 2442}
|
185 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 3164, "completion_tokens": 0, "total_tokens": 3164}
|
186 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 4103, "completion_tokens": 0, "total_tokens": 4103}
|
187 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 4653, "total_tokens": 5259, "completion_tokens": 606, "estimated_cost": 0.00074016}
|
188 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 814, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5822, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 6636}
|
189 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 767, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1075, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1842}
|
190 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 1841, "completion_tokens": 0, "total_tokens": 1841}
|
191 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 6622, "completion_tokens": 0, "total_tokens": 6622}
|
192 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 7720, "completion_tokens": 0, "total_tokens": 7720}
|
193 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 8798, "completion_tokens": 0, "total_tokens": 8798}
|
194 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 9450, "completion_tokens": 0, "total_tokens": 9450}
|
195 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 10778, "total_tokens": 11569, "completion_tokens": 791, "estimated_cost": 0.00153066}
|
196 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 11634, "completion_tokens": 0, "total_tokens": 11634}
|
197 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 12080, "completion_tokens": 0, "total_tokens": 12080}
|
198 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 12625, "completion_tokens": 0, "total_tokens": 12625}
|
199 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 97135, "completion_tokens": 738, "total_tokens": 97873}
|
200 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 97135, "completion_tokens": 820, "total_tokens": 97955}
|
201 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 98713, "completion_tokens": 633, "total_tokens": 99346}
|
202 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 99356, "completion_tokens": 251, "total_tokens": 99607}
|
203 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 99356, "completion_tokens": 415, "total_tokens": 99771}
|
204 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 9, "completion_tokens": 194, "total_tokens": 203}
|
205 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 20, "completion_tokens": 150, "total_tokens": 170}
|
206 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 30, "completion_tokens": 3749, "total_tokens": 3779}
|
207 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 924, "completion_tokens": 0, "total_tokens": 924}
|
208 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 124, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1148, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1272}
|
209 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 122, "completion_tokens": 0, "total_tokens": 122}
|
210 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 760, "total_tokens": 1924, "completion_tokens": 1164, "estimated_cost": 0.00044039999999999997}
|
211 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 1976, "completion_tokens": 0, "total_tokens": 1976}
|
212 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 576, "total_tokens": 932, "completion_tokens": 356, "estimated_cost": 0.00017592}
|
213 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 946, "completion_tokens": 0, "total_tokens": 946}
|
214 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 1581, "completion_tokens": 0, "total_tokens": 1581}
|
215 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 645, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2228, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2873}
|
216 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 3408, "completion_tokens": 0, "total_tokens": 3408}
|
217 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 3418, "total_tokens": 4245, "completion_tokens": 827, "estimated_cost": 0.0006582600000000001}
|
218 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 778, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 242, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1020}
|
219 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 485, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1040, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1525}
|
220 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 2133, "total_tokens": 2672, "completion_tokens": 539, "estimated_cost": 0.00041766}
|
221 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 99912, "completion_tokens": 771, "total_tokens": 100683}
|
222 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 2893, "completion_tokens": 0, "total_tokens": 2893}
|
223 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 3455, "completion_tokens": 0, "total_tokens": 3455}
|
224 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 1726, "completion_tokens": 731, "total_tokens": 2457}
|
225 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 100697, "completion_tokens": 930, "total_tokens": 101627}
|
226 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 11, "completion_tokens": 27, "total_tokens": 38}
|
227 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 4807, "total_tokens": 6023, "completion_tokens": 1216, "estimated_cost": 0.00094164}
|
228 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 335, "completion_tokens": 744, "total_tokens": 1079}
|
229 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 6066, "completion_tokens": 0, "total_tokens": 6066}
|
230 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 8134, "completion_tokens": 0, "total_tokens": 8134}
|
231 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 10117, "completion_tokens": 0, "total_tokens": 10117}
|
232 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 10863, "completion_tokens": 0, "total_tokens": 10863}
|
233 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 101638, "completion_tokens": 882, "total_tokens": 102520}
|
234 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 5819, "total_tokens": 6432, "completion_tokens": 613, "estimated_cost": 0.0008821800000000001}
|
235 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 4532, "completion_tokens": 24, "total_tokens": 4556}
|
236 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 8316, "total_tokens": 8696, "completion_tokens": 380, "estimated_cost": 0.0011119200000000002}
|
237 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 4863, "completion_tokens": 1572, "total_tokens": 6435}
|
238 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 8710, "completion_tokens": 0, "total_tokens": 8710}
|
239 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 709, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 9224, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 9933}
|
240 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 657, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 10154, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 10811}
|
241 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 6527, "completion_tokens": 148, "total_tokens": 6675}
|
242 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 6694, "completion_tokens": 1171, "total_tokens": 7865}
|
243 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 6694, "completion_tokens": 1122, "total_tokens": 7816}
|
244 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 8106, "completion_tokens": 1073, "total_tokens": 9179}
|
245 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 9234, "completion_tokens": 78, "total_tokens": 9312}
|
246 |
+
{"model": "llama-3", "provider": "HuggingFace", "prompt_tokens": 40, "completion_tokens": 208, "total_tokens": 248}
|
247 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 9368, "completion_tokens": 141, "total_tokens": 9509}
|
248 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 9567, "completion_tokens": 720, "total_tokens": 10287}
|
249 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 11881, "completion_tokens": 0, "total_tokens": 11881}
|
250 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 12706, "completion_tokens": 0, "total_tokens": 12706}
|
251 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 13971, "completion_tokens": 0, "total_tokens": 13971}
|
252 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 15379, "completion_tokens": 0, "total_tokens": 15379}
|
253 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 17149, "completion_tokens": 0, "total_tokens": 17149}
|
254 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 804, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 17697, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 18501}
|
255 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 18502, "completion_tokens": 0, "total_tokens": 18502}
|
256 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 9567, "completion_tokens": 369, "total_tokens": 9936}
|
257 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 784, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 19618, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 20402}
|
258 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 9567, "completion_tokens": 563, "total_tokens": 10130}
|
259 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 864, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 20426, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 21290}
|
260 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 21273, "total_tokens": 21572, "completion_tokens": 299, "estimated_cost": 0.0026424599999999997}
|
261 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 21602, "completion_tokens": 0, "total_tokens": 21602}
|
262 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 22534, "total_tokens": 22948, "completion_tokens": 414, "estimated_cost": 0.00282828}
|
263 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 22980, "completion_tokens": 0, "total_tokens": 22980}
|
264 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 891, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 24045, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 24936}
|
265 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 24867, "completion_tokens": 0, "total_tokens": 24867}
|
266 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 25455, "total_tokens": 25927, "completion_tokens": 472, "estimated_cost": 0.0031962}
|
267 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 25964, "completion_tokens": 0, "total_tokens": 25964}
|
268 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 26423, "completion_tokens": 0, "total_tokens": 26423}
|
269 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 227, "completion_tokens": 241, "total_tokens": 468}
|
270 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 26953, "completion_tokens": 0, "total_tokens": 26953}
|
271 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 482, "completion_tokens": 208, "total_tokens": 690}
|
272 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 11240, "completion_tokens": 937, "total_tokens": 12177}
|
273 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 27785, "completion_tokens": 0, "total_tokens": 27785}
|
274 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 669, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 28436, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 29105}
|
275 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 12189, "completion_tokens": 447, "total_tokens": 12636}
|
276 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 29627, "completion_tokens": 0, "total_tokens": 29627}
|
277 |
+
{"model": "gpt-4o", "provider": "ChatGptEs", "prompt_tokens": 711, "completion_tokens": 456, "total_tokens": 1167}
|
278 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 30517, "completion_tokens": 0, "total_tokens": 30517}
|
279 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 12189, "completion_tokens": 364, "total_tokens": 12553}
|
280 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 13016, "completion_tokens": 445, "total_tokens": 13461}
|
281 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 31783, "completion_tokens": 0, "total_tokens": 31783}
|
282 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 12189, "completion_tokens": 1228, "total_tokens": 13417}
|
283 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 14706, "completion_tokens": 1300, "total_tokens": 16006}
|
284 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 33093, "completion_tokens": 0, "total_tokens": 33093}
|
285 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 15483, "completion_tokens": 1843, "total_tokens": 17326}
|
286 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 34206, "total_tokens": 34591, "completion_tokens": 385, "estimated_cost": 0.00422022}
|
287 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 35262, "completion_tokens": 0, "total_tokens": 35262}
|
288 |
+
{"model": "gpt-4", "provider": "PollinationsAI", "prompt_tokens": 15483, "completion_tokens": 607, "total_tokens": 16090}
|
289 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 36223, "completion_tokens": 0, "total_tokens": 36223}
|
290 |
+
{"model": "deepseek-r1", "provider": "Blackbox", "prompt_tokens": 17199, "completion_tokens": 2137, "total_tokens": 19336}
|
291 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 18869, "completion_tokens": 1588, "total_tokens": 20457}
|
292 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 20458, "completion_tokens": 1446, "total_tokens": 21904}
|
293 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 873, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 40984, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 41857}
|
294 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 42399, "total_tokens": 42915, "completion_tokens": 516, "estimated_cost": 0.00524268}
|
295 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 42944, "completion_tokens": 0, "total_tokens": 42944}
|
296 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 984, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 43377, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 44361}
|
297 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 46720, "total_tokens": 47109, "completion_tokens": 389, "estimated_cost": 0.0057231}
|
298 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 47694, "total_tokens": 48463, "completion_tokens": 769, "estimated_cost": 0.005953980000000001}
|
299 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 48499, "total_tokens": 48849, "completion_tokens": 350, "estimated_cost": 0.00592488}
|
300 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 909, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 49243, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 50152}
|
301 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 1041, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 50342, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 51383}
|
302 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 51235, "completion_tokens": 0, "total_tokens": 51235}
|
303 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 52423, "completion_tokens": 0, "total_tokens": 52423}
|
304 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 966, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 53221, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 54187}
|
305 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 54725, "completion_tokens": 0, "total_tokens": 54725}
|
306 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 1027, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 55914, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 56941}
|
307 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 939, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 57543, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 58482}
|
308 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 58937, "completion_tokens": 0, "total_tokens": 58937}
|
309 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 1047, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 60883, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 61930}
|
310 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 163, "completion_tokens": 266, "total_tokens": 429}
|
311 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 61814, "completion_tokens": 0, "total_tokens": 61814}
|
312 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 62900, "completion_tokens": 0, "total_tokens": 62900}
|
313 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 64098, "completion_tokens": 0, "total_tokens": 64098}
|
314 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 83, "completion_tokens": 0, "total_tokens": 83}
|
315 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 796, "completion_tokens": 0, "total_tokens": 796}
|
316 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 4755, "completion_tokens": 0, "total_tokens": 4755}
|
317 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 6939, "completion_tokens": 0, "total_tokens": 6939}
|
318 |
+
{"model": "Copilot", "provider": "Copilot", "prompt_tokens": 11417, "completion_tokens": 0, "total_tokens": 11417}
|
319 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 11522, "completion_tokens": 0, "total_tokens": 11522}
|
320 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 18467, "completion_tokens": 0, "total_tokens": 18467}
|
321 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 28298, "completion_tokens": 0, "total_tokens": 28298}
|
322 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 29596, "total_tokens": 29716, "completion_tokens": 120, "estimated_cost": 0.0035875200000000003}
|
323 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 29734, "completion_tokens": 0, "total_tokens": 29734}
|
324 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 3397, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 35279, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 38676}
|
325 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 31, "completion_tokens": 244, "total_tokens": 275}
|
326 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 9978, "completion_tokens": 856, "total_tokens": 10834}
|
327 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 10847, "completion_tokens": 770, "total_tokens": 11617}
|
328 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 11621, "completion_tokens": 796, "total_tokens": 12417}
|
329 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 12421, "completion_tokens": 785, "total_tokens": 13206}
|
330 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 13210, "completion_tokens": 772, "total_tokens": 13982}
|
331 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 13986, "completion_tokens": 755, "total_tokens": 14741}
|
332 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 14745, "completion_tokens": 755, "total_tokens": 15500}
|
333 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 15504, "completion_tokens": 792, "total_tokens": 16296}
|
334 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 16300, "completion_tokens": 813, "total_tokens": 17113}
|
335 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 17126, "completion_tokens": 827, "total_tokens": 17953}
|
336 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 17966, "completion_tokens": 867, "total_tokens": 18833}
|
337 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 18837, "completion_tokens": 855, "total_tokens": 19692}
|
338 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 19696, "completion_tokens": 910, "total_tokens": 20606}
|
339 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 20610, "completion_tokens": 953, "total_tokens": 21563}
|
340 |
+
{"model": "BLACKBOXAI", "provider": "Blackbox", "prompt_tokens": 921, "completion_tokens": 0, "total_tokens": 921}
|
341 |
+
{"model": "gpt-4o-mini", "provider": "DDG", "prompt_tokens": 1087, "completion_tokens": 0, "total_tokens": 1087}
|
342 |
+
{"model": "gpt-4o-mini-2024-07-18", "provider": "OIVSCode", "prompt_tokens": 1263, "completion_tokens": 0, "total_tokens": 1263}
|
343 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 21594, "completion_tokens": 897, "total_tokens": 22491}
|
usage/2025-03-18.jsonl
ADDED
@@ -0,0 +1,159 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 22513, "completion_tokens": 858, "total_tokens": 23371}
|
2 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 23416, "completion_tokens": 883, "total_tokens": 24299}
|
3 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 24400, "completion_tokens": 765, "total_tokens": 25165}
|
4 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 25190, "completion_tokens": 931, "total_tokens": 26121}
|
5 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 26134, "completion_tokens": 895, "total_tokens": 27029}
|
6 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 27042, "completion_tokens": 846, "total_tokens": 27888}
|
7 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 27912, "completion_tokens": 833, "total_tokens": 28745}
|
8 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 28758, "completion_tokens": 802, "total_tokens": 29560}
|
9 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 29564, "completion_tokens": 762, "total_tokens": 30326}
|
10 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 30330, "completion_tokens": 786, "total_tokens": 31116}
|
11 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 31120, "completion_tokens": 787, "total_tokens": 31907}
|
12 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 31911, "completion_tokens": 809, "total_tokens": 32720}
|
13 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 32724, "completion_tokens": 833, "total_tokens": 33557}
|
14 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 33561, "completion_tokens": 829, "total_tokens": 34390}
|
15 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 34403, "completion_tokens": 833, "total_tokens": 35236}
|
16 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 35254, "completion_tokens": 814, "total_tokens": 36068}
|
17 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 36072, "completion_tokens": 774, "total_tokens": 36846}
|
18 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 36850, "completion_tokens": 746, "total_tokens": 37596}
|
19 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 37600, "completion_tokens": 773, "total_tokens": 38373}
|
20 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 38377, "completion_tokens": 830, "total_tokens": 39207}
|
21 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 39211, "completion_tokens": 820, "total_tokens": 40031}
|
22 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 40035, "completion_tokens": 804, "total_tokens": 40839}
|
23 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 46223, "completion_tokens": 608, "total_tokens": 46831}
|
24 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 46859, "completion_tokens": 871, "total_tokens": 47730}
|
25 |
+
{"model": "deepseek-r1", "provider": "DeepInfraChat", "prompt_tokens": 8, "total_tokens": 417, "completion_tokens": 409, "estimated_cost": 0.00090011}
|
26 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 47756, "completion_tokens": 884, "total_tokens": 48640}
|
27 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 49038, "completion_tokens": 912, "total_tokens": 49950}
|
28 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 49979, "completion_tokens": 853, "total_tokens": 50832}
|
29 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 22026, "completion_tokens": 1024, "total_tokens": 23050}
|
30 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 22026, "completion_tokens": 1460, "total_tokens": 23486}
|
31 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 426, "completion_tokens": 432, "total_tokens": 858}
|
32 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 946, "completion_tokens": 175, "total_tokens": 1121}
|
33 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 56249, "completion_tokens": 906, "total_tokens": 57155}
|
34 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 24715, "completion_tokens": 1024, "total_tokens": 25739}
|
35 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 57168, "completion_tokens": 847, "total_tokens": 58015}
|
36 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 25749, "completion_tokens": 273, "total_tokens": 26022}
|
37 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 25749, "completion_tokens": 244, "total_tokens": 25993}
|
38 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 25749, "completion_tokens": 1024, "total_tokens": 26773}
|
39 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 58061, "completion_tokens": 935, "total_tokens": 58996}
|
40 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 59000, "completion_tokens": 968, "total_tokens": 59968}
|
41 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 59981, "completion_tokens": 845, "total_tokens": 60826}
|
42 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 60839, "completion_tokens": 880, "total_tokens": 61719}
|
43 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 67648, "completion_tokens": 897, "total_tokens": 68545}
|
44 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 68598, "completion_tokens": 908, "total_tokens": 69506}
|
45 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 78709, "completion_tokens": 937, "total_tokens": 79646}
|
46 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 79688, "completion_tokens": 942, "total_tokens": 80630}
|
47 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 86597, "completion_tokens": 955, "total_tokens": 87552}
|
48 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 87565, "completion_tokens": 924, "total_tokens": 88489}
|
49 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 94696, "completion_tokens": 905, "total_tokens": 95601}
|
50 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 95654, "completion_tokens": 981, "total_tokens": 96635}
|
51 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 96743, "completion_tokens": 751, "total_tokens": 97494}
|
52 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 27321, "completion_tokens": 1024, "total_tokens": 28345}
|
53 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 106661, "completion_tokens": 863, "total_tokens": 107524}
|
54 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 107537, "completion_tokens": 842, "total_tokens": 108379}
|
55 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 108392, "completion_tokens": 849, "total_tokens": 109241}
|
56 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 109254, "completion_tokens": 827, "total_tokens": 110081}
|
57 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 110094, "completion_tokens": 807, "total_tokens": 110901}
|
58 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 110905, "completion_tokens": 812, "total_tokens": 111717}
|
59 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 111721, "completion_tokens": 759, "total_tokens": 112480}
|
60 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 110094, "completion_tokens": 901, "total_tokens": 110995}
|
61 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 119796, "completion_tokens": 851, "total_tokens": 120647}
|
62 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 120660, "completion_tokens": 875, "total_tokens": 121535}
|
63 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 131530, "completion_tokens": 909, "total_tokens": 132439}
|
64 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 132466, "completion_tokens": 974, "total_tokens": 133440}
|
65 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 133468, "completion_tokens": 688, "total_tokens": 134156}
|
66 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 141004, "completion_tokens": 930, "total_tokens": 141934}
|
67 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 148741, "completion_tokens": 813, "total_tokens": 149554}
|
68 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 149613, "completion_tokens": 925, "total_tokens": 150538}
|
69 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 150566, "completion_tokens": 902, "total_tokens": 151468}
|
70 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 151566, "completion_tokens": 903, "total_tokens": 152469}
|
71 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 152482, "completion_tokens": 654, "total_tokens": 153136}
|
72 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 160009, "completion_tokens": 798, "total_tokens": 160807}
|
73 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 160811, "completion_tokens": 799, "total_tokens": 161610}
|
74 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 169011, "completion_tokens": 944, "total_tokens": 169955}
|
75 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 177349, "completion_tokens": 470, "total_tokens": 177819}
|
76 |
+
{"model": "claude-sonnet-3.7", "provider": "Blackbox", "prompt_tokens": 71, "completion_tokens": 329, "total_tokens": 400}
|
77 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 11, "completion_tokens": 321, "total_tokens": 332}
|
78 |
+
{"model": "deepseek-r1", "provider": "Glider", "prompt_tokens": 382, "completion_tokens": 1175, "total_tokens": 1557}
|
79 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "prompt_tokens": 18, "completion_tokens": 9, "total_tokens": 27}
|
80 |
+
{"model": "openai-reasoning", "provider": "PollinationsAI", "prompt_tokens": 43, "completion_tokens": 35, "total_tokens": 78}
|
81 |
+
{"model": "midjourney", "provider": "PollinationsAI", "prompt_tokens": 97, "completion_tokens": 261, "total_tokens": 358}
|
82 |
+
{"model": "dall-e-3", "provider": "PollinationsAI", "prompt_tokens": 97, "completion_tokens": 265, "total_tokens": 362}
|
83 |
+
{"model": "meta-llama/Llama-3.3-70B-Instruct-Turbo", "provider": "DeepInfraChat", "prompt_tokens": 1851, "total_tokens": 2307, "completion_tokens": 456, "estimated_cost": 0.00035892}
|
84 |
+
{"model": "openai", "provider": "PollinationsAI", "completion_tokens": 440, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2121, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2561}
|
85 |
+
{"model": "openai-large", "provider": "PollinationsAI", "prompt_tokens": 8, "completion_tokens": 11, "total_tokens": 19}
|
86 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 12, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 20, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 32}
|
87 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 23, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 40, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 63}
|
88 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 17, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 72, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 89}
|
89 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 844, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 101, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 945}
|
90 |
+
{"model": "llama-3", "provider": "HuggingFaceAPI", "prompt_tokens": 992, "total_tokens": 1039, "completion_tokens": 47}
|
91 |
+
{"model": "command-r", "provider": "HuggingSpace", "prompt_tokens": 1011, "completion_tokens": 87, "total_tokens": 1098}
|
92 |
+
{"model": "flux-dev", "provider": "HuggingSpace", "prompt_tokens": 1011, "completion_tokens": 134, "total_tokens": 1145}
|
93 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 1011, "completion_tokens": 3629, "total_tokens": 4640}
|
94 |
+
{"model": "flux-dev", "provider": "PollinationsImage", "prompt_tokens": 1011, "completion_tokens": 151, "total_tokens": 1162}
|
95 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 1011, "completion_tokens": 3667, "total_tokens": 4678}
|
96 |
+
{"model": "flux-dev", "provider": "HuggingFace", "prompt_tokens": 1011, "completion_tokens": 3609, "total_tokens": 4620}
|
97 |
+
{"model": "qwq-32b", "provider": "HuggingFaceAPI", "prompt_tokens": 1024, "total_tokens": 1343, "completion_tokens": 319}
|
98 |
+
{"model": "deepseek-ai/DeepSeek-R1-Distill-Llama-70B", "provider": "HuggingFaceAPI", "prompt_tokens": 1011, "completion_tokens": 197, "total_tokens": 1208}
|
99 |
+
{"model": "stabilityai/stable-diffusion-xl-base-1.0", "provider": "HuggingFace", "prompt_tokens": 1011, "completion_tokens": 55, "total_tokens": 1066}
|
100 |
+
{"model": "stabilityai/stable-diffusion-3.5-large", "provider": "HuggingFace", "prompt_tokens": 1011, "completion_tokens": 55, "total_tokens": 1066}
|
101 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace", "prompt_tokens": 1011, "completion_tokens": 3651, "total_tokens": 4662}
|
102 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace", "prompt_tokens": 1011, "completion_tokens": 3677, "total_tokens": 4688}
|
103 |
+
{"model": "black-forest-labs/FLUX.1-dev", "provider": "HuggingFace", "prompt_tokens": 1011, "completion_tokens": 3585, "total_tokens": 4596}
|
104 |
+
{"provider": "Gemini", "prompt_tokens": 1011, "completion_tokens": 11, "total_tokens": 1022}
|
105 |
+
{"model": "gemini-2.0-flash-thinking-with-apps", "provider": "Gemini", "prompt_tokens": 1011, "completion_tokens": 110, "total_tokens": 1121}
|
106 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 9, "completion_tokens": 178, "total_tokens": 187}
|
107 |
+
{"model": "gemini-2.0-flash-thinking", "provider": "Gemini", "prompt_tokens": 62, "completion_tokens": 3973, "total_tokens": 4035}
|
108 |
+
{"model": "gemini-2.0-flash-thinking", "provider": "Gemini", "prompt_tokens": 2906, "completion_tokens": 3388, "total_tokens": 6294}
|
109 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 27, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 28, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 55}
|
110 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 66, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 69, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 135}
|
111 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 54, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 144, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 198}
|
112 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 102533, "completion_tokens": 775, "total_tokens": 103308}
|
113 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 18, "completion_tokens": 90, "total_tokens": 108}
|
114 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 142, "completion_tokens": 803, "total_tokens": 945}
|
115 |
+
{"model": "openai-audio", "provider": "PollinationsAI", "prompt_tokens": 199, "completion_tokens": 18, "total_tokens": 217}
|
116 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 23, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 208, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 231}
|
117 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 29, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 208, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 237}
|
118 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 948, "completion_tokens": 748, "total_tokens": 1696}
|
119 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 1776, "completion_tokens": 862, "total_tokens": 2638}
|
120 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 6177, "completion_tokens": 561, "total_tokens": 6738}
|
121 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 688, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 25, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 713}
|
122 |
+
{"model": "gpt-4o", "provider": "Blackbox", "prompt_tokens": 2655, "completion_tokens": 866, "total_tokens": 3521}
|
123 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 6985, "completion_tokens": 1170, "total_tokens": 8155}
|
124 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 786, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 716, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 1502}
|
125 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 805, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 1512, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 2317}
|
126 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 397, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2345, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 1664}, "total_tokens": 2742}
|
127 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 1197, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 2811, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 4008}
|
128 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 783, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4004, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 2688}, "total_tokens": 4787}
|
129 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 712, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 4807, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 5519}
|
130 |
+
{"model": "phi-4-multimodal", "provider": "HuggingSpace", "prompt_tokens": 19, "completion_tokens": 9, "total_tokens": 28}
|
131 |
+
{"model": "phi-4-multimodal", "provider": "HuggingSpace", "prompt_tokens": 41, "completion_tokens": 4, "total_tokens": 45}
|
132 |
+
{"model": "phi-4-multimodal", "provider": "HuggingSpace", "prompt_tokens": 12, "completion_tokens": 87, "total_tokens": 99}
|
133 |
+
{"model": "searchgpt", "provider": "PollinationsAI", "completion_tokens": 228, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 150, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 378}
|
134 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 309, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 280, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 589}
|
135 |
+
{"model": "openai-large", "provider": "PollinationsAI", "completion_tokens": 257, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 280, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 537}
|
136 |
+
{"model": "command-r7b", "provider": "HuggingSpace", "prompt_tokens": 12, "completion_tokens": 226, "total_tokens": 238}
|
137 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "prompt_tokens": 3548, "completion_tokens": 363, "total_tokens": 3911}
|
138 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 628, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 5495, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 6123}
|
139 |
+
{"model": "deepseek-r1", "provider": "PollinationsAI", "prompt_tokens": 30, "completion_tokens": 94, "total_tokens": 124}
|
140 |
+
{"model": "flux", "provider": "G4F", "prompt_tokens": 19, "completion_tokens": 181, "total_tokens": 200}
|
141 |
+
{"model": "gpt-4o", "provider": "PollinationsAI", "completion_tokens": 11, "completion_tokens_details": {"accepted_prediction_tokens": 0, "audio_tokens": 0, "reasoning_tokens": 0, "rejected_prediction_tokens": 0}, "prompt_tokens": 41, "prompt_tokens_details": {"audio_tokens": 0, "cached_tokens": 0}, "total_tokens": 52}
|
142 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 15, "completion_tokens": 719, "total_tokens": 734}
|
143 |
+
{"model": "qwen-coder", "provider": "PollinationsAI", "prompt_tokens": 8, "completion_tokens": 51, "total_tokens": 59}
|
144 |
+
{"model": "gemini-2.0-flash-thinking-exp-1219", "provider": "GeminiPro", "prompt_tokens": 56, "completion_tokens": 33, "total_tokens": 89}
|
145 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 8, "completion_tokens": 31, "total_tokens": 39}
|
146 |
+
{"model": "claude-3.7-sonnet", "provider": "Blackbox", "prompt_tokens": 50, "completion_tokens": 97, "total_tokens": 147}
|
147 |
+
{"model": "blackboxai-pro", "provider": "Blackbox", "prompt_tokens": 9, "completion_tokens": 1484, "total_tokens": 1493}
|
148 |
+
{"model": "llama-3", "provider": "HuggingFaceAPI", "prompt_tokens": 42, "total_tokens": 167, "completion_tokens": 125}
|
149 |
+
{"model": "deepseek-r1", "provider": "HuggingFace", "prompt_tokens": 153, "completion_tokens": 423, "total_tokens": 576}
|
150 |
+
{"model": "command-r7b", "provider": "HuggingSpace", "prompt_tokens": 267, "completion_tokens": 64, "total_tokens": 331}
|
151 |
+
{"model": "searchgpt", "provider": "PollinationsAI", "prompt_tokens": 346, "completion_tokens": 97, "total_tokens": 443}
|
152 |
+
{"model": "searchgpt", "provider": "PollinationsAI", "prompt_tokens": 458, "completion_tokens": 110, "total_tokens": 568}
|
153 |
+
{"model": "perplexity-ai/r1-1776", "provider": "HuggingFaceAPI", "prompt_tokens": 554, "total_tokens": 980, "completion_tokens": 426}
|
154 |
+
{"model": "command-r", "provider": "HuggingSpace", "prompt_tokens": 69, "completion_tokens": 29, "total_tokens": 98}
|
155 |
+
{"model": "@cf/meta/llama-3.3-70b-instruct-fp8-fast", "provider": "Cloudflare", "prompt_tokens": 8, "completion_tokens": 796, "total_tokens": 804}
|
156 |
+
{"model": "gemini-1.5-pro", "provider": "Free2GPT", "prompt_tokens": 173, "completion_tokens": 584, "total_tokens": 757}
|
157 |
+
{"model": "deepseek-ai/DeepSeek-V3", "provider": "DeepInfraChat", "prompt_tokens": 7171, "total_tokens": 8165, "completion_tokens": 994, "estimated_cost": 0.0037530600000000003}
|
158 |
+
{"model": "gemini-1.5-pro", "provider": "Free2GPT", "prompt_tokens": 8063, "completion_tokens": 550, "total_tokens": 8613}
|
159 |
+
{"model": "openai", "provider": "PollinationsAI", "prompt_tokens": 535, "completion_tokens": 1179, "total_tokens": 1714}
|