File tree 2 files changed +19
-1
lines changed
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ def main(
79
79
from autogpt .logs import logger
80
80
from autogpt .memory import get_memory
81
81
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
83
83
84
84
if ctx .invoked_subcommand is None :
85
85
cfg = Config ()
@@ -105,6 +105,14 @@ def main(
105
105
motd = get_latest_bulletin ()
106
106
if motd :
107
107
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
+ )
108
116
system_prompt = construct_prompt ()
109
117
# print(prompt)
110
118
# Initialize variables
Original file line number Diff line number Diff line change 3
3
import requests
4
4
import yaml
5
5
from colorama import Fore
6
+ from git import Repo
6
7
7
8
8
9
def clean_input (prompt : str = "" ):
@@ -53,6 +54,15 @@ def get_bulletin_from_web() -> str:
53
54
return ""
54
55
55
56
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
+
56
66
def get_latest_bulletin () -> str :
57
67
exists = os .path .exists ("CURRENT_BULLETIN.md" )
58
68
current_bulletin = ""
You can’t perform that action at this time.
0 commit comments