#Data API pricing
15 messages · Page 1 of 1 (latest)
Not sure what you mean by Data API but you can find the pricing for their various models here: https://openai.com/api/pricing/
@raven parrot @stable sable if I were to store documents for getting answers, how is this priced? By storage size?
or is this free to store documents?
Where are you seeing that functionality?
Is this for fine-tuning? Your purpose said "answers". I think you may be looking at an old endpoint. As far as I know (and I stand to be corrected), uploading files for fine-tuning is free, but the cost of the actual fine-tuning is more per token.
I'm looking at the unofficial php lib and I don't see that example or even a similar create function
"answers" and "search" have been depreciated. The new end point is "completion"
ok, let me check that
The pricing page has not been updated. I'll let Logan know
So, I was actually interested in https://platform.openai.com/docs/api-reference/files/upload
An API for accessing new AI models developed by OpenAI
is there any price associated with the files uploaded based on the size or content processed?
That is only for fine-tuning
If you want to use documents for answering questions you'll likely want to generate embeddings from the contents and search those when asking questions. You need to manage storing and searching those embeddings on your own.