Skip to content

Commit 1a759f5

Browse files
committed
Recordings update (setup: ollama, suite: base)
Signed-off-by: Derek Higgins <[email protected]>
1 parent c13151e commit 1a759f5

File tree

2 files changed

+95
-0
lines changed

2 files changed

+95
-0
lines changed
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"request": {
3+
"method": "POST",
4+
"url": "http://0.0.0.0:11434/v1/v1/chat/completions",
5+
"headers": {},
6+
"body": {
7+
"model": "llama3.2:3b-instruct-fp16",
8+
"messages": [
9+
{
10+
"role": "user",
11+
"content": "Humans live on which planet: Mars, Venus, or Earth?"
12+
}
13+
],
14+
"stream": false
15+
},
16+
"endpoint": "/v1/chat/completions",
17+
"model": "llama3.2:3b-instruct-fp16"
18+
},
19+
"response": {
20+
"body": {
21+
"__type__": "openai.types.chat.chat_completion.ChatCompletion",
22+
"__data__": {
23+
"id": "chatcmpl-179",
24+
"choices": [
25+
{
26+
"finish_reason": "stop",
27+
"index": 0,
28+
"logprobs": null,
29+
"message": {
30+
"content": "The answer is Earth. Humans live on this planet, which is the third planet from the Sun and the only known habitable world in our solar system with conditions suitable for human life.",
31+
"refusal": null,
32+
"role": "assistant",
33+
"annotations": null,
34+
"audio": null,
35+
"function_call": null,
36+
"tool_calls": null
37+
}
38+
}
39+
],
40+
"created": 1758618369,
41+
"model": "llama3.2:3b-instruct-fp16",
42+
"object": "chat.completion",
43+
"service_tier": null,
44+
"system_fingerprint": "fp_ollama",
45+
"usage": {
46+
"completion_tokens": 38,
47+
"prompt_tokens": 38,
48+
"total_tokens": 76,
49+
"completion_tokens_details": null,
50+
"prompt_tokens_details": null
51+
}
52+
}
53+
},
54+
"is_streaming": false
55+
}
56+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"request": {
3+
"method": "POST",
4+
"url": "http://localhost:11434/api/generate",
5+
"headers": {},
6+
"body": {
7+
"model": "llama3.2:3b-instruct-fp16",
8+
"raw": true,
9+
"prompt": "<|begin_of_text|><|start_header_id|>system<|end_header_id|>\n\n<|eot_id|><|start_header_id|>user<|end_header_id|>\n\nHumans live on which planet: Mars, Venus, or Earth?<|eot_id|><|start_header_id|>assistant<|end_header_id|>\n\n",
10+
"options": {
11+
"temperature": 0.0
12+
},
13+
"stream": false
14+
},
15+
"endpoint": "/api/generate",
16+
"model": "llama3.2:3b-instruct-fp16"
17+
},
18+
"response": {
19+
"body": {
20+
"__type__": "ollama._types.GenerateResponse",
21+
"__data__": {
22+
"model": "llama3.2:3b-instruct-fp16",
23+
"created_at": "2025-09-23T08:50:21.049688857Z",
24+
"done": true,
25+
"done_reason": "stop",
26+
"total_duration": 18511252772,
27+
"load_duration": 47879633,
28+
"prompt_eval_count": 29,
29+
"prompt_eval_duration": 2305573657,
30+
"eval_count": 90,
31+
"eval_duration": 16157220042,
32+
"response": "Humans do not currently live on any of these planets. Humans are native to the planet Earth.\n\nMars is a rocky planet in our solar system that has been explored by several robotic spacecraft, but it does not have an atmosphere suitable for human habitation.\n\nVenus is also a rocky planet with a thick atmosphere, but its surface temperature is extremely hot and hostile to humans.\n\nEarth is the only known planet in the universe where humans can live.",
33+
"thinking": null,
34+
"context": null
35+
}
36+
},
37+
"is_streaming": false
38+
}
39+
}

0 commit comments

Comments
 (0)