diff --git a/README.md b/README.md
index 4969e5ed..f0ec8e4e 100644
--- a/README.md
+++ b/README.md
@@ -32,13 +32,13 @@ Development of this free, open-source project is made possible by all the
+
## 🚀 Features
@@ -138,9 +138,9 @@ _To execute the following commands, open a CMD, Bash, or Powershell window by na
# On Linux of Mac:
./run.sh start
# On Windows:
- ./run.bat start
+ .\run.bat
```
- Running with `--help` after `start` lists all the possible command line arguments you can pass.
+ Running with `--help` after `.\run.bat` lists all the possible command line arguments you can pass.
2. After each action, choose from options to authorize command(s),
exit the program, or provide feedback to the AI.
diff --git a/autogpt/config/config.py b/autogpt/config/config.py
index 4b53df10..13659132 100644
--- a/autogpt/config/config.py
+++ b/autogpt/config/config.py
@@ -145,7 +145,7 @@ class Config(metaclass=Singleton):
else:
return ""
- AZURE_CONFIG_FILE = os.path.join(os.path.dirname(__file__), "..", "azure.yaml")
+ AZURE_CONFIG_FILE = os.path.join(os.path.dirname(__file__), "../..", "azure.yaml")
def load_azure_config(self, config_file: str = AZURE_CONFIG_FILE) -> None:
"""
@@ -168,7 +168,7 @@ class Config(metaclass=Singleton):
self.openai_api_version = (
config_params.get("azure_api_version") or "2023-03-15-preview"
)
- self.azure_model_to_deployment_id_map = config_params.get("azure_model_map", [])
+ self.azure_model_to_deployment_id_map = config_params.get("azure_model_map", {})
def set_continuous_mode(self, value: bool) -> None:
"""Set the continuous mode value."""
diff --git a/autogpt/processing/text.py b/autogpt/processing/text.py
index 52add814..130de473 100644
--- a/autogpt/processing/text.py
+++ b/autogpt/processing/text.py
@@ -62,7 +62,7 @@ def summarize_text(
print(f"Text length: {text_length} characters")
summaries = []
- chunks = list(split_text(text))
+ chunks = list(split_text(text, CFG.browse_chunk_max_length))
scroll_ratio = 1 / len(chunks)
for i, chunk in enumerate(chunks):
diff --git a/autogpt/prompt.py b/autogpt/prompt.py
index 03c132ac..08754605 100644
--- a/autogpt/prompt.py
+++ b/autogpt/prompt.py
@@ -85,7 +85,6 @@ def get_prompt() -> str:
{"code": "