Skip to content

Commit a053bb0

Browse files
Merge pull request Significant-Gravitas#2494 from richbeales/master
Print the current Git branch on startup - warn if unsupported
2 parents ecf2ba1 + 4ba4630 commit a053bb0

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

autogpt/cli.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def main(
7979
from autogpt.logs import logger
8080
from autogpt.memory import get_memory
8181
from autogpt.prompt import construct_prompt
82-
from autogpt.utils import get_latest_bulletin
82+
from autogpt.utils import get_current_git_branch, get_latest_bulletin
8383

8484
if ctx.invoked_subcommand is None:
8585
cfg = Config()
@@ -105,6 +105,14 @@ def main(
105105
motd = get_latest_bulletin()
106106
if motd:
107107
logger.typewriter_log("NEWS: ", Fore.GREEN, motd)
108+
git_branch = get_current_git_branch()
109+
if git_branch and git_branch != "stable":
110+
logger.typewriter_log(
111+
"WARNING: ",
112+
Fore.RED,
113+
f"You are running on `{git_branch}` branch "
114+
"- this is not a supported branch.",
115+
)
108116
system_prompt = construct_prompt()
109117
# print(prompt)
110118
# Initialize variables

autogpt/utils.py

+10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import requests
44
import yaml
55
from colorama import Fore
6+
from git import Repo
67

78

89
def clean_input(prompt: str = ""):
@@ -53,6 +54,15 @@ def get_bulletin_from_web() -> str:
5354
return ""
5455

5556

57+
def get_current_git_branch() -> str:
58+
try:
59+
repo = Repo(search_parent_directories=True)
60+
branch = repo.active_branch
61+
return branch.name
62+
except:
63+
return ""
64+
65+
5666
def get_latest_bulletin() -> str:
5767
exists = os.path.exists("CURRENT_BULLETIN.md")
5868
current_bulletin = ""

0 commit comments

Comments
 (0)