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'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.
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))
The text was updated successfully, but these errors were encountered: