You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to get my API calls to show up in the "Logs" pane in the OpenAI API dashboard.
I discovered that setting store=True, does exactly what I want on a per-API call basis, however when reading the description of the parameter in the docstring I see this
or [evals](https://platform.openai.com/docs/guides/evals) products.
Supports text and image inputs. Note: image inputs over 8MB will be dropped.
store: Whether or not to store the output of this chat completion request for use in
our [model distillation](https://platform.openai.com/docs/guides/distillation)
or [evals](https://platform.openai.com/docs/guides/evals) products.
Supports text and image inputs. Note: image inputs over 8MB will be dropped.
Which seems to be innacurate to me.
Is this flag really controlling whether or not to store the output for model distillation? or is it simply controlling if my request shows up in the "Logs" tab?
Edit: Also wanted to note that this is also the official description in the API reference
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I was trying to get my API calls to show up in the "Logs" pane in the OpenAI API dashboard.
I discovered that setting
store=True,does exactly what I want on a per-API call basis, however when reading the description of the parameter in the docstring I see thisopenai-python/src/openai/resources/chat/completions/completions.py
Lines 470 to 474 in 41ee03f
Which seems to be innacurate to me.
Is this flag really controlling whether or not to store the output for model distillation? or is it simply controlling if my request shows up in the "Logs" tab?
Edit: Also wanted to note that this is also the official description in the API reference
https://platform.openai.com/docs/api-reference/chat/create#chat_create-store
Beta Was this translation helpful? Give feedback.
All reactions