mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-03 08:12:39 +00:00
fix: ensure token usage recording, validate response model on stream
Some checks failed
Build uv cache / build-cache (3.10) (push) Has been cancelled
Build uv cache / build-cache (3.11) (push) Has been cancelled
Build uv cache / build-cache (3.12) (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Notify Downstream / notify-downstream (push) Has been cancelled
Check Documentation Broken Links / Check broken links (push) Has been cancelled
Build uv cache / build-cache (3.13) (push) Has been cancelled
Some checks failed
Build uv cache / build-cache (3.10) (push) Has been cancelled
Build uv cache / build-cache (3.11) (push) Has been cancelled
Build uv cache / build-cache (3.12) (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Notify Downstream / notify-downstream (push) Has been cancelled
Check Documentation Broken Links / Check broken links (push) Has been cancelled
Build uv cache / build-cache (3.13) (push) Has been cancelled
This commit is contained in:
@@ -1,15 +1,6 @@
|
||||
interactions:
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -49,22 +40,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFJNa9wwEL37V0x1Xhfvdj996wdLQ0vJoRRKG8ysPLaVyBohyUlK2P9e
|
||||
ZGfXTpNALwbPm/f03sw8JABClSIHIRsMsrU6/Xi9/7b58uPiRgf7gQ5fP33f3f+kptrvLxeXYhYZ
|
||||
fLgmGU6st5JbqykoNgMsHWGgqDrfrJfb3W67XfVAyyXpSKttSJectsqodJEtlmm2SefbR3bDSpIX
|
||||
OfxKAAAe+m/0aUq6Fzlks1OlJe+xJpGfmwCEYx0rAr1XPqAJYjaCkk0g01u/AMN3INFArW4JEOpo
|
||||
G9D4O3IAv81eGdTwvv/P4TNpzW+mWo6qzmPMYzqtJwAawwHjPPoUV4/I8exbc20dH/w/VFEpo3xT
|
||||
OELPJnr0ga3o0WMCcNXPp3sSWVjHrQ1F4Bvqn5uv3g16YlzLBD2BgQPqSX29nr2gV5QUUGk/mbCQ
|
||||
KBsqR+q4DuxKxRMgmaR+7uYl7SG5MvX/yI+AlGQDlYV1VCr5NPHY5ihe7Wtt5yn3hoUnd6skFUGR
|
||||
i5soqcJOD7ck/B8fqC0qZWpy1qnhoCpbrLJdtq4WiFIkx+QvAAAA//8DAM0pnY9eAwAA
|
||||
string: "{\n \"id\": \"chatcmpl-CjFN7KVIkltpBebLDT9xYehfFFP2P\",\n \"object\": \"chat.completion\",\n \"created\": 1764899885,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -115,16 +96,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -164,22 +136,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFJNb9swDL37V3A6x4OTJm7jWzGs7TD0kMu+C4OVaUetTGmSnG4o8t8L
|
||||
2U3sbh2wiwHz8T29R/IxARCqEgUIucUgW6vTd3ebr1c/P3efLr+115uP6sv1bmV3fr15H/hczCLD
|
||||
3N6RDAfWW2laqykowwMsHWGgqDo/zZfr5eIsn/dAayrSkdbYkC5N2ipW6SJbLNPsNJ2fPbO3Rkny
|
||||
ooDvCQDAY/+NPrmiX6KAbHaotOQ9NiSKYxOAcEbHikDvlQ/IQcxGUBoOxL31D8DmASQyNGpHgNBE
|
||||
24DsH8gB/OALxajhvP8v4Iq0Nm+mWo7qzmPMw53WEwCZTcA4jz7FzTOyP/rWprHO3Po/qKJWrPy2
|
||||
dITecPTog7GiR/cJwE0/n+5FZGGdaW0og7mn/rn56mTQE+NaJugBDCagntTzfPaKXllRQKX9ZMJC
|
||||
otxSNVLHdWBXKTMBkknqv928pj0kV9z8j/wISEk2UFVaR5WSLxOPbY7i1f6r7Tjl3rDw5HZKUhkU
|
||||
ubiJimrs9HBLwv/2gdqyVtyQs04NB1XbcpWts7xeIEqR7JMnAAAA//8DANhDVCJeAwAA
|
||||
string: "{\n \"id\": \"chatcmpl-CjQYHqWuVGZmMQKiXMv5pvs9QEtnA\",\n \"object\": \"chat.completion\",\n \"created\": 1764942861,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -230,16 +192,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -279,22 +232,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFJNb9swDL37V3A6x4OTOU7jWz8QbEBPvW6Fwcq0o1QWBUluuxX574Ps
|
||||
Jna3DtjFgPn4nt4j+ZoACFWLEoTcY5Cd1en14e7i9lrf7PhxmV+F28NNi79Wza4r7uSLWEQGPxxI
|
||||
hhPrs+TOagqKzQhLRxgoqi43Rb7N19l2MwAd16QjrbUhzTntlFHpKlvlabZJlxdv7D0rSV6U8D0B
|
||||
AHgdvtGnqelFlJAtTpWOvMeWRHluAhCOdawI9F75gCaIxQRKNoHMYP0bGH4GiQZa9USA0EbbgMY/
|
||||
kwP4YXbKoIbL4b+Er6Q1f5prOWp6jzGP6bWeAWgMB4zzGFLcvyHHs2/NrXX84P+gikYZ5feVI/Rs
|
||||
okcf2IoBPSYA98N8+neRhXXc2VAFfqThueX6y6gnprXM0BMYOKCe1Yti8YFeVVNApf1swkKi3FM9
|
||||
Uad1YF8rngHJLPXfbj7SHpMr0/6P/ARISTZQXVlHtZLvE09tjuLV/qvtPOXBsPDknpSkKihycRM1
|
||||
Ndjr8ZaE/+kDdVWjTEvOOjUeVGOrdbbNimaFKEVyTH4DAAD//wMA3cwDIV4DAAA=
|
||||
string: "{\n \"id\": \"chatcmpl-CjR8LClDFok14BtLjDgaz2fFm6Rcx\",\n \"object\": \"chat.completion\",\n \"created\": 1764945097,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -345,16 +288,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -394,22 +328,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLBbtswDL37Kzid48HJYqfxbdgwbCiwAbvssBUGI9OOOlkUJDltVuTf
|
||||
B9lN7G4t0IsB8/E9vUfyIQEQqhYlCLnHIDur0w+337fNYdfp4/VHff1N33/NsiI/5s2h+/NDLCKD
|
||||
d7ckw5n1VnJnNQXFZoSlIwwUVZebYr1d58vNdgA6rklHWmtDuua0U0alq2y1TrNNurx6ZO9ZSfKi
|
||||
hJ8JAMDD8I0+TU33ooRsca505D22JMpLE4BwrGNFoPfKBzRBLCZQsglkButfwPAdSDTQqgMBQhtt
|
||||
Axp/Rw7gl/mkDGp4P/yX8Jm05jdzLUdN7zHmMb3WMwCN4YBxHkOKm0fkdPGtubWOd/4fqmiUUX5f
|
||||
OULPJnr0ga0Y0FMCcDPMp38SWVjHnQ1V4N80PLfM3416YlrLDD2DgQPqWb0oFs/oVTUFVNrPJiwk
|
||||
yj3VE3VaB/a14hmQzFL/7+Y57TG5Mu1r5CdASrKB6so6qpV8mnhqcxSv9qW2y5QHw8KTOyhJVVDk
|
||||
4iZqarDX4y0Jf/SBuqpRpiVnnRoPqrFVnm2zolkhSpGckr8AAAD//wMAboqAfF4DAAA=
|
||||
string: "{\n \"id\": \"chatcmpl-CjR9fvbmlyKDlKOlxN0065y5fvmzW\",\n \"object\": \"chat.completion\",\n \"created\": 1764945179,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -460,16 +384,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -509,22 +424,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLBbtQwEL3nKwafNyjZZrc0NwRqgUMFvdIqmtqTrIvjcW2nBVX778hJ
|
||||
d5NCkbhEyrx5z+/NzFMGILQSNQi5wyh7Z/IPd1fnVXEZ5MV9dem/dV+vTsqLj4W7/9K5d2KVGHx7
|
||||
RzIeWG8l985Q1GwnWHrCSEm1PN1WZ9VmU1Yj0LMik2idi3nFea+tztfFusqL07x8Fpc71pKCqOF7
|
||||
BgDwNH6TT6vop6ihWB0qPYWAHYn62AQgPJtUERiCDhFtFKsZlGwj2dH6Z7D8CBItdPqBAKFLtgFt
|
||||
eCQPcG3PtUUD78f/Gj6RMfxmqeWpHQKmPHYwZgGgtRwxzWNMcfOM7I++DXfO8234gypabXXYNZ4w
|
||||
sE0eQ2QnRnSfAdyM8xleRBbOc+9iE/kHjc+Vm5NJT8xrWaAHMHJEs6hvt6tX9BpFEbUJiwkLiXJH
|
||||
aqbO68BBaV4A2SL1325e056Sa9v9j/wMSEkukmqcJ6Xly8Rzm6d0tf9qO055NCwC+QctqYmafNqE
|
||||
ohYHM92SCL9CpL5pte3IO6+ng2pdsynOim27RpQi22e/AQAA//8DAJ0jNq9eAwAA
|
||||
string: "{\n \"id\": \"chatcmpl-CjRF40NscGq4NrQgPR31GD0pqJgp8\",\n \"object\": \"chat.completion\",\n \"created\": 1764945514,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -575,16 +480,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -624,22 +520,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFJdb9swDHz3r+D0HA9Olrit3/bVrRiwAcX2MGyFwcq0rVQWBUluWhT5
|
||||
74XsJna3DtiLAfN4pzuSDwmAUJUoQMgWg+ysTt9vLz/hUn/7rs/vu4uv7e7juw+XP27aL9u7n1ux
|
||||
iAy+3pIMB9ZryZ3VFBSbEZaOMFBUXZ7k67P1Js9OB6DjinSkNTaka047ZVS6ylbrNDtJl6dP7JaV
|
||||
JC8K+JUAADwM3+jTVHQnCsgWh0pH3mNDojg2AQjHOlYEeq98QBPEYgIlm0BmsH4Bhncg0UCjbgkQ
|
||||
mmgb0PgdOYDf5lwZ1PB2+C/gM2nNr+ZajureY8xjeq1nABrDAeM8hhRXT8j+6FtzYx1f+z+oolZG
|
||||
+bZ0hJ5N9OgDWzGg+wTgaphP/yyysI47G8rANzQ8t9y8GfXEtJYZegADB9Szep4vXtArKwqotJ9N
|
||||
WEiULVUTdVoH9pXiGZDMUv/t5iXtMbkyzf/IT4CUZANVpXVUKfk88dTmKF7tv9qOUx4MC0/uVkkq
|
||||
gyIXN1FRjb0eb0n4ex+oK2tlGnLWqfGgaltusrMsr1eIUiT75BEAAP//AwC3nqriXgMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjRGa1lOTlFymINhwEBDRUkhKjxYj\",\n \"object\": \"chat.completion\",\n \"created\": 1764945608,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -690,16 +576,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -739,22 +616,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFJNb9QwEL3nVww+b1B2m6ZsbgjxeQiCAyBBFc06k6wXx2PZTguq9r9X
|
||||
TrqbFIrEJVLmzXt+b2buEgChGlGCkHsMsrc6fXX4XFWfDpXuKb/YfX397cPbKpMfO599qTKxigze
|
||||
HUiGE+u55N5qCorNBEtHGCiqrq+KfJsX2WY7Aj03pCOtsyHNOe2VUekm2+RpdpWuXzyw96wkeVHC
|
||||
9wQA4G78Rp+moV+ihGx1qvTkPXYkynMTgHCsY0Wg98oHNEGsZlCyCWRG6+/B8C1INNCpGwKELtoG
|
||||
NP6WHMAP80YZ1PBy/C/hHWnNz5ZajtrBY8xjBq0XABrDAeM8xhTXD8jx7FtzZx3v/B9U0Sqj/L52
|
||||
hJ5N9OgDWzGixwTgepzP8CiysI57G+rAP2l8bn15MemJeS0L9AQGDqgX9aJYPaFXNxRQab+YsJAo
|
||||
99TM1HkdODSKF0CySP23m6e0p+TKdP8jPwNSkg3U1NZRo+TjxHObo3i1/2o7T3k0LDy5GyWpDopc
|
||||
3ERDLQ56uiXhf/tAfd0q05GzTk0H1dr6MttmRbtBlCI5JvcAAAD//wMAsToD2l4DAAA=
|
||||
string: "{\n \"id\": \"chatcmpl-CjRNNQjNlme43bWEXJGN0cOgs0VN0\",\n \"object\": \"chat.completion\",\n \"created\": 1764946029,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -805,16 +672,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -854,22 +712,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFJdb9swDHz3r+D0HA9xkjpt3rYB+8DehmUrsBWGItM2W1kUJDlZUeS/
|
||||
D7Kb2N1aoC8GzOOd7kg+JACCSrEBoRoZVGt1+uF2my3f//h633zaVtekzeW+/nb4eRe+b7ERs8jg
|
||||
3S2qcGK9VdxajYHYDLByKANG1Wydr64u8my97oGWS9SRVtuQrjhtyVC6mC9W6XydZpeP7IZJoRcb
|
||||
+JUAADz03+jTlPhHbGA+O1Va9F7WKDbnJgDhWMeKkN6TD9IEMRtBxSag6a1/AcMHUNJATXsECXW0
|
||||
DdL4AzqA3+YjGanhXf+/gc+oNb+ZajmsOi9jHtNpPQGkMRxknEef4uYROZ59a66t453/hyoqMuSb
|
||||
wqH0bKJHH9iKHj0mADf9fLonkYV13NpQBL7D/rnsYjnoiXEtE/QEBg5ST+p5PntGrygxSNJ+MmGh
|
||||
pGqwHKnjOmRXEk+AZJL6fzfPaQ/JydSvkR8BpdAGLAvrsCT1NPHY5jBe7Utt5yn3hoVHtyeFRSB0
|
||||
cRMlVrLTwy0Jf+8DtkVFpkZnHQ0HVdkiy6rlfHFV5TuRHJO/AAAA//8DAIFU9WxeAwAA
|
||||
string: "{\n \"id\": \"chatcmpl-CjU13BVKyhGUfXiln8vgRwWktTUeh\",\n \"object\": \"chat.completion\",\n \"created\": 1764956177,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_11f3029f6b\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
|
||||
@@ -1,15 +1,6 @@
|
||||
interactions:
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -49,22 +40,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLBjtMwEL3nKwafG5SWbtvkhhAVvXADDrCKZp1JMsWxLdtpF63678jJ
|
||||
tsnCInGJlHnznt+bmacEQHAlChCyxSA7q9IPx/3nzeqQH/f5N9l8fZRfDhnrj8t2m51PYhEZ5uFI
|
||||
MlxZb6XprKLARo+wdISBoupyu1nv8ny3Ww9AZypSkdbYkK5N2rHmdJWt1mm2TZe7Z3ZrWJIXBXxP
|
||||
AACehm/0qSt6FAVki2ulI++xIVHcmgCEMypWBHrPPqAOYjGB0uhAerB+AG3OIFFDwycChCbaBtT+
|
||||
TA7gh96zRgXvh/8CPpFS5s1cy1Hde4x5dK/UDECtTcA4jyHF/TNyuflWprHOPPg/qKJmzb4tHaE3
|
||||
Onr0wVgxoJcE4H6YT/8isrDOdDaUwfyk4bnl3btRT0xrmaFXMJiAalbfbBav6JUVBWTlZxMWEmVL
|
||||
1USd1oF9xWYGJLPUf7t5TXtMzrr5H/kJkJJsoKq0jiqWLxNPbY7i1f6r7TblwbDw5E4sqQxMLm6i
|
||||
ohp7Nd6S8L98oK6sWTfkrOPxoGpb3mV5tqlXiFIkl+Q3AAAA//8DAPX3qDdeAwAA
|
||||
string: "{\n \"id\": \"chatcmpl-CjFN62I9jF9WcgVxcUI0inE1h70wv\",\n \"object\": \"chat.completion\",\n \"created\": 1764899884,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -115,16 +96,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -164,22 +136,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFJda9wwEHz3r9jq+Vx8V+eS81to6Qc0hVIoJG0wG3nt01WWVGmdtIT7
|
||||
70Fy7uykLfTF4J2d0czu3mcAQjWiAiG3yLJ3On+9+3x5sds4zdr/DBef1NWX8vzdR/p6dflGi0Vk
|
||||
2JsdST6wXkrbO02srBlh6QmZourydF1uytXZep2A3jakI61znJc275VR+apYlXlxmi/PHtlbqyQF
|
||||
UcG3DADgPn2jT9PQL1FBsThUegoBOxLVsQlAeKtjRWAIKjAaFosJlNYwmWT9Axh7BxINdOqWAKGL
|
||||
tgFNuCMP8N28VQY1nKf/Ct6T1vbFXMtTOwSMecyg9QxAYyxjnEdKcf2I7I++te2ctzfhGVW0yqiw
|
||||
rT1hsCZ6DGydSOg+A7hO8xmeRBbO295xzfYHpeeWJ69GPTGtZYYeQLaMelYfN/Rcr26IUekwm7CQ
|
||||
KLfUTNRpHTg0ys6AbJb6Tzd/0x6TK9P9j/wESEmOqamdp0bJp4mnNk/xav/VdpxyMiwC+VslqWZF
|
||||
Pm6ioRYHPd6SCL8DU1+3ynTknVfjQbWuPik2xbpdIUqR7bMHAAAA//8DAETcHlFeAwAA
|
||||
string: "{\n \"id\": \"chatcmpl-CjQYMj9pltlrqsMNiZS4AGLeVZYDl\",\n \"object\": \"chat.completion\",\n \"created\": 1764942866,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -230,16 +192,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -279,22 +232,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAA4xSXW/UMBB8z69Y/HxBSbiv5g0QqLwgVCRUBFW0dTaJD8fr2k5LVd1/r5zrXVIo
|
||||
Ei+RsrMzntndhwRAqFqUIGSHQfZWp+93F9svH1bFRUG7m/Nt1t18/fw9d5vL+2+X78QiMvh6RzIc
|
||||
Wa8l91ZTUGwOsHSEgaJqvlkvz5arPMtHoOeadKS1NqRLTntlVFpkxTLNNmm+fWJ3rCR5UcKPBADg
|
||||
YfxGn6am36KEbHGs9OQ9tiTKUxOAcKxjRaD3ygc0QSwmULIJZEbrn8DwHUg00KpbAoQ22gY0/o4c
|
||||
wE/zURnU8Hb8L+GctOZXcy1HzeAx5jGD1jMAjeGAcR5jiqsnZH/yrbm1jq/9H1TRKKN8VzlCzyZ6
|
||||
9IGtGNF9AnA1zmd4FllYx70NVeBfND6Xr94c9MS0lhl6BAMH1LP6er14Qa+qKaDSfjZhIVF2VE/U
|
||||
aR041IpnQDJL/bebl7QPyZVp/0d+AqQkG6iurKNayeeJpzZH8Wr/1Xaa8mhYeHK3SlIVFLm4iZoa
|
||||
HPThloS/94H6qlGmJWedOhxUY6tVdpatmwJRimSfPAIAAP//AwA1i3GWXgMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjR8PE52R2ejqH80hqSNY1r7XyVXB\",\n \"object\": \"chat.completion\",\n \"created\": 1764945101,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -345,16 +288,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -394,22 +328,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLLbtswELzrK7Y8W4XsyHKkW1GgyONSFOilbSBsyJVMlyIJknJqBP73
|
||||
glJsKS8gFwHa2RnO7O5jAsCkYBUwvsXAO6vSr7sfJa537mL181D+ui0Pe7dR4UY034urG7aIDHO/
|
||||
Ix5OrM/cdFZRkEaPMHeEgaLqclPkZb5ebvIB6IwgFWmtDWlu0k5qma6yVZ5mm3R5+cTeGsnJswp+
|
||||
JwAAj8M3+tSC/rEKssWp0pH32BKrzk0AzBkVKwy9lz6gDmwxgdzoQHqwfg3aPABHDa3cEyC00Tag
|
||||
9g/kAP7ob1Kjgi/DfwVXpJT5NNdy1PQeYx7dKzUDUGsTMM5jSHH3hBzPvpVprTP3/gWVNVJLv60d
|
||||
oTc6evTBWDagxwTgbphP/ywys850NtTB/KXhueX6YtRj01pm6AkMJqCa1Yti8YZeLSigVH42YcaR
|
||||
b0lM1Gkd2AtpZkAyS/3azVvaY3Kp24/ITwDnZAOJ2joSkj9PPLU5ilf7Xtt5yoNh5sntJac6SHJx
|
||||
E4Ia7NV4S8wffKCubqRuyVknx4NqbL3OyqxoVoicJcfkPwAAAP//AwBWDwIrXgMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjR9a5jr32Uy9ZK9yvr7ltJdfP6HJ\",\n \"object\": \"chat.completion\",\n \"created\": 1764945174,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -460,16 +384,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -509,22 +424,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLLbtwwDLz7K1id14Xt7iPrW1IgfVxS9FIEbWAwMu1VIouCJCddBPvv
|
||||
hezs2mlSoBcD5nBGMySfEgChalGCkDsMsrM6/Xj3/bL4ll8X/TXvLz6xzn9cbTdX5n5vv27EIjL4
|
||||
9o5kOLLeS+6spqDYjLB0hIGiar5ZL7fL1SovBqDjmnSktTakS047ZVRaZMUyzTZpfvbM3rGS5EUJ
|
||||
PxMAgKfhG32amn6LErLFsdKR99iSKE9NAMKxjhWB3isf0ASxmEDJJpAZrH8Bw48g0UCrHggQ2mgb
|
||||
0PhHcgC/zKUyqOF8+C/hM2nN7+ZajpreY8xjeq1nABrDAeM8hhQ3z8jh5Ftzax3f+r+oolFG+V3l
|
||||
CD2b6NEHtmJADwnAzTCf/kVkYR13NlSB72l4Ll99GPXEtJYZegQDB9Sz+nq9eEOvqimg0n42YSFR
|
||||
7qieqNM6sK8Vz4Bklvq1m7e0x+TKtP8jPwFSkg1UV9ZRreTLxFObo3i1/2o7TXkwLDy5ByWpCopc
|
||||
3ERNDfZ6vCXh9z5QVzXKtOSsU+NBNbZaZdts3RSIUiSH5A8AAAD//wMA/n8R0F4DAAA=
|
||||
string: "{\n \"id\": \"chatcmpl-CjRF2P1Y2uYoyBGol1WO97OnkypJ7\",\n \"object\": \"chat.completion\",\n \"created\": 1764945512,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -575,16 +480,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -624,22 +520,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLRatwwEHz3V2z1fC6+q8/J+S2k5FJooLRQSJNg9uS1rVSWhCTHKeH+
|
||||
vcjOnZ00hbwYvLMzmtndpwiAiZLlwHiDnrdGxuf337e79Poat33/rd8155dXVxfmcfv5689fP9gi
|
||||
MPTunrg/sD5y3RpJXmg1wtwSegqqy5Ms3aTrLNkMQKtLkoFWGx+nOm6FEvEqWaVxchIvT5/ZjRac
|
||||
HMvhJgIAeBq+wacq6ZHlkCwOlZacw5pYfmwCYFbLUGHonHAelWeLCeRaeVKD9S+gdA8cFdTigQCh
|
||||
DrYBlevJAtyqC6FQwtnwn8MlSak/zLUsVZ3DkEd1Us4AVEp7DPMYUtw9I/ujb6lrY/XOvaKySijh
|
||||
msISOq2CR+e1YQO6jwDuhvl0LyIzY3VrfOH1bxqeW64/jXpsWssMPYBee5SzepYt3tArSvIopJtN
|
||||
mHHkDZUTdVoHdqXQMyCapf7XzVvaY3Kh6vfITwDnZDyVhbFUCv4y8dRmKVzt/9qOUx4MM0f2QXAq
|
||||
vCAbNlFShZ0cb4m5P85TW1RC1WSNFeNBVaZYJ5skq1aInEX76C8AAAD//wMAyEZnBF4DAAA=
|
||||
string: "{\n \"id\": \"chatcmpl-CjRGb4YYaGwwPwbhCHMMFpxGDLVZS\",\n \"object\": \"chat.completion\",\n \"created\": 1764945609,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -690,16 +576,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -739,22 +616,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLBbtswDL37Kzid48FJXGf1rdhQbAiwYMV26gqDkWlHnSwKkpyuKPLv
|
||||
g5wmdrcO6MWA+fie3iP5lAAIVYsShNxhkJ3V6cf7m6836831p22+dpvFZo/fWf14VOtvKzkXs8jg
|
||||
7T3JcGK9l9xZTUGxOcLSEQaKqvNVkV/mRbZcDkDHNelIa21Ic047ZVS6yBZ5mq3S+Ydn9o6VJC9K
|
||||
uE0AAJ6Gb/RpavotSshmp0pH3mNLojw3AQjHOlYEeq98QBPEbAQlm0BmsP4FDD+ARAOt2hMgtNE2
|
||||
oPEP5AB+mmtlUMPV8F/CZ9Ka3021HDW9x5jH9FpPADSGA8Z5DCnunpHD2bfm1jre+r+oolFG+V3l
|
||||
CD2b6NEHtmJADwnA3TCf/kVkYR13NlSBf9Hw3PxiedQT41om6AkMHFBP6kUxe0Wvqimg0n4yYSFR
|
||||
7qgeqeM6sK8VT4BkkvpfN69pH5Mr075FfgSkJBuorqyjWsmXicc2R/Fq/9d2nvJgWHhyeyWpCopc
|
||||
3ERNDfb6eEvCP/pAXdUo05KzTh0PqrHVRXaZFc0CUYrkkPwBAAD//wMAfO5jzV4DAAA=
|
||||
string: "{\n \"id\": \"chatcmpl-CjRNRKOFDb4KrO2OvaToiUyiKQ7c1\",\n \"object\": \"chat.completion\",\n \"created\": 1764946033,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
|
||||
@@ -260,16 +260,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello to Alice\n\nThis is the expected criteria for your final answer: hello\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello to Alice\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -309,23 +300,13 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLBbhoxEL3vV0x86YWtgBBYuFQoAiVS1UMPPaSNVsaeXZx6PSt7NhQi
|
||||
/r3yQthNm0q9WLLfvPF7b+YlARBGiwUItZWsqtqmt0/rL9nXZfa5CJk+yObw8M2tHg6r2WqNt2IQ
|
||||
GbR5QsWvrI+KqtoiG3InWHmUjLHraDadZPN5lk1boCKNNtLKmtMJpZVxJh0Px5N0OEtH2Zm9JaMw
|
||||
iAV8TwAAXtoz6nQaf4kFDAevLxWGIEsUi0sRgPBk44uQIZjA0rEYdKAix+ha6ffgaAdKOijNM4KE
|
||||
MsoG6cIOPcAPtzZOWli29wXcobU0gKU1Cq/gnj+EM4EJFDmHimFneAt7aq7gjnYgPcYLaDKuBCYt
|
||||
95/6WjwWTZAxD9dY2wOkc8Qy5tmm8HhGjhfflsra0yb8QRWFcSZsc48ykIseA1MtWvSYADy2+TZv
|
||||
IhO1p6rmnOkntt+Nbm5O/UQ31g4dZ2eQiaXtsbLrwTv9co0sjQ29CQkl1RZ1R+3GKRttqAckPdd/
|
||||
q3mv98m5ceX/tO8ApbBm1HntURv11nFX5jFu/b/KLim3gkVA/2wU5mzQx0loLGRjT7sowj4wVnlh
|
||||
XIm+9ua0kEWdj0bF9XA8L6YbkRyT3wAAAP//AwBKInHbngMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjFN8RA8Lfs8dzauzZVnEZzE7EFeC\",\n \"object\": \"chat.completion\",\n \"created\": 1764899886,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello, Alice! It's great to connect with you! How are you doing today?\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 155,\n \"completion_tokens\": 28,\n \"total_tokens\": 183,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \
|
||||
\ \"system_fingerprint\": \"fp_11f3029f6b\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -376,16 +357,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello to Bob\n\nThis is the expected criteria for your final answer: hello\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello to Bob\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -427,23 +399,13 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLBbtswDL37K1hddomHJEhqJ5eh29C1wDDstEtXGIrEOEpkUZDoZkGR
|
||||
fx/kpLG7dcAuAqTHR733yOcMQBgtliDURrJqvM0/bW+/LX407ff9l91hXnzdlmF30J/rYutvWjFK
|
||||
DFptUfEL672ixltkQ+4Eq4CSMXWdFNezcrEoy6IDGtJoE632nM8ob4wz+XQ8neXjIp+UZ/aGjMIo
|
||||
lvCQAQA8d2fS6TT+EksYj15eGoxR1iiWlyIAEcimFyFjNJGlYzHqQUWO0XXS78HRHpR0UJsnBAl1
|
||||
kg3SxT0GgJ/u1jhp4aa7L+EOraURfKTVFdzzu3guZwJFzqFi2BvewIHaK7ijPciA6QJMWh4+DDUE
|
||||
XLdRphxca+0AkM4Ry5Rj5/7xjBwvfi3VPtAq/kEVa+NM3FQBZSSXvEUmLzr0mAE8drm2r6ISPlDj
|
||||
uWLaYffdZD4/9RP9OHt0WpxBJpZ2wCqnozf6VRpZGhsHkxFKqg3qntqPUbba0ADIBq7/VvNW75Nz
|
||||
4+r/ad8DSqFn1JUPqI167bgvC5i2/V9ll5Q7wSJieDIKKzYY0iQ0rmVrTzso4iEyNtXauBqDD+a0
|
||||
iGtfreaz4no80SstsmP2GwAA//8DAELnSGaWAwAA
|
||||
string: "{\n \"id\": \"chatcmpl-CjFN9VmuPwGky57Lj8rkydDg7jpAu\",\n \"object\": \"chat.completion\",\n \"created\": 1764899887,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello, Bob! It's great to connect with you! How are you today?\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 155,\n \"completion_tokens\": 27,\n \"total_tokens\": 182,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\"\
|
||||
: \"fp_b547601dbd\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -701,16 +663,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello to Alice\n\nThis is the expected criteria for your final answer: hello\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello to Alice\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -750,23 +703,13 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFPLbtswELzrKza85GIFluM4tm9BgTQ+pGhRoGjQBgJNriQmFJcgKbtG
|
||||
4H8PKNmW3AfQCyFydoazs9RbAsCUZEtgouJB1FanH16+PK2+fZX26fXT98fPHh/uZ/jxMVtUM1Wy
|
||||
UWTQ+gVFOLKuBNVWY1BkOlg45AGjanY7my6mk/ls0gI1SdSRVtqQTimtlVHpZDyZpuPbNJsf2BUp
|
||||
gZ4t4UcCAPDWrtGnkfiLLWE8Op7U6D0vkS1PRQDMkY4njHuvfOAmsFEPCjIBTWt9BYa2ILiBUm0Q
|
||||
OJTRNnDjt+gAfpp7ZbiGu3a/hAfUmkZwp5XAC1iFSw9bMhJd0WgIBIKMQRFgq0IFO2quYAUVWYzf
|
||||
lw6h4htlytM1ku8uhsYcFo3nMRzTaD0AuDEUeAy3jeT5gOxPIWgqraO1/43KCmWUr3KH3JOJDftA
|
||||
lrXoPgF4bsNuzvJj1lFtQx7oFdvrspubTo/1M+7R68MkWKDA9YA1P7LO9HKJgSvtB+NigosKZU/t
|
||||
Z8sbqWgAJIOu/3TzN+2uc2XK/5HvASHQBpS5dSiVOO+4L3MYf4F/lZ1Sbg0zj26jBOZBoYuTkFjw
|
||||
RncPk/mdD1jnhTIlOutU9zoLm2dZcT2eLIrZmiX75B0AAP//AwCtC8M/qwMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjQYIVSdpYkNXMPseHF6eGM19h6ig\",\n \"object\": \"chat.completion\",\n \"created\": 1764942862,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello, Alice! It's wonderful to connect with you. I hope you're having a great day!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 155,\n \"completion_tokens\": 30,\n \"total_tokens\": 185,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"\
|
||||
default\",\n \"system_fingerprint\": \"fp_11f3029f6b\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -817,16 +760,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello to Bob\n\nThis is the expected criteria for your final answer: hello\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello to Bob\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -868,22 +802,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLLbtswELzrK7Y8W4XsyI/qlhYNEt+KogmCNhAociUzpbgESeWBwP9e
|
||||
UHIsuUmBXgRoZ2c4s7svCQBTkhXAxI4H0Vqdfrn/drvNF89PXy/Orm4us+vr8+2PUG83392NYrPI
|
||||
oOoeRXhlfRTUWo1BkRlg4ZAHjKrz9Sr/lC82q7MeaEmijrTGhjSntFVGpYtskafZOp1vDuwdKYGe
|
||||
FfAzAQB46b/Rp5H4xArIZq+VFr3nDbLi2ATAHOlYYdx75QM3gc1GUJAJaHrrV2DoEQQ30KgHBA5N
|
||||
tA3c+Ed0AL/MhTJcw3n/X8Alak0z+EzVh6mgw7rzPIYyndYTgBtDgceh9FHuDsj+aF5TYx1V/i8q
|
||||
q5VRflc65J5MNOoDWdaj+wTgrh9Sd5KbWUetDWWg39g/N18uBz027maKHsBAgetJfX0Y7aleKTFw
|
||||
pf1kzExwsUM5Used8E4qmgDJJPVbN+9pD8mVaf5HfgSEQBtQltahVOI08djmMJ7uv9qOU+4NM4/u
|
||||
QQksg0IXNyGx5p0eDor5Zx+wLWtlGnTWqeGqaltWy3y9yuaykizZJ38AAAD//wMAe0Az02MDAAA=
|
||||
string: "{\n \"id\": \"chatcmpl-CjQYJ42yxEF3IWH0VVAJUtfJ8SrWi\",\n \"object\": \"chat.completion\",\n \"created\": 1764942863,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello, Bob!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 155,\n \"completion_tokens\": 15,\n \"total_tokens\": 170,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_b547601dbd\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -932,16 +856,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello to Alice\n\nThis is the expected criteria for your final answer: hello\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello to Alice\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -981,22 +896,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFJNa9wwEL37V0x1Xhc73Y/Yt21haRrooZRCaYNR5LF3UlkjJHnTEPa/
|
||||
F9mbtbcf0IvB8+Y9vTczzwmAoFqUINReBtVZnb57+HT9kenDrsDbw9tefX1z+6RuMN9t2y+fxSIy
|
||||
+P4BVXhhvVbcWY2B2IywcigDRtV8s14Wy1VWFAPQcY060lob0iWnHRlKr7KrZZpt0vz6xN4zKfSi
|
||||
hG8JAMDz8I0+TY0/RQnZ4qXSofeyRVGemwCEYx0rQnpPPkgTxGICFZuAZrB+A4YfQUkDLR0QJLTR
|
||||
NkjjH9EBfDc7MlLDdvgv4T1qzQvYalL4ai7psOm9jLFMr/UMkMZwkHEsQ5i7E3I829fcWsf3/jeq
|
||||
aMiQ31cOpWcTrfrAVgzoMQG4G8bUXyQX1nFnQxX4Bw7P5avVqCem7czRExg4SD2rb07DvdSragyS
|
||||
tJ8NWiip9lhP1Gkrsq+JZ0AyS/2nm79pj8nJtP8jPwFKoQ1YV9ZhTeoy8dTmMB7vv9rOUx4MC4/u
|
||||
QAqrQOjiJmpsZK/HkxL+yQfsqoZMi846Gu+qsZWU2UYV63y1Fskx+QUAAP//AwB5lp5MZQMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjR8NoiJF9eKvBucY3KycIe1FAgVT\",\n \"object\": \"chat.completion\",\n \"created\": 1764945099,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello, Alice!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 155,\n \"completion_tokens\": 15,\n \"total_tokens\": 170,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_aa07c96156\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -1047,16 +952,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello to Bob\n\nThis is the expected criteria for your final answer: hello\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello to Bob\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -1098,22 +994,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFJdj9MwEHzPr1j83KDklF5L3gCJb6kSgnuBU+Tam8SH4zW2cwec+t+R
|
||||
nV6THiDxEik7O+OZ3b3PAJiSrAYmeh7EYHX+8ubjdvf903ZXUvv5arcTV7z/VZTl+9cf3im2igza
|
||||
36AID6ynggarMSgyEywc8oBRtdxcVs+qdVkUCRhIoo60zoa8onxQRuUXxUWVF5u83B7ZPSmBntXw
|
||||
JQMAuE/f6NNI/MFqSFqpMqD3vENWn5oAmCMdK4x7r3zgJrDVDAoyAU2y/hYM3YHgBjp1i8Chi7aB
|
||||
G3+HDuCreaUM1/A8/dfwBrWmFbyg/ZOloMN29DyGMqPWC4AbQ4HHoaQo10fkcDKvqbOO9v4RlbXK
|
||||
KN83DrknE436QJYl9JABXKchjWe5mXU02NAE+obpuXK9nvTYvJslegQDBa4X9c1xtOd6jcTAlfaL
|
||||
MTPBRY9yps474aNUtACyReo/3fxNe0quTPc/8jMgBNqAsrEOpRLniec2h/F0/9V2mnIyzDy6WyWw
|
||||
CQpd3ITElo96Oijmf/qAQ9Mq06GzTk1X1dpmv642l0Up95Jlh+w3AAAA//8DAHa7+bhjAwAA
|
||||
string: "{\n \"id\": \"chatcmpl-CjR8OqT8O1ofUVOOcVahz011KGLJi\",\n \"object\": \"chat.completion\",\n \"created\": 1764945100,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello, Bob!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 155,\n \"completion_tokens\": 15,\n \"total_tokens\": 170,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_b547601dbd\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -1162,16 +1048,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello to Alice\n\nThis is the expected criteria for your final answer: hello\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello to Alice\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -1211,22 +1088,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLLbtswELzrK7Y8W4XkWnatm1OgaJH2kkN7aAKBIlcyHWpJkFScIvC/
|
||||
F5QcS+4D6EWAdnaGM7v7kgAwJVkJTOx5EJ3V6YfD3ba+uSM6frvps+fvt4fbr64u+G79+OU9W0SG
|
||||
qQ8owivrrTCd1RiUoREWDnnAqJpv1qvtqsg3xQB0RqKOtNaGdGXSTpFKl9lylWabND+Li71RAj0r
|
||||
4UcCAPAyfKNPkvjMSsgWr5UOvectsvLSBMCc0bHCuPfKB06BLSZQGApIg/XPQOYIghO06gmBQxtt
|
||||
Ayd/RAdwTx8VcQ274b+ET6i1WcBOK4Fv5pIOm97zGIt6rWcAJzKBx7EMYR7OyOliX5vWOlP736is
|
||||
UaT8vnLIvaFo1Qdj2YCeEoCHYUz9VXJmnelsqIJ5xOG5vChGPTZtZ46ewWAC17P65jzca71KYuBK
|
||||
+9mgmeBij3KiTlvhvVRmBiSz1H+6+Zv2mFxR+z/yEyAE2oCysg6lEteJpzaH8Xj/1XaZ8mCYeXRP
|
||||
SmAVFLq4CYkN7/V4Usz/9AG7qlHUorNOjXfV2CrPm3fZctusa5ackl8AAAD//wMAIslkp2UDAAA=
|
||||
string: "{\n \"id\": \"chatcmpl-CjR9bBRnnwVBu0xWKjKMrb5aA6kL8\",\n \"object\": \"chat.completion\",\n \"created\": 1764945175,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello, Alice!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 155,\n \"completion_tokens\": 15,\n \"total_tokens\": 170,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_11f3029f6b\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -1277,16 +1144,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello to Bob\n\nThis is the expected criteria for your final answer: hello\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello to Bob\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -1328,22 +1186,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLBbtswDL37Kzid48EOnHj1rRkwdIcWW1FgwLbCUCTaUSuLgiSn24r8
|
||||
+yA7jZ1tBXYxYD6+p/dIPicATElWARM7HkRndfr+4fZC7D9dPf663uzvlpvN7efsmt/d3Hz9Ehq2
|
||||
iAzaPqAIL6y3gjqrMSgyIywc8oBRNS/XxUWxysv1AHQkUUdaa0NaUNopo9JltizSrEzzd0f2jpRA
|
||||
zyr4lgAAPA/f6NNI/MEqyBYvlQ695y2y6tQEwBzpWGHce+UDN4EtJlCQCWgG6x/B0BMIbqBVewQO
|
||||
bbQN3PgndADfzQdluIbL4b+CK9SaFrCh7Zu5oMOm9zyGMr3WM4AbQ4HHoQxR7o/I4WReU2sdbf0f
|
||||
VNYoo/yudsg9mWjUB7JsQA8JwP0wpP4sN7OOOhvqQI84PJevVqMem3YzR49goMD1rF4eR3uuV0sM
|
||||
XGk/GzMTXOxQTtRpJ7yXimZAMkv9t5t/aY/JlWn/R34ChEAbUNbWoVTiPPHU5jCe7mttpykPhplH
|
||||
t1cC66DQxU1IbHivx4Ni/qcP2NWNMi0669R4VY2tt6uiXGe53EqWHJLfAAAA//8DABhT+jJjAwAA
|
||||
string: "{\n \"id\": \"chatcmpl-CjR9cvPHkzMBvT2BBRQ0MaTNNZWtf\",\n \"object\": \"chat.completion\",\n \"created\": 1764945176,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello, Bob!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 155,\n \"completion_tokens\": 15,\n \"total_tokens\": 170,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_b547601dbd\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -1392,16 +1240,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello to Alice\n\nThis is the expected criteria for your final answer: hello\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello to Alice\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -1441,23 +1280,13 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLLbtswELzrKza89GIVsmPHiS9FUNRwgBZ9Ai3QBgJNrmSmFFclV1Gc
|
||||
wP9eUHYspU2BXgiQs7Ocmd2HBEAYLRYg1Eayqmqbvr759Ob+9GN7p999LZarb9P2S/Z5pd8uP9z/
|
||||
ei9GkUHrG1T8yHqpqKotsiG3h5VHyRi7judn04vpbJZddEBFGm2klTWnU0or40w6ySbTNJun4/MD
|
||||
e0NGYRAL+J4AADx0Z9TpNN6JBWSjx5cKQ5AlisWxCEB4svFFyBBMYOlYjHpQkWN0nfQrcNSCkg5K
|
||||
c4sgoYyyQbrQogf44ZbGSQuX3X0BK7SWRnBpjcITuOIX4UBgAkXOoWJoDW9gS80JrKgF6TFegEnL
|
||||
7auhCo9FE2RMwjXWDgDpHLGMSXb+rw/I7ujYUll7Woc/qKIwzoRN7lEGctFdYKpFh+4SgOsu2eZJ
|
||||
WKL2VNWcM/3E7rvxbLbvJ/qB9uhkfgCZWNoB63wyeqZfrpGlsWEwG6Gk2qDuqf0gZaMNDYBk4Ppv
|
||||
Nc/13js3rvyf9j2gFNaMOq89aqOeOu7LPMZ9/1fZMeVOsAjob43CnA36OAmNhWzsfgtF2AbGKi+M
|
||||
K9HX3uxXsajz8bg4zSYXxdlaJLvkNwAAAP//AwCgwjLgmAMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjREz3QwxdMWfFHX4wT0SHdLFPzqO\",\n \"object\": \"chat.completion\",\n \"created\": 1764945509,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello, Alice! It's great to connect with you! How are you today?\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 155,\n \"completion_tokens\": 27,\n \"total_tokens\": 182,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\"\
|
||||
: \"fp_11f3029f6b\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -1508,16 +1337,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello to Bob\n\nThis is the expected criteria for your final answer: hello\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello to Bob\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -1559,22 +1379,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFJdb5wwEHznV2z9fFRHBEfKWxopatpIVavrUxohYy+cr8Zr2SZpFN1/
|
||||
rwyXg+uH1BckdnbGM7v7kgAwJVkFTOx4EL3V6fX+6022/XL3eVtm3m8+3jX+6vL607fnsN/eslVk
|
||||
ULNHEV5ZbwX1VmNQZCZYOOQBo2pWbvJ3eVFk2Qj0JFFHWmdDmlPaK6PSi/VFnq7LNLs8snekBHpW
|
||||
wX0CAPAyfqNPI/Enq2C9eq306D3vkFWnJgDmSMcK494rH7gJbDWDgkxAM1q/BUNPILiBTj0icOii
|
||||
beDGP6ED+G5ulOEarsb/Cj6g1rSC99S8WQo6bAfPYygzaL0AuDEUeBzKGOXhiBxO5jV11lHjf6Oy
|
||||
Vhnld7VD7slEoz6QZSN6SAAexiENZ7mZddTbUAf6geNzWVFMemzezRI9goEC14t6eRztuV4tMXCl
|
||||
/WLMTHCxQzlT553wQSpaAMki9Z9u/qY9JVem+x/5GRACbUBZW4dSifPEc5vDeLr/ajtNeTTMPLpH
|
||||
JbAOCl3chMSWD3o6KOaffcC+bpXp0Fmnpqtqbd0UeblZZ7KRLDkkvwAAAP//AwCtz6wfYwMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjRF1TQLOT71ss6JLbsA8CKUytjTI\",\n \"object\": \"chat.completion\",\n \"created\": 1764945511,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello, Bob!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 155,\n \"completion_tokens\": 15,\n \"total_tokens\": 170,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_b547601dbd\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -1883,16 +1693,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello to Alice\n\nThis is the expected criteria for your final answer: hello\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello to Alice\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -1932,23 +1733,13 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFPLbtswELzrKza85GIFlmM7iW9pgLRGeipQoEEbCDS1kphSXJZc2TUC
|
||||
/3tB+SG5D6AXgeLsDGdnybcEQOhCLECoWrJqnEkfXj+9x49K2Ye6ef7B8unLrHp6fpzVk8/vtBhF
|
||||
Bq1eUfGRdaWocQZZk93DyqNkjKrZzXx6N53Ns0kHNFSgibTKcTqltNFWp5PxZJqOb9Ls9sCuSSsM
|
||||
YgFfEwCAt+4bfdoCf4oFjEfHnQZDkBWKxakIQHgycUfIEHRgaVmMelCRZbSd9SVY2oCSFiq9RpBQ
|
||||
RdsgbdigB/hmH7WVBu67/wV8QGNoBPdGK7yAJV8G2JAt0JetASZQZC0qho3mGrbUXsESanIY15ce
|
||||
oZZrbSuQUErLMrBWUMjtxdCcx7INMgZkW2MGgLSWWMaAu1heDsjuFIShynlahd+ootRWhzr3KAPZ
|
||||
2HRgcqJDdwnASxd4e5ahcJ4axznTd+yOy2azvZ7o59yj14dpCCaWZsC6PbLO9PICWWoTBiMTSqoa
|
||||
i57az1e2haYBkAy6/tPN37T3nWtb/Y98DyiFjrHIncdCq/OO+zKP8Rn8q+yUcmdYBPRrrTBnjT5O
|
||||
osBStmZ/OUXYBsYmL7Wt0Duv9ze0dHmWldfjyV05X4lkl/wCAAD//wMAt79l5K8DAAA=
|
||||
string: "{\n \"id\": \"chatcmpl-CjRGeLccnChmYqtaKX5gKYF5h2UBi\",\n \"object\": \"chat.completion\",\n \"created\": 1764945612,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello, Alice! It's wonderful to connect with you. I hope you're having a fantastic day!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 155,\n \"completion_tokens\": 30,\n \"total_tokens\": 185,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\"\
|
||||
: \"default\",\n \"system_fingerprint\": \"fp_11f3029f6b\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -1999,16 +1790,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello to Bob\n\nThis is the expected criteria for your final answer: hello\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello to Bob\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -2050,22 +1832,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLLbtswELzrK7Y8W4WUynajW2MgdS89BO2pDQSKXElMKS5LUnGCwP9e
|
||||
UHIsuQ+gFwHa2RnO7O5LAsCUZCUw0fEgeqvT3cPdxyY0z/u9Rvz5dNjcuO72+vPu7uvuS8ZWkUH1
|
||||
A4rwynorqLcagyIzwcIhDxhV8+2muC7Wm/zdCPQkUUdaa0NaUNoro9Kr7KpIs22avz+xO1ICPSvh
|
||||
WwIA8DJ+o08j8YmVkK1eKz16z1tk5bkJgDnSscK498oHbgJbzaAgE9CM1j+BoQMIbqBVjwgc2mgb
|
||||
uPEHdADfza0yXMOH8b+EPWpNK7ih+s1S0GEzeB5DmUHrBcCNocDjUMYo9yfkeDavqbWOav8blTXK
|
||||
KN9VDrknE436QJaN6DEBuB+HNFzkZtZRb0MV6AeOz+Xr9aTH5t0s0RMYKHC9qG9Po73UqyQGrrRf
|
||||
jJkJLjqUM3XeCR+kogWQLFL/6eZv2lNyZdr/kZ8BIdAGlJV1KJW4TDy3OYyn+6+285RHw8yje1QC
|
||||
q6DQxU1IbPigp4Ni/tkH7KtGmRaddWq6qsZW9brYbrJc1pIlx+QXAAAA//8DALMjG/FjAwAA
|
||||
string: "{\n \"id\": \"chatcmpl-CjRGftfyHHleeqxw6BrhF9NCRUCT0\",\n \"object\": \"chat.completion\",\n \"created\": 1764945613,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello, Bob!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 155,\n \"completion_tokens\": 15,\n \"total_tokens\": 170,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_b547601dbd\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -2114,16 +1886,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello to Alice\n\nThis is the expected criteria for your final answer: hello\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello to Alice\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -2163,23 +1926,13 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLLbtswELz7Kza89GIVfsV2fCmCooGNAkWbQy9tINDkSqJNcQVyZdcI
|
||||
/AP9gt76i/2EgrJjKW0K9EKAnJ3lzOw+9gCE0WIBQhWSVVnZ5O3m/sP96PMOi+3y3d37uV7VH7eb
|
||||
MFtPdvNPoh8ZtN6g4ifWa0VlZZENuROsPErG2HU4m05uJtPBeNwAJWm0kZZXnEwoKY0zyWgwmiSD
|
||||
WTKcn9kFGYVBLOBLDwDgsTmjTqfxm1jAoP/0UmIIMkexuBQBCE82vggZggksHYt+CypyjK6RvgJH
|
||||
e1DSQW52CBLyKBukC3v0AF/dnXHSwm1zX8ASraU+3Fqj8Ap+/fzxHVb8KsCenEaf1RaYQJFzqBj2
|
||||
hgs4UH0FS9qD9BgvwKTl4U1XjsesDjJG4mprO4B0jljGSJsgHs7I8WLdUl55Woc/qCIzzoQi9SgD
|
||||
uWgzMFWiQY89gIcm4vpZaqLyVFacMm2x+W54fX3qJ9rJtuhofgaZWNoOaz7uv9Av1cjS2NAZklBS
|
||||
FahbajtRWWtDHaDXcf23mpd6n5wbl/9P+xZQCitGnVYetVHPHbdlHuPi/6vsknIjWAT0O6MwZYM+
|
||||
TkJjJmt7WkcRDoGxTDPjcvSVN6edzKp0OMzGg9FNNl2L3rH3GwAA//8DAPU5K06hAwAA
|
||||
string: "{\n \"id\": \"chatcmpl-CjRNR2VvehkHEFK8dIuPkjs7b4v8Q\",\n \"object\": \"chat.completion\",\n \"created\": 1764946033,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello, Alice! \U0001F60A It's wonderful to connect with you! How are you today?\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 155,\n \"completion_tokens\": 28,\n \"total_tokens\": 183,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\"\
|
||||
,\n \"system_fingerprint\": \"fp_11f3029f6b\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -2230,16 +1983,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello to Bob\n\nThis is the expected criteria for your final answer: hello\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello to Bob\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -2281,23 +2025,13 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLLbtswELzrKza89GIVlio/4kvRFiiSS4A+kARoA4EiVzIdikuQVFw3
|
||||
8L8XlB1LSVOgFwLk7CxnZvcxAWBKshUwseZBtFannzZfr77l3eJLXSyr5oZfi983V7eb+/r77jZj
|
||||
k8igaoMiPLHeCmqtxqDIHGDhkAeMXbPFvDgv5tN3RQ+0JFFHWmNDWlDaKqPSfJoX6XSRZssje01K
|
||||
oGcr+JEAADz2Z9RpJP5iK5hOnl5a9J43yFanIgDmSMcXxr1XPnAT2GQABZmAppd+CYa2ILiBRj0g
|
||||
cGiibODGb9EB/DSfleEaPvT3FVyg1jSBj1SdwWV444/lgcAjwo66M7igLXDXX0CSMg0Eknz3fizA
|
||||
Yd15HkMwndYjgBtDgccQe+t3R2R/MqupsY4q/4LKamWUX5cOuScTjflAlvXoPgG460PtnuXErKPW
|
||||
hjLQPfbfZbPZoR8bZjmg+eIIBgpcj1jLfPJKv1Ji4Er70ViY4GKNcqAOM+SdVDQCkpHrv9W81vvg
|
||||
XJnmf9oPgBBoA8rSOpRKPHc8lDmMq/6vslPKvWDm0T0ogWVQ6OIkJNa804cFZH7nA7ZlrUyDzjp1
|
||||
2MLaltWsWMynmawkS/bJHwAAAP//AwAn98MckwMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjRNS2u7Qf48bgWaVczWNXjkfTyX1\",\n \"object\": \"chat.completion\",\n \"created\": 1764946034,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello, Bob! It's great to see you! How are you doing today?\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 155,\n \"completion_tokens\": 27,\n \"total_tokens\": 182,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\"\
|
||||
: \"fp_b547601dbd\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
|
||||
@@ -1,15 +1,6 @@
|
||||
interactions:
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -49,22 +40,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLBjtMwEL3nKwafG5R2226aGyCtKEIgbghYRbPOJPHW8Vi20wWt+u/I
|
||||
ybbJwiJxiZR5857fm5nHBECoShQgZItBdlan7+5vPq2p3nD+pT18vvr49usxOzT7bx/2h7wTi8jg
|
||||
u3uS4cx6LbmzmoJiM8LSEQaKqsvr7Trf7fJ8NQAdV6QjrbEhXXPaKaPSVbZap9l1usyf2C0rSV4U
|
||||
8D0BAHgcvtGnqeinKCBbnCsdeY8NieLSBCAc61gR6L3yAU0QiwmUbAKZwfoeDD+ARAONOhIgNNE2
|
||||
oPEP5AB+mBtlUMOb4b+A96Q1v5prOap7jzGP6bWeAWgMB4zzGFLcPiGni2/NjXV85/+giloZ5dvS
|
||||
EXo20aMPbMWAnhKA22E+/bPIwjrubCgDH2h4brm5GvXEtJYZegYDB9Sz+na7eEGvrCig0n42YSFR
|
||||
tlRN1Gkd2FeKZ0AyS/23m5e0x+TKNP8jPwFSkg1UldZRpeTzxFObo3i1/2q7THkwLDy5o5JUBkUu
|
||||
bqKiGns93pLwv3ygrqyVachZp8aDqm25yXbZtl4hSpGckt8AAAD//wMAIxrdql4DAAA=
|
||||
string: "{\n \"id\": \"chatcmpl-CjFN4ef5o8QhkO3LBXv0kgIZJIk8m\",\n \"object\": \"chat.completion\",\n \"created\": 1764899882,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -115,16 +96,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -164,22 +136,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFJNb9swDL37V3A6x4OTxmnqWztsWLFTb/sqDFaibbWyKEhKs6HIfx9k
|
||||
N7G7dUAvBszH9/QeyacMQGglKhCywyh7Z/IP9zffPu5vQvzSLL+2Z5ft1b7srsvvSvPDViwSg+/u
|
||||
ScYj673k3hmKmu0IS08YKakuzzfri/VqW24HoGdFJtFaF/M15722Ol8Vq3VenOfLZ3HZsZYURAU/
|
||||
MgCAp+GbfFpFv0QFxeJY6SkEbElUpyYA4dmkisAQdIhoo1hMoGQbyQ7Wr8HyHiRaaPUjAUKbbAPa
|
||||
sCcP8NN+0hYNXA7/FXwmY/jdXMtTswuY8tidMTMAreWIaR5Dittn5HDybbh1nu/CX1TRaKtDV3vC
|
||||
wDZ5DJGdGNBDBnA7zGf3IrJwnnsX68gPNDy3LM9GPTGtZYYewcgRzay+2Sxe0asVRdQmzCYsJMqO
|
||||
1ESd1oE7pXkGZLPU/7p5TXtMrm37FvkJkJJcJFU7T0rLl4mnNk/pav/XdpryYFgE8o9aUh01+bQJ
|
||||
RQ3uzHhLIvwOkfq60bYl77weD6pxdVlcFJtmhShFdsj+AAAA//8DAIyMn2NeAwAA
|
||||
string: "{\n \"id\": \"chatcmpl-CjQYEwQstKf1Xg3AgBw5hI5Zdiok8\",\n \"object\": \"chat.completion\",\n \"created\": 1764942858,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -230,16 +192,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -279,22 +232,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFJha9swEP3uX3HT53g4aeIm/jYKY2Mbg8FgsBZzlc+OWvmkSXKzUfLf
|
||||
h+QmdrcO9sXge/ee3ru7xwxAqEZUIOQeg+ytzq/uvmw//Oiutp+25ecOP158Hfieg/IHrb+JRWSY
|
||||
2zuS4cR6LU1vNQVleISlIwwUVZeX5Xq33hS7MgG9aUhHWmdDvjZ5r1jlq2K1zovLfLl9Yu+NkuRF
|
||||
Bd8zAIDH9I0+uaGfooJicar05D12JKpzE4BwRseKQO+VD8hBLCZQGg7Eyfp7YHMAiQydeiBA6KJt
|
||||
QPYHcgDX/FYxaniT/it4R1qbV3MtR+3gMebhQesZgMwmYJxHSnHzhBzPvrXprDO3/g+qaBUrv68d
|
||||
oTccPfpgrEjoMQO4SfMZnkUW1pnehjqYe0rPLTcXo56Y1jJDT2AwAfWsXpaLF/TqhgIq7WcTFhLl
|
||||
npqJOq0Dh0aZGZDNUv/t5iXtMbni7n/kJ0BKsoGa2jpqlHyeeGpzFK/2X23nKSfDwpN7UJLqoMjF
|
||||
TTTU4qDHWxL+lw/U163ijpx1ajyo1tabYleU7QpRiuyY/QYAAP//AwBh1EKtXgMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjR8KqgC8M86OgaL3UunkntiswllX\",\n \"object\": \"chat.completion\",\n \"created\": 1764945096,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -345,16 +288,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -394,22 +328,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLBbtswDL37Kzid48FJnXjxrSi2dYf1kOtWGKxMO2plUZPkdFuRfx9k
|
||||
N7G7dUAvBszH9/QeyacEQKhalCDkHoPsrE6v7ndb5I+f5bX98XD1dXdYFb/lzc1FseOaxCIy+O6e
|
||||
ZDix3kvurKag2IywdISBouqy2OTbfL0s8gHouCYdaa0Nac5pp4xKV9kqT7MiXX54Zu9ZSfKihG8J
|
||||
AMDT8I0+TU0/RQnZ4lTpyHtsSZTnJgDhWMeKQO+VD2iCWEygZBPIDNa/gOFHkGigVQcChDbaBjT+
|
||||
kRzAd/NJGdRwOfyXcE1a87u5lqOm9xjzmF7rGYDGcMA4jyHF7TNyPPvW3FrHd/4vqmiUUX5fOULP
|
||||
Jnr0ga0Y0GMCcDvMp38RWVjHnQ1V4AcanluuL0Y9Ma1lhp7AwAH1rL7ZLF7Rq2oKqLSfTVhIlHuq
|
||||
J+q0DuxrxTMgmaX+181r2mNyZdq3yE+AlGQD1ZV1VCv5MvHU5ihe7f/azlMeDAtP7qAkVUGRi5uo
|
||||
qcFej7ck/C8fqKsaZVpy1qnxoBpbrbNttmlWiFIkx+QPAAAA//8DANexYZReAwAA
|
||||
string: "{\n \"id\": \"chatcmpl-CjR9aoEGcHpqkCMRv27zcNN37Rode\",\n \"object\": \"chat.completion\",\n \"created\": 1764945174,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -460,16 +384,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -509,22 +424,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLLbtwwDLz7K1id14X35U18KwIEKXJokR76DAxGpr1KZEmQaKdFsP9e
|
||||
yM6unTYFejFgDmc0Q/IpARCqEgUIuUeWrdPpxf3N5ZqvWp/vVtfXH26+fmP9uf/Sf/rYn2ViERn2
|
||||
7p4kH1lvpW2dJlbWjLD0hExRdbnLN+eb7Xa5HoDWVqQjrXGcbmzaKqPSVbbapNkuXZ49s/dWSQqi
|
||||
gO8JAMDT8I0+TUU/RQHZ4lhpKQRsSBSnJgDhrY4VgSGowGhYLCZQWsNkBuvvwdhHkGigUT0BQhNt
|
||||
A5rwSB7gh7lUBjW8G/4LuCKt7Zu5lqe6CxjzmE7rGYDGWMY4jyHF7TNyOPnWtnHe3oU/qKJWRoV9
|
||||
6QmDNdFjYOvEgB4SgNthPt2LyMJ52zou2T7Q8Nxyux71xLSWGXoE2TLqWT3PF6/olRUxKh1mExYS
|
||||
5Z6qiTqtA7tK2RmQzFL/7eY17TG5Ms3/yE+AlOSYqtJ5qpR8mXhq8xSv9l9tpykPhkUg3ytJJSvy
|
||||
cRMV1djp8ZZE+BWY2rJWpiHvvBoPqnblNjvP8nqFKEVySH4DAAD//wMAshmIgl4DAAA=
|
||||
string: "{\n \"id\": \"chatcmpl-CjRF3tHmr672KKORYZtlWvXvSPv80\",\n \"object\": \"chat.completion\",\n \"created\": 1764945513,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -575,16 +480,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -624,22 +520,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLBTtwwEL3nK6Y+b6rsshsgN1oVWlpUCYleWhQN9iRrcGyv7SxFaP8d
|
||||
2YFNaKnUS6TMm/f83sw8ZgBMClYB42sMvLMq/3h7ecbt3eXXh4vt94tvH8Tm/Grz43xzwMXJJzaL
|
||||
DHNzSzy8sN5z01lFQRo9wNwRBoqq88NyebxclfMiAZ0RpCKttSFfmryTWuaLYrHMi8N8fvTMXhvJ
|
||||
ybMKfmYAAI/pG31qQb9ZBUkrVTryHlti1b4JgDmjYoWh99IH1IHNRpAbHUgn619Am3vgqKGVWwKE
|
||||
NtoG1P6eHMAvfSo1KjhJ/xV8JqXMu6mWo6b3GPPoXqkJgFqbgHEeKcX1M7Lb+1amtc7c+D+orJFa
|
||||
+nXtCL3R0aMPxrKE7jKA6zSf/lVkZp3pbKiDuaP03Hx1MOixcS0T9AUMJqCa1Mty9oZeLSigVH4y
|
||||
YcaRr0mM1HEd2AtpJkA2Sf23m7e0h+RSt/8jPwKckw0kautISP468djmKF7tv9r2U06GmSe3lZzq
|
||||
IMnFTQhqsFfDLTH/4AN1dSN1S846ORxUY+tVcVyUzQKRs2yXPQEAAP//AwCzl5X3XgMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjRGcpkRKyMvOMLBdqJUqVJq3cdAE\",\n \"object\": \"chat.completion\",\n \"created\": 1764945610,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -690,16 +576,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -739,22 +616,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLBbtswDL37Kzid48HJEmfxrRgwdIflUGwYhq0wWJl2lMqiKsnNtiL/
|
||||
PshuYndrgV4MmI/v6T2SDwmAUJUoQMgdBtlanX7YX223t7z6frjbf9n/6bZ4dclfL7r552/rOzGL
|
||||
DL7Zkwwn1lvJrdUUFJsBlo4wUFSdr/PlZplni00PtFyRjrTGhnTJaauMShfZYplm63T+/pG9YyXJ
|
||||
iwJ+JAAAD/03+jQV/RIFZLNTpSXvsSFRnJsAhGMdKwK9Vz6gCWI2gpJNINNb/wSGDyDRQKPuCRCa
|
||||
aBvQ+AM5gJ/mozKo4aL/L+CStOY3Uy1Hdecx5jGd1hMAjeGAcR59iutH5Hj2rbmxjm/8P1RRK6P8
|
||||
rnSEnk306ANb0aPHBOC6n0/3JLKwjlsbysC31D83X70b9MS4lgl6AgMH1JN6ns+e0SsrCqi0n0xY
|
||||
SJQ7qkbquA7sKsUTIJmk/t/Nc9pDcmWa18iPgJRkA1WldVQp+TTx2OYoXu1Lbecp94aFJ3evJJVB
|
||||
kYubqKjGTg+3JPxvH6gta2Uactap4aBqW66yTZbXC0QpkmPyFwAA//8DAMRVFQZeAwAA
|
||||
string: "{\n \"id\": \"chatcmpl-CjRNNko5YwqjTjzuNaRHoUAu1MW7q\",\n \"object\": \"chat.completion\",\n \"created\": 1764946029,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
|
||||
@@ -1,15 +1,6 @@
|
||||
interactions:
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -49,22 +40,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLBbtswDL37Kzid48FJk9TxbR0WdDvsMGCnrTBYmbbVyqImyem2Iv8+
|
||||
yG5id+2AXQyYj+/pPZKPCYBQlShAyBaD7KxO39/tP28OaHP++sVtP/z+QZ/U1eH+etfKq71YRAbf
|
||||
3pEMJ9ZbyZ3VFBSbEZaOMFBUXV5u1/lul+cXA9BxRTrSGhvSNaedMipdZat1ml2my/yJ3bKS5EUB
|
||||
3xIAgMfhG32ain6KArLFqdKR99iQKM5NAMKxjhWB3isf0ASxmEDJJpAZrH8Eww8g0UCjDgQITbQN
|
||||
aPwDOYDvZq8Mang3/BdwTVrzm7mWo7r3GPOYXusZgMZwwDiPIcXNE3I8+9bcWMe3/i+qqJVRvi0d
|
||||
oWcTPfrAVgzoMQG4GebTP4ssrOPOhjLwPQ3PLTcXo56Y1jJDT2DggHpW324Xr+iVFQVU2s8mLCTK
|
||||
lqqJOq0D+0rxDEhmqV+6eU17TK5M8z/yEyAl2UBVaR1VSj5PPLU5ilf7r7bzlAfDwpM7KEllUOTi
|
||||
JiqqsdfjLQn/ywfqylqZhpx1ajyo2pabbJdt6xWiFMkx+QMAAP//AwBGoldFXgMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjFN5vap8oURr6EzqeJiBvkH9hcBF\",\n \"object\": \"chat.completion\",\n \"created\": 1764899883,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -115,16 +96,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -164,22 +136,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLRbtQwEHzPVyx+vqBcuObae0OVDiohAUIIIaiirbNJXByvsZ2WUt2/
|
||||
V/a1l5S2Ei+RsrMzntnd2wxAqEZsQMgegxyszk8vP39/9/Hb2e+tof5v9+VmHNe2/Nrxh9NPW7GI
|
||||
DL64JBkeWK8lD1ZTUGz2sHSEgaLqcl2tTlblcVUkYOCGdKR1NuQrzgdlVF4W5Sov1vny+J7ds5Lk
|
||||
xQZ+ZAAAt+kbfZqG/ogNJK1UGch77EhsDk0AwrGOFYHeKx/QBLGYQMkmkEnWz8DwNUg00KkrAoQu
|
||||
2gY0/pocwE+zVQY1vE3/G3hPWvOruZajdvQY85hR6xmAxnDAOI+U4vwe2R18a+6s4wv/D1W0yijf
|
||||
147Qs4kefWArErrLAM7TfMZHkYV1PNhQB/5F6bnl0Zu9npjWMkMfwMAB9axeVYtn9OqGAirtZxMW
|
||||
EmVPzUSd1oFjo3gGZLPUT908p71Prkz3P/ITICXZQE1tHTVKPk48tTmKV/tS22HKybDw5K6UpDoo
|
||||
cnETDbU46v0tCX/jAw11q0xHzjq1P6jW1kfFSVG1JaIU2S67AwAA//8DAPL0xgZeAwAA
|
||||
string: "{\n \"id\": \"chatcmpl-CjQYGOWIqFnehzgSyuu7p2UgoLCPF\",\n \"object\": \"chat.completion\",\n \"created\": 1764942860,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -230,16 +192,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -279,22 +232,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLBattAEL3rK6Z7tors2o6tWwi07qEuBAqFNojxaiRNutpddldOQ/C/
|
||||
l5ViS2lTyEWgefPevjczTwmA4FLkIGSDQbZWpTf3t5svze7bYbf/lNVfbx8z993W14qP+70Us8gw
|
||||
h3uS4cx6L01rFQU2eoClIwwUVedX6+V2ucq2mx5oTUkq0mob0qVJW9acLrLFMs2u0vnmmd0YluRF
|
||||
Dj8SAICn/ht96pJ+ixyy2bnSkvdYk8gvTQDCGRUrAr1nH1AHMRtBaXQg3Vv/DNo8gEQNNR8JEOpo
|
||||
G1D7B3IAP/VH1qjguv/PYUdKmXdTLUdV5zHm0Z1SEwC1NgHjPPoUd8/I6eJbmdo6c/B/UUXFmn1T
|
||||
OEJvdPTog7GiR08JwF0/n+5FZGGdaW0ogvlF/XPz1YdBT4xrmaBnMJiAalJfr2ev6BUlBWTlJxMW
|
||||
EmVD5Ugd14FdyWYCJJPU/7p5TXtIzrp+i/wISEk2UFlYRyXLl4nHNkfxav/Xdplyb1h4ckeWVAQm
|
||||
FzdRUoWdGm5J+EcfqC0q1jU563g4qMoWq2ybrasFohTJKfkDAAD//wMAxcMz314DAAA=
|
||||
string: "{\n \"id\": \"chatcmpl-CjR8MhHUbHNG0gORy0rXpgAlivNNc\",\n \"object\": \"chat.completion\",\n \"created\": 1764945098,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -606,16 +549,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -655,22 +589,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFJdb9swDHz3r+D0HA92mjh13vaBYSuGAhv2UGArDFamHaWyKEhyu63I
|
||||
fy9kN7G7dcBeDJjHO92RfEgAhKrFFoTcYZCd1em7/deSLt9enBVZ8fvLVXmbfXv/eX/J+VW5vBCL
|
||||
yOCbPclwZL2W3FlNQbEZYekIA0XVfFOsytU635wPQMc16UhrbUhXnHbKqHSZLVdptknz8yf2jpUk
|
||||
L7bwPQEAeBi+0aep6afYQrY4VjryHlsS21MTgHCsY0Wg98oHNEEsJlCyCWQG65/A8D1INNCqOwKE
|
||||
NtoGNP6eHMAP80EZ1PBm+N/CR9KaX821HDW9x5jH9FrPADSGA8Z5DCmun5DDybfm1jq+8X9QRaOM
|
||||
8rvKEXo20aMPbMWAHhKA62E+/bPIwjrubKgC39LwXL4+G/XEtJYZegQDB9SzelEsXtCragqotJ9N
|
||||
WEiUO6on6rQO7GvFMyCZpf7bzUvaY3Jl2v+RnwApyQaqK+uoVvJ54qnNUbzaf7WdpjwYFp7cnZJU
|
||||
BUUubqKmBns93pLwv3ygrmqUaclZp8aDamy1zsqsaJaIUiSH5BEAAP//AwCZM4ohXgMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjR9eNBJ3606zQX9k0TDLjNo1X92J\",\n \"object\": \"chat.completion\",\n \"created\": 1764945178,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -721,16 +645,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -770,22 +685,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLBbtQwEL3nKwafNyhZNinNrQKqVsClAi5QRbP2JHHr2JbtbFuq/Xfk
|
||||
pLtJoUi9RMq8ec/vzcxjAsCkYBUw3mHgvVXph5ur8/yb7D4/lPe3Pz5dfd9tvwhXFEP/9fdHtooM
|
||||
s70hHg6st9z0VlGQRk8wd4SBomp+Um5ON0WR5yPQG0Eq0lob0o1Je6llus7WmzQ7SfP3T+zOSE6e
|
||||
VfAzAQB4HL/RpxZ0zyrIVodKT95jS6w6NgEwZ1SsMPRe+oA6sNUMcqMD6dH6JWhzBxw1tHJHgNBG
|
||||
24Da35ED+KXPpUYFZ+N/BReklHmz1HLUDB5jHj0otQBQaxMwzmNMcf2E7I++lWmtM1v/F5U1Ukvf
|
||||
1Y7QGx09+mAsG9F9AnA9zmd4FplZZ3ob6mBuaXwuL95NemxeywI9gMEEVIt6Wa5e0KsFBZTKLybM
|
||||
OPKOxEyd14GDkGYBJIvU/7p5SXtKLnX7GvkZ4JxsIFFbR0Ly54nnNkfxav/XdpzyaJh5cjvJqQ6S
|
||||
XNyEoAYHNd0S8w8+UF83UrfkrJPTQTW2LrLTrGzWiJwl++QPAAAA//8DAOwHnDVeAwAA
|
||||
string: "{\n \"id\": \"chatcmpl-CjRF1TihKy6xkVERUvbLdr55umMzD\",\n \"object\": \"chat.completion\",\n \"created\": 1764945511,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -836,16 +741,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -885,22 +781,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLBctMwEL37KxadYyYOiUNyAzoFCgemHKHj2UprR0XWCklOy3Ty74zs
|
||||
JnZpO8PFM9637+m93b3PAIRWYgtC7jDK1pn8w83lR6X4cnN3Vnz7/r7UX7+E32fx/MLsL9Zilhh8
|
||||
fUMyHlmvJbfOUNRsB1h6wkhJtViXy81yVRZFD7SsyCRa42K+5LzVVueL+WKZz9d58faBvWMtKYgt
|
||||
/MgAAO77b/JpFd2JLcxnx0pLIWBDYntqAhCeTaoIDEGHiDaK2QhKtpFsb/0zWL4FiRYavSdAaJJt
|
||||
QBtuyQP8tOfaooF3/f8WPpEx/Gqq5anuAqY8tjNmAqC1HDHNo09x9YAcTr4NN87zdfiHKmptddhV
|
||||
njCwTR5DZCd69JABXPXz6R5FFs5z62IV+Rf1zxWrN4OeGNcyQY9g5IhmUi/L2TN6laKI2oTJhIVE
|
||||
uSM1Usd1YKc0T4Bskvqpm+e0h+TaNv8jPwJSkoukKudJafk48djmKV3tS22nKfeGRSC/15KqqMmn
|
||||
TSiqsTPDLYnwJ0Rqq1rbhrzzejio2lWr+WZe1gtEKbJD9hcAAP//AwC2u3QBXgMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjRGddoR9xD1PSB6iLKsqDtFJlvJ7\",\n \"object\": \"chat.completion\",\n \"created\": 1764945611,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -951,16 +837,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly
|
||||
agent\nYour personal goal is: say hello\nTo give my best complete final answer
|
||||
to the task respond using the exact following format:\n\nThought: I now can
|
||||
give a great answer\nFinal Answer: Your final answer must be the great and the
|
||||
most complete as possible, it must be outcome described.\n\nI MUST use these
|
||||
formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say
|
||||
hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST
|
||||
return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are test agent. a friendly agent\nYour personal goal is: say hello\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Say hello\n\nThis is the expected criteria for your final answer: hello\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -1000,22 +877,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLBbtQwEL3nKwafNyi7TdPu3mBFBRegFSegiqb2JOvieCzbaaHV/jty
|
||||
0t2kUCQukTJv3vN7M/OYAQitxAaE3GGUnTP59vbq4+W6tOorXV08cDz/HD5tL3H75d3DWy0WicE3
|
||||
tyTjgfVacucMRc12hKUnjJRUl2dVuS6r4mQ1AB0rMonWupiXnHfa6nxVrMq8OMuX50/sHWtJQWzg
|
||||
WwYA8Dh8k0+r6KfYQLE4VDoKAVsSm2MTgPBsUkVgCDpEtFEsJlCyjWQH6x/A8j1ItNDqOwKENtkG
|
||||
tOGePMB3e6EtGngz/G/gPRnDr+Zanpo+YMpje2NmAFrLEdM8hhTXT8j+6Ntw6zzfhD+ootFWh13t
|
||||
CQPb5DFEdmJA9xnA9TCf/llk4Tx3LtaRf9Dw3PL0ZNQT01pm6AGMHNHM6lW1eEGvVhRRmzCbsJAo
|
||||
d6Qm6rQO7JXmGZDNUv/t5iXtMbm27f/IT4CU5CKp2nlSWj5PPLV5Slf7r7bjlAfDIpC/05LqqMmn
|
||||
TShqsDfjLYnwK0Tq6kbblrzzejyoxtWnxbqomhWiFNk++w0AAP//AwDUaYv4XgMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjRNQ94ndZeRFzot8PsOCQaCTEzBi\",\n \"object\": \"chat.completion\",\n \"created\": 1764946032,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: Hello!\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 153,\n \"completion_tokens\": 13,\n \"total_tokens\": 166,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
|
||||
@@ -1,15 +1,6 @@
|
||||
interactions:
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are agent. You are a helpful
|
||||
assistant that just says hi\nYour personal goal is: Just say hi\nTo give my
|
||||
best complete final answer to the task respond using the exact following format:\n\nThought:
|
||||
I now can give a great answer\nFinal Answer: Your final answer must be the great
|
||||
and the most complete as possible, it must be outcome described.\n\nI MUST use
|
||||
these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task:
|
||||
Just say hi\n\nThis is the expected criteria for your final answer: hi\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are agent. You are a helpful assistant that just says hi\nYour personal goal is: Just say hi\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Just say hi\n\nThis is the expected criteria for your final answer: hi\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -49,22 +40,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAA4xSXYvbMBB8969Y9BwXO6T2xW9NIRAofWgL5WgPo5PW9l5lSZXkXNsj/73I+bBz
|
||||
7cG9GLyzs5qZ3acEgJFkFTDR8SB6q9L3D9sd/dlt9O3XD8puPt7an1m5cZ/kl+3+M1tEhrl/QBHO
|
||||
rDfC9FZhIKOPsHDIA8apeVmsbtbrIl+OQG8kqkhrbUhXJu1JU7rMlqs0K9P85sTuDAn0rIJvCQDA
|
||||
0/iNOrXEX6yCbHGu9Og9b5FVlyYA5oyKFca9Jx+4DmwxgcLogHqUvgNtHkFwDS3tETi0UTZw7R/R
|
||||
AXzXW9Jcwbvxv4KO5nMcNoPn0YselJoBXGsTeMxidHB3Qg4Xzcq01pl7/4zKGtLku9oh90ZHfT4Y
|
||||
y0b0kADcjdkMV3aZdaa3oQ7mB47P5cUpGzatZIYuT2AwgatZvTwDV/NqiYGT8rN0meCiQzlRp1Xw
|
||||
QZKZAcnM9b9q/jf76Jx0+5rxEyAE2oCytg4liWvHU5vDeLEvtV1SHgUzj25PAutA6OImJDZ8UMc7
|
||||
Yv63D9jXDekWnXV0PKbG1pxnpVgX+duCJYfkLwAAAP//AwAltW9nWgMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjFIizIBnYWLlpBNYpq07BrRdTFvS\",\n \"object\": \"chat.completion\",\n \"created\": 1764899612,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: hi\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 160,\n \"completion_tokens\": 12,\n \"total_tokens\": 172,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_aa07c96156\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -115,16 +96,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are agent. You are a helpful
|
||||
assistant that just says hi\nYour personal goal is: Just say hi\nTo give my
|
||||
best complete final answer to the task respond using the exact following format:\n\nThought:
|
||||
I now can give a great answer\nFinal Answer: Your final answer must be the great
|
||||
and the most complete as possible, it must be outcome described.\n\nI MUST use
|
||||
these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task:
|
||||
Just say hi\n\nThis is the expected criteria for your final answer: hi\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are agent. You are a helpful assistant that just says hi\nYour personal goal is: Just say hi\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Just say hi\n\nThis is the expected criteria for your final answer: hi\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -164,22 +136,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLLbtswELzrKxY8W4Us+Klb0aZAm0NQ9NJHAmFDraSNKZIg6dhp4H8v
|
||||
KD8k9wH0IkA7O8uZ2X1NAARXogAhWwyysyp99/T5243ffc/4Tt9ubr7ktz/Xm6937z+9zPd7MYkM
|
||||
8/hEMpxZb6TprKLARh9h6QgDxanT5WK2nuWr+aoHOlORirTGhnRm0o41p3mWz9JsmU5XJ3ZrWJIX
|
||||
BfxIAABe+2/UqSvaiwKyybnSkffYkCguTQDCGRUrAr1nH1AHMRlAaXQg3Uv/CNrsQKKGhp8JEJoo
|
||||
G1D7HTmAe/2BNSp42/8X0PJ4jqN66zF60VulRgBqbQLGLHoHDyfkcNGsTGOdefS/UUXNmn1bOkJv
|
||||
dNTng7GiRw8JwEOfzfbKrrDOdDaUwWyof266OGUjhpWM0PwEBhNQjerLM3A1r6woICs/SldIlC1V
|
||||
A3VYBW4rNiMgGbn+U83fZh+ds27+Z/wASEk2UFVaRxXLa8dDm6N4sf9qu6TcCxae3DNLKgOTi5uo
|
||||
qMatOt6R8C8+UFfWrBty1vHxmGpbzrN1tqhzRCmSQ/ILAAD//wMABd15wFoDAAA=
|
||||
string: "{\n \"id\": \"chatcmpl-CjQYEswZ0iOnKkES2Kz9kXODJy5xx\",\n \"object\": \"chat.completion\",\n \"created\": 1764942858,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: hi\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 160,\n \"completion_tokens\": 12,\n \"total_tokens\": 172,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -230,16 +192,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are agent. You are a helpful
|
||||
assistant that just says hi\nYour personal goal is: Just say hi\nTo give my
|
||||
best complete final answer to the task respond using the exact following format:\n\nThought:
|
||||
I now can give a great answer\nFinal Answer: Your final answer must be the great
|
||||
and the most complete as possible, it must be outcome described.\n\nI MUST use
|
||||
these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task:
|
||||
Just say hi\n\nThis is the expected criteria for your final answer: hi\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are agent. You are a helpful assistant that just says hi\nYour personal goal is: Just say hi\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Just say hi\n\nThis is the expected criteria for your final answer: hi\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -279,22 +232,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAA4xSy27bMBC86ysWPFuFLDh27FuTokXQ9lIU6KENhA25kuhSS4ak4rSB/72g/JDc
|
||||
B9CLAO3sLGdm9yUDEFqJDQjZYpSdM/nt9tP1++aje37k8nb3+fHLzfYD31l18yb+fCdmiWEftiTj
|
||||
ifVK2s4ZitryAZaeMFKaOl8tF+vFVbFeDkBnFZlEa1zMFzbvNOu8LMpFXqzy+fWR3VotKYgNfM0A
|
||||
AF6Gb9LJip7FBorZqdJRCNiQ2JybAIS3JlUEhqBDRI5iNoLSciQepN8B2x1IZGj0EwFCk2QDctiR
|
||||
B/jGbzWjgdfD/wZaPZ3jqe4DJi/cGzMBkNlGTFkMDu6PyP6s2djGefsQfqOKWrMObeUJg+WkL0Tr
|
||||
xIDuM4D7IZv+wq5w3nYuVtF+p+G5+fKYjRhXMkHLIxhtRDOpr07AxbxKUURtwiRdIVG2pEbquArs
|
||||
lbYTIJu4/lPN32YfnGtu/mf8CEhJLpKqnCel5aXjsc1Tuth/tZ1THgSLQP5JS6qiJp82oajG3hzu
|
||||
SIQfIVJX1Zob8s7rwzHVrroq1sWyLhGlyPbZLwAAAP//AwCXQcDiWgMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjR8KgMpxqn2CwTqWBjLnIodBDtzG\",\n \"object\": \"chat.completion\",\n \"created\": 1764945096,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: hi\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 160,\n \"completion_tokens\": 12,\n \"total_tokens\": 172,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -345,16 +288,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are agent. You are a helpful
|
||||
assistant that just says hi\nYour personal goal is: Just say hi\nTo give my
|
||||
best complete final answer to the task respond using the exact following format:\n\nThought:
|
||||
I now can give a great answer\nFinal Answer: Your final answer must be the great
|
||||
and the most complete as possible, it must be outcome described.\n\nI MUST use
|
||||
these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task:
|
||||
Just say hi\n\nThis is the expected criteria for your final answer: hi\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are agent. You are a helpful assistant that just says hi\nYour personal goal is: Just say hi\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Just say hi\n\nThis is the expected criteria for your final answer: hi\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -394,22 +328,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLLbtswELzrKxY8W4VkKHasWxqgbYqccuilDYQNuZLoUiRLUk6KwP9e
|
||||
kH5IThugFwHa2VnOzO5rBsCkYDUw3mPgg1X57fZhg5/VL/x4u/t2J+478eW+vN6+VKsH+5UtIsM8
|
||||
bYmHE+sDN4NVFKTRB5g7wkBxarleVZvqqlxXCRiMIBVpnQ15ZfJBapkvi2WVF+u8vD6yeyM5eVbD
|
||||
9wwA4DV9o04t6IXVUCxOlYG8x45YfW4CYM6oWGHovfQBdWCLCeRGB9JJ+h1o8wwcNXRyR4DQRdmA
|
||||
2j+TA/ihP0mNCm7Sfw29nM9x1I4eoxc9KjUDUGsTMGaRHDwekf1ZszKddebJv6GyVmrp+8YReqOj
|
||||
Ph+MZQndZwCPKZvxwi6zzgw2NMH8pPRcuTpmw6aVzNDlEQwmoJrV1yfgYl4jKKBUfpYu48h7EhN1
|
||||
WgWOQpoZkM1c/63mX7MPzqXu/mf8BHBONpBorCMh+aXjqc1RvNj32s4pJ8HMk9tJTk2Q5OImBLU4
|
||||
qsMdMf/bBxqaVuqOnHXycEytba6KTbFql4icZfvsDwAAAP//AwACsxZeWgMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjR9aGlqaBCvVIdLgdHL18jx46RpJ\",\n \"object\": \"chat.completion\",\n \"created\": 1764945174,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: hi\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 160,\n \"completion_tokens\": 12,\n \"total_tokens\": 172,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -460,16 +384,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are agent. You are a helpful
|
||||
assistant that just says hi\nYour personal goal is: Just say hi\nTo give my
|
||||
best complete final answer to the task respond using the exact following format:\n\nThought:
|
||||
I now can give a great answer\nFinal Answer: Your final answer must be the great
|
||||
and the most complete as possible, it must be outcome described.\n\nI MUST use
|
||||
these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task:
|
||||
Just say hi\n\nThis is the expected criteria for your final answer: hi\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are agent. You are a helpful assistant that just says hi\nYour personal goal is: Just say hi\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Just say hi\n\nThis is the expected criteria for your final answer: hi\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -509,22 +424,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFJda9wwEHz3r1j0HBf78N01fiuhgfah0JYW2iaYjby2N5UlIcn5INx/
|
||||
L9Jdzr42gb4YvLMzmtndpwxAcCtqEHLAIEer8ovbL5fFwyf38UfxuX9fjo/y+6Yrq4tvX386J84i
|
||||
w9zckgzPrDfSjFZRYKP3sHSEgaJqud1U59V6XRYJGE1LKtJ6G/LK5CNrzlfFqsqLbV6+PbAHw5K8
|
||||
qOFXBgDwlL7Rp27pQdSQtFJlJO+xJ1EfmwCEMypWBHrPPqAO4mwGpdGBdLL+AbS5B4kaer4jQOij
|
||||
bUDt78kBXOlL1qjgXfqvYeCljqNu8hiz6EmpBYBam4BxFinB9QHZHT0r01tnbvxfVNGxZj80jtAb
|
||||
Hf35YKxI6C4DuE6zmU7iCuvMaEMTzG9Kz5Wbw2zEvJIFujqAwQRUi/r2GTjRa1oKyMovpiskyoHa
|
||||
mTqvAqeWzQLIFqn/dfOS9j456/5/5GdASrKB2sY6almeJp7bHMWLfa3tOOVkWHhydyypCUwubqKl
|
||||
Die1vyPhH32gselY9+Ss4/0xdbZZF+fFplshSpHtsj8AAAD//wMAoZPWJVoDAAA=
|
||||
string: "{\n \"id\": \"chatcmpl-CjRF0xNrJY0QgE1mycV6f14CUSZrr\",\n \"object\": \"chat.completion\",\n \"created\": 1764945510,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: hi\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 160,\n \"completion_tokens\": 12,\n \"total_tokens\": 172,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -575,16 +480,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are agent. You are a helpful
|
||||
assistant that just says hi\nYour personal goal is: Just say hi\nTo give my
|
||||
best complete final answer to the task respond using the exact following format:\n\nThought:
|
||||
I now can give a great answer\nFinal Answer: Your final answer must be the great
|
||||
and the most complete as possible, it must be outcome described.\n\nI MUST use
|
||||
these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task:
|
||||
Just say hi\n\nThis is the expected criteria for your final answer: hi\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are agent. You are a helpful assistant that just says hi\nYour personal goal is: Just say hi\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Just say hi\n\nThis is the expected criteria for your final answer: hi\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -624,22 +520,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLLbtswELzrKxY8W4VsOHaiW2r0dWpRo0CLNBDW5EralCIJkkoaBP73
|
||||
gvJDch9ALwK0s7Ocmd2XDECwEiUI2WKUndP55uHzOzT1p69b97zcqI+32+3m9bfmfbd7s/0iZolh
|
||||
dw8k44n1StrOaYpszQGWnjBSmjpfr5Y3y6tVcT0AnVWkE61xMV/avGPD+aJYLPNinc+vj+zWsqQg
|
||||
SrjLAABehm/SaRT9FCUUs1OloxCwIVGemwCEtzpVBIbAIaKJYjaC0ppIZpD+AYx9AokGGn4kQGiS
|
||||
bEATnsgDfDdv2aCG2+G/hJanczzVfcDkxfRaTwA0xkZMWQwO7o/I/qxZ28Z5uwu/UUXNhkNbecJg
|
||||
TdIXonViQPcZwP2QTX9hVzhvOxeraH/Q8Nx8dcxGjCuZoIsjGG1EPamvT8DFvEpRRNZhkq6QKFtS
|
||||
I3VcBfaK7QTIJq7/VPO32QfnbJr/GT8CUpKLpCrnSbG8dDy2eUoX+6+2c8qDYBHIP7KkKjL5tAlF
|
||||
Nfb6cEciPIdIXVWzacg7z4djql11VdwUq3qBKEW2z34BAAD//wMAjAWVD1oDAAA=
|
||||
string: "{\n \"id\": \"chatcmpl-CjRGanfPXSpy4CdOASSCBYgHmbESU\",\n \"object\": \"chat.completion\",\n \"created\": 1764945608,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: hi\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 160,\n \"completion_tokens\": 12,\n \"total_tokens\": 172,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -690,16 +576,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are agent. You are a helpful
|
||||
assistant that just says hi\nYour personal goal is: Just say hi\nTo give my
|
||||
best complete final answer to the task respond using the exact following format:\n\nThought:
|
||||
I now can give a great answer\nFinal Answer: Your final answer must be the great
|
||||
and the most complete as possible, it must be outcome described.\n\nI MUST use
|
||||
these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task:
|
||||
Just say hi\n\nThis is the expected criteria for your final answer: hi\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are agent. You are a helpful assistant that just says hi\nYour personal goal is: Just say hi\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Just say hi\n\nThis is the expected criteria for your final answer: hi\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -739,22 +616,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFLLbtswELzrKxY8W4UsKHasW9ogRYGefEhRtIGwplbSphRJkJTTIPC/
|
||||
F5QfkvsAehGgnZ3lzOy+JQCCa1GCkB0G2VuVfnjefm63txu/zb/ctY/q/vH14f79/qMa7NedWESG
|
||||
2T2TDGfWO2l6qyiw0UdYOsJAcepyvSo2xc0mL0agNzWpSGttSAuT9qw5zbO8SLN1urw9sTvDkrwo
|
||||
4VsCAPA2fqNOXdNPUUK2OFd68h5bEuWlCUA4o2JFoPfsA+ogFhMojQ6kR+mfQJsXkKih5T0BQhtl
|
||||
A2r/Qg7gu35gjQruxv8SOp7PcdQMHqMXPSg1A1BrEzBmMTp4OiGHi2ZlWuvMzv9GFQ1r9l3lCL3R
|
||||
UZ8PxooRPSQAT2M2w5VdYZ3pbaiC+UHjc8vVKRsxrWSG5icwmIBqVl+fgat5VU0BWflZukKi7Kie
|
||||
qNMqcKjZzIBk5vpPNX+bfXTOuv2f8RMgJdlAdWUd1SyvHU9tjuLF/qvtkvIoWHhye5ZUBSYXN1FT
|
||||
g4M63pHwrz5QXzWsW3LW8fGYGlvdZJts1eSIUiSH5BcAAAD//wMAybcM/FoDAAA=
|
||||
string: "{\n \"id\": \"chatcmpl-CjRLgR89sR2WAgVlDVyFDBvGlupYb\",\n \"object\": \"chat.completion\",\n \"created\": 1764945924,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: hi\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 160,\n \"completion_tokens\": 12,\n \"total_tokens\": 172,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
@@ -805,12 +672,7 @@ interactions:
|
||||
code: 200
|
||||
message: OK
|
||||
- request:
|
||||
body: '{"trace_id": "85a1b921-2f5c-4f70-a875-bd490db27d68", "execution_type":
|
||||
"crew", "user_identifier": null, "execution_context": {"crew_fingerprint": null,
|
||||
"crew_name": "TestCrew", "flow_name": null, "crewai_version": "1.6.1", "privacy_level":
|
||||
"standard"}, "execution_metadata": {"expected_duration_estimate": 300, "agent_count":
|
||||
0, "task_count": 0, "flow_method_count": 0, "execution_started_at": "2025-12-05T14:47:08.366533+00:00"},
|
||||
"ephemeral_trace_id": "85a1b921-2f5c-4f70-a875-bd490db27d68"}'
|
||||
body: '{"trace_id": "85a1b921-2f5c-4f70-a875-bd490db27d68", "execution_type": "crew", "user_identifier": null, "execution_context": {"crew_fingerprint": null, "crew_name": "TestCrew", "flow_name": null, "crewai_version": "1.6.1", "privacy_level": "standard"}, "execution_metadata": {"expected_duration_estimate": 300, "agent_count": 0, "task_count": 0, "flow_method_count": 0, "execution_started_at": "2025-12-05T14:47:08.366533+00:00"}, "ephemeral_trace_id": "85a1b921-2f5c-4f70-a875-bd490db27d68"}'
|
||||
headers:
|
||||
Accept:
|
||||
- '*/*'
|
||||
@@ -876,16 +738,7 @@ interactions:
|
||||
code: 201
|
||||
message: Created
|
||||
- request:
|
||||
body: '{"messages":[{"role":"system","content":"You are agent. You are a helpful
|
||||
assistant that just says hi\nYour personal goal is: Just say hi\nTo give my
|
||||
best complete final answer to the task respond using the exact following format:\n\nThought:
|
||||
I now can give a great answer\nFinal Answer: Your final answer must be the great
|
||||
and the most complete as possible, it must be outcome described.\n\nI MUST use
|
||||
these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task:
|
||||
Just say hi\n\nThis is the expected criteria for your final answer: hi\nyou
|
||||
MUST return the actual complete content as the final answer, not a summary.\n\nBegin!
|
||||
This is VERY important to you, use the tools available and give your best Final
|
||||
Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
body: '{"messages":[{"role":"system","content":"You are agent. You are a helpful assistant that just says hi\nYour personal goal is: Just say hi\nTo give my best complete final answer to the task respond using the exact following format:\n\nThought: I now can give a great answer\nFinal Answer: Your final answer must be the great and the most complete as possible, it must be outcome described.\n\nI MUST use these formats, my job depends on it!"},{"role":"user","content":"\nCurrent Task: Just say hi\n\nThis is the expected criteria for your final answer: hi\nyou MUST return the actual complete content as the final answer, not a summary.\n\nBegin! This is VERY important to you, use the tools available and give your best Final Answer, your job depends on it!\n\nThought:"}],"model":"gpt-4o-mini"}'
|
||||
headers:
|
||||
User-Agent:
|
||||
- X-USER-AGENT-XXX
|
||||
@@ -925,22 +778,12 @@ interactions:
|
||||
uri: https://api.openai.com/v1/chat/completions
|
||||
response:
|
||||
body:
|
||||
string: !!binary |
|
||||
H4sIAAAAAAAAAwAAAP//jFJdb9QwEHzPr1j5+YJyIdz18laQKLwUCSSKBFW052wSF2ft2k5bVN1/
|
||||
R859JAdU4iVSdnbWM7P7nAAIVYsShOwwyN7q9N3d5+vr7Om+u9+8vXh9dbP+9M1cFV/5y4d8eyMW
|
||||
kWG2dyTDkfVKmt5qCsrwHpaOMFCculyvik2xyvLNCPSmJh1prQ1pYdJesUrzLC/SbJ0uLw7szihJ
|
||||
XpTwPQEAeB6/USfX9CRKyBbHSk/eY0uiPDUBCGd0rAj0XvmAHMRiAqXhQDxK/whsHkEiQ6seCBDa
|
||||
KBuQ/SM5gB/8XjFquBz/S+jUfI6jZvAYvfCg9QxAZhMwZjE6uD0gu5NmbVrrzNb/QRWNYuW7yhF6
|
||||
w1GfD8aKEd0lALdjNsOZXWGd6W2ogvlJ43PL1SEbMa1khuYHMJiAelZfH4GzeVVNAZX2s3SFRNlR
|
||||
PVGnVeBQKzMDkpnrv9X8a/beueL2f8ZPgJRkA9WVdVQree54anMUL/altlPKo2DhyT0oSVVQ5OIm
|
||||
ampw0Ps7Ev6XD9RXjeKWnHVqf0yNrd5km2zV5IhSJLvkNwAAAP//AwCzjNbPWgMAAA==
|
||||
string: "{\n \"id\": \"chatcmpl-CjRNN0xqhq9B83GW7OXoG4VnSH2bW\",\n \"object\": \"chat.completion\",\n \"created\": 1764946029,\n \"model\": \"gpt-4o-mini-2024-07-18\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"I now can give a great answer \\nFinal Answer: hi\",\n \"refusal\": null,\n \"annotations\": []\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\"\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 160,\n \"completion_tokens\": 12,\n \"total_tokens\": 172,\n \"prompt_tokens_details\": {\n \"cached_tokens\": 0,\n \"audio_tokens\": 0\n },\n \"completion_tokens_details\": {\n \"reasoning_tokens\": 0,\n \"audio_tokens\": 0,\n \"accepted_prediction_tokens\": 0,\n \"rejected_prediction_tokens\": 0\n }\n },\n \"service_tier\": \"default\",\n \"system_fingerprint\": \"fp_50906f2aac\"\n}\n"
|
||||
headers:
|
||||
CF-RAY:
|
||||
- CF-RAY-XXX
|
||||
Connection:
|
||||
- keep-alive
|
||||
Content-Encoding:
|
||||
- gzip
|
||||
Content-Type:
|
||||
- application/json
|
||||
Date:
|
||||
|
||||
Reference in New Issue
Block a user