Uploading small JSON-ified SQL database, Does referencing pre-uploaded files cost tokens?

Hello!

I have a use-case where I have a database of books and 10 words tagged per book. I put together a demo where I, per api request to GPT4-Turbo:

Step 1: Upload JSON-ified version of entire SQL db of 300 books and their 10 tags each.
Step 2: Ask ChatGPT for a JSON style response of top 3 similar books.

Now as you can imagine, the token cost for this is HUGE!! After about 10 requests I run out of my daily token allowance.

If I upload the file, would I be able to save on tokens? Any advice on how to make this a reliable tool that can be used more than 10 times per day?

Thanks in advance!

Hi! Welcome to the forums!

You mean if you use the assistants retrieval tool? It’s possible, but who knows!

Well, you’re looking for similarity! That’s what embeddings are really good at.

I’d suggest you take a look at embeddings - for 300 books, you probably don’t even need a vector DB! just loop over your candidates, sort by cosine similarity, and take your top 3!

There’s more advanced methods, but it could be a start, let us know what you think!