mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 22:14:28 +01:00
Adds --gpt3only mode!
This commit is contained in:
@@ -105,7 +105,6 @@ Run the AI **without** user authorisation, 100% automated.
|
|||||||
Continuous mode is not recommended.
|
Continuous mode is not recommended.
|
||||||
It is potentially dangerous and may cause your AI to run forever or carry out actions you would not usually authorise.
|
It is potentially dangerous and may cause your AI to run forever or carry out actions you would not usually authorise.
|
||||||
Use at your own risk.
|
Use at your own risk.
|
||||||
|
|
||||||
1. Run the `main.py` Python script in your terminal:
|
1. Run the `main.py` Python script in your terminal:
|
||||||
```
|
```
|
||||||
python scripts/main.py --continuous
|
python scripts/main.py --continuous
|
||||||
@@ -113,6 +112,12 @@ python scripts/main.py --continuous
|
|||||||
```
|
```
|
||||||
2. To exit the program, press Ctrl + C
|
2. To exit the program, press Ctrl + C
|
||||||
|
|
||||||
|
## GPT3.5 ONLY Mode
|
||||||
|
If you don't have access to the GPT4 api, this mode will allow you to use Auto-GPT!
|
||||||
|
```
|
||||||
|
python scripts/main.py --gpt3only
|
||||||
|
```
|
||||||
|
|
||||||
## ⚠️ Limitations
|
## ⚠️ Limitations
|
||||||
This experiment aims to showcase the potential of GPT-4 but comes with some limitations:
|
This experiment aims to showcase the potential of GPT-4 but comes with some limitations:
|
||||||
|
|
||||||
|
|||||||
@@ -253,6 +253,8 @@ def parse_arguments():
|
|||||||
parser = argparse.ArgumentParser(description='Process arguments.')
|
parser = argparse.ArgumentParser(description='Process arguments.')
|
||||||
parser.add_argument('--continuous', action='store_true', help='Enable Continuous Mode')
|
parser.add_argument('--continuous', action='store_true', help='Enable Continuous Mode')
|
||||||
parser.add_argument('--speak', action='store_true', help='Enable Speak Mode')
|
parser.add_argument('--speak', action='store_true', help='Enable Speak Mode')
|
||||||
|
parser.add_argument('--debug', action='store_true', help='Enable Debug Mode')
|
||||||
|
parser.add_argument('--gpt3only', action='store_true', help='Enable GPT3.5 Only Mode')
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
if args.continuous:
|
if args.continuous:
|
||||||
@@ -267,7 +269,9 @@ def parse_arguments():
|
|||||||
print_to_console("Speak Mode: ", Fore.GREEN, "ENABLED")
|
print_to_console("Speak Mode: ", Fore.GREEN, "ENABLED")
|
||||||
cfg.set_speak_mode(True)
|
cfg.set_speak_mode(True)
|
||||||
|
|
||||||
|
if args.gpt3only:
|
||||||
|
print_to_console("GPT3.5 Only Mode: ", Fore.GREEN, "ENABLED")
|
||||||
|
cfg.set_smart_llm_model(cfg.fast_llm_model)
|
||||||
|
|
||||||
|
|
||||||
# TODO: fill in llm values here
|
# TODO: fill in llm values here
|
||||||
|
|||||||
Reference in New Issue
Block a user