Git Product home page Git Product logo

Comments (13)

guili618 avatar guili618 commented on August 23, 2024 3

in reverie.py , import traceback , then add traceback.print_exc() before print ("Error."),save file and restart python reverie.py

you will see more detail info about your error
my is "openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details."

from generative_agents.

tsieyy avatar tsieyy commented on August 23, 2024

same problem

from generative_agents.

Ancrilin avatar Ancrilin commented on August 23, 2024

I also meet the same problem.

`python reverie.py
Enter the name of the forked simulation: base_the_ville_isabella_maria_klaus
Enter the name of the new simulation: test-simulation
Note: The agents in this simulation package are computational
constructs powered by generative agents architecture and LLM. We
clarify that these agents lack human-like agency, consciousness,
and independent decision-making.

Enter option: run 100
Error.
Enter option: run 1000
Error.
Enter option: `

from generative_agents.

sunyuanrui avatar sunyuanrui commented on August 23, 2024

in reverie.py , import traceback , then add traceback.print_exc() before print ("Error."),save file and restart python reverie.py

you will see more detail info about your error my is "openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details."

I have the same error. Is this need GPT-4 API? How can I use GPT-3.5 API to replace?

from generative_agents.

hansun11 avatar hansun11 commented on August 23, 2024

in reverie.py , import traceback , then add traceback.print_exc() before print ("Error."),save file and restart python reverie.py
you will see more detail info about your error my is "openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details."

I have the same error. Is this need GPT-4 API? How can I use GPT-3.5 API to replace?

I have replaced the old API with a new one (GPT3.5) and it seems to be working properly.
But the new problem is that there is only output in Termin , I can't see the Simulation on my browser

from generative_agents.

Ancrilin avatar Ancrilin commented on August 23, 2024

in reverie.py , import traceback , then add traceback.print_exc() before print ("Error."),save file and restart python reverie.py

you will see more detail info about your error my is "openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details."

I added the code and got the error.
openai.error.RateLimitError: Rate limit reached for default-text-embedding-ada-002 in organization org-1SwtoMrxxx on requests per min. Limit: 3 / min. Please try again in 20s. Contact us through our help center at help.openai.com if you continue to have issues. Please add a payment method to your account to increase your rate limit. Visit https://platform.openai.com/account/billing to add a payment method.
I input run 1, but it still throws this error.
Can the call frequency be modified?

from generative_agents.

sunyuanrui avatar sunyuanrui commented on August 23, 2024

in reverie.py , import traceback , then add traceback.print_exc() before print ("Error."),save file and restart python reverie.py
you will see more detail info about your error my is "openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details."

I added the code and got the error. openai.error.RateLimitError: Rate limit reached for default-text-embedding-ada-002 in organization org-1SwtoMrxxx on requests per min. Limit: 3 / min. Please try again in 20s. Contact us through our help center at help.openai.com if you continue to have issues. Please add a payment method to your account to increase your rate limit. Visit https://platform.openai.com/account/billing to add a payment method. I input run 1, but it still throws this error. Can the call frequency be modified?

You can through inserting a time.sleep(0.5) in "generative_agents/reverie/backend_server/persona/prompt_template/gpt_structure.py, line 278" to control the call frequency. It's a simple way. run 1, it still sent many messages to chatgpt. For example, every character will sent a message to chatgpt.

from generative_agents.

YuehChuan avatar YuehChuan commented on August 23, 2024

maybe the issue from running out of the quota😂
image

from generative_agents.

154286 avatar 154286 commented on August 23, 2024

maybe the issue from running out of the quota😂 image

I'm the same. How can I solve it

from generative_agents.

Ancrilin avatar Ancrilin commented on August 23, 2024

maybe the issue from running out of the quota😂 image

I think your account balance has been used up, and you need to subscribe to OpenAI or replace the API key.

from generative_agents.

islisiyuan avatar islisiyuan commented on August 23, 2024

in reverie.py , import traceback , then add traceback.print_exc() before print ("Error."),save file and restart python reverie.py
you will see more detail info about your error my is "openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details."

I added the code and got the error. openai.error.RateLimitError: Rate limit reached for default-text-embedding-ada-002 in organization org-1SwtoMrxxx on requests per min. Limit: 3 / min. Please try again in 20s. Contact us through our help center at help.openai.com if you continue to have issues. Please add a payment method to your account to increase your rate limit. Visit https://platform.openai.com/account/billing to add a payment method. I input run 1, but it still throws this error. Can the call frequency be modified?

same error

from generative_agents.

hansun11 avatar hansun11 commented on August 23, 2024

in reverie.py , import traceback , then add traceback.print_exc() before print ("Error."),save file and restart python reverie.py
you will see more detail info about your error my is "openai.error.RateLimitError: You exceeded your current quota, please check your plan and billing details."

I added the code and got the error. openai.error.RateLimitError: Rate limit reached for default-text-embedding-ada-002 in organization org-1SwtoMrxxx on requests per min. Limit: 3 / min. Please try again in 20s. Contact us through our help center at help.openai.com if you continue to have issues. Please add a payment method to your account to increase your rate limit. Visit https://platform.openai.com/account/billing to add a payment method. I input run 1, but it still throws this error. Can the call frequency be modified?

same error

you should add a payment (credit card), the free account have Rate limit (3 / min), it's not enough for this project.

from generative_agents.

hansun11 avatar hansun11 commented on August 23, 2024

maybe the issue from running out of the quota😂 image

I think the FREE account can't support this project because of the Rate limit (3/min). I ran 10 times (about 2 min) and it cost me $1.5. This project will generate a large number of API requests in a short period of time.

from generative_agents.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.