techleadhd / chatgpt-retrieval

1.65k stars 786 forks source link

seeing openai.error.RateLimitError #42

Open zhangyong870524 opened 9 months ago

zhangyong870524 commented 9 months ago

I'm using the free trial App Key of open ai but seeing the following error, do I need to upgrade my plan to get it working?

openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details.

query = None if len(sys.argv) > 1: query = sys.argv[1]

loader = TextLoader('data.txt') print(query) index = VectorstoreIndexCreator().from_loaders([loader]) print(index.query(query))

ClementEoche commented 9 months ago

I'm using the free trial App Key of open ai but seeing the following error, do I need to upgrade my plan to get it working?

openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details.

query = None if len(sys.argv) > 1: query = sys.argv[1]

loader = TextLoader('data.txt') print(query) index = VectorstoreIndexCreator().from_loaders([loader]) print(index.query(query))

@zhangyong870524 You cannot longer use api calls without a proper billing plan, it's a common practice from company that give access to any kind of data treatment.

ronaldl29 commented 9 months ago

What plan is needed to get this working?

ronaldl29 commented 9 months ago

@ClementEoche