Hi guys, I'm new here. First of all congrats for such a great project.
I'm currently trying to create an index using
GPTSimpleVectorIndex
and I have two issues at the moment:
- When passing
model_name
parameter with text-davinci-003
, in my openai usage page I always see that text-embedding-ada-002-v2
was used. I'm currently in the Free trial usage, not sure if that's related or if davinci is used for the queries only. - I wanted to analyse tokens usage with no costs before creating the whole index, so I was using the
MockLLMPredictor
with GPTSimpleVectorIndex
but is still using tokens from openai even though llm_predictor.last_token_usage
reports 0. I'm not sure if I'll be charged for create an index or not and with which model.
Thanks π