I’m struggling to find documentation on this.
I have successfully run a finetuning job on gpt-4.1 and I can query it using the chat completions API.
I want to store the generated chat completions, as well as give it some metadata to make it easier to find specific completions.
response = client.chat.completions.create(
model = "ft:gpt-4.1-2025-04-14:...",
messages = message,
max_completion_tokens = 500,
metadata={
"token": token,
},
store = True,
)
This is the code I’m running but the chat completions don’t show up on my dashboard.
Okay thanks, I have run some test code and it saves those chat completions.
However the chat completions that are in my main code body aren’t being saved.
The inputs are quite large including several images, could that be an issue, otherwise the code that I am running is the same.