-
Notifications
You must be signed in to change notification settings - Fork 44.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only gpt-3.5 being used, without using --gpt3only modifier #942
Comments
I have also seen this, I'm not sure on a cause, yet. |
from what I can tell. the script defaults to 3.5. you must use the gpt4only flag. |
It's hardcoded to use So you could change that to gpt-4 if you want to wrack up a bill 😉 |
Maybe GPT 4 (or |
definitely want more input on this #2621 and if it's a good direction need to add tests |
- Add `cfg.fast_llm_model` to `chat_with_ai` method parameters. - Remove hardcoded model in `chat_with_ai` method and `Agent` class - Add `GPT_4_MODEL` and `GPT_3_MODEL` constants to `configurator.py`. - Change `--gpt3only` to use `GPT_3_MODEL` not `CFG.fast_llm_model`. - Change `--gpt4only` to use `GPT_4_MODEL` not `CFG.smart_llm_model`. - Add tests for `--gpt4only` and `--gpt3only` CLI args
See #3144 proposed fix. |
Co-authored-by: Luke K <[email protected]> Co-authored-by: Nicholas Tindle <[email protected]> Co-authored-by: Reinier van der Leer <[email protected]> Co-authored-by: k-boikov <[email protected]>
* improve max_valid_n and doc * Update README.md Co-authored-by: Li Jiang <[email protected]> * add support for chatgpt * notebook * newline at end of file * chatgpt notebook * ChatGPT in Azure * doc * math * warning, timeout, log file name * handle import error * doc update; default value * paper * doc * docstr * eval_func * prompt and messages * remove confusing words * notebook name --------- Co-authored-by: Li Jiang <[email protected]> Co-authored-by: Susan Xueqing Liu <[email protected]>
Duplicates
Steps to reproduce 🕹
Run python scripts/main.py with OpenAI api key that supports gp4 usage in env
Current behavior 😯
Judging by my USAGE page on Open AI, AutoGPT is only making use of gpt-3.5-turbo-0301 and text-embedding-ada-002-v2
Expected behavior 🤔
AutoGPT should use gpt-4 model
Your prompt 📝
# Paste your prompt here
The text was updated successfully, but these errors were encountered: