forked from Josh-XT/AGiXT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.py
229 lines (214 loc) · 8.4 KB
/
start.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
import re
import os
import subprocess
import platform
from dotenv import load_dotenv
import socket
import json
try:
import win32com.client as wim
except ImportError:
wim = None
def run_shell_command(command):
result = subprocess.run(
command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True
)
return result.stdout
def is_docker_installed():
try:
subprocess.run(["docker", "--version"], check=True, stdout=subprocess.DEVNULL)
return True
except subprocess.CalledProcessError:
return False
def get_local_ip():
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
try:
s.connect(("8.8.8.8", 80))
ip = s.getsockname()[0]
finally:
s.close()
return ip
def prompt_user(prompt, default=None):
if default:
user_input = input(f"{prompt} (default: {default}): ").strip()
else:
user_input = input(f"{prompt}: ").strip()
return user_input if user_input else default
def start_ezlocalai():
load_dotenv()
uri = os.getenv("EZLOCALAI_URI", f"http://{get_local_ip()}:8091")
api_key = os.getenv("AGIXT_API_KEY", "")
nvidia_gpu = False
if not os.path.exists("ezlocalai"):
run_shell_command("git clone https://github.com/DevXT-LLC/ezlocalai ezlocalai")
else:
run_shell_command("cd ezlocalai && git pull && cd ..")
with open("ezlocalai/.env", "r") as file:
lines = file.readlines()
with open("ezlocalai/.env", "w") as file:
for line in lines:
if line.startswith("EZLOCALAI_API_KEY="):
file.write(f"EZLOCALAI_API_KEY={api_key}\n")
elif line.startswith("EZLOCALAI_URI="):
file.write(f"EZLOCALAI_URI={uri}\n")
else:
file.write(line)
if platform.system() == "Windows":
wmi = wim.GetObject("winmgmts:")
for video_controller in wmi.InstancesOf("Win32_VideoController"):
if "NVIDIA" in video_controller.Name:
nvidia_gpu = True
elif platform.system() == "Linux":
cmd = "lspci | grep 'VGA' | grep 'NVIDIA'"
result = subprocess.run(cmd, shell=True, capture_output=True, text=True)
gpu_name_match = re.search(r"NVIDIA\s+([^:]+)", result.stdout)
if gpu_name_match:
nvidia_gpu = True
if nvidia_gpu:
run_shell_command(
"cd ezlocalai && docker-compose -f docker-compose-cuda.yml down && docker-compose -f docker-compose-cuda.yml build && docker-compose -f docker-compose-cuda.yml up -d"
)
else:
run_shell_command(
"cd ezlocalai && docker-compose down && docker-compose build && docker-compose up -d"
)
if not is_docker_installed():
print("Docker is not installed. Please install Docker and try again.")
exit(1)
print("\033[1m\033[96m")
print(" ___ _______ _ ________")
print(" / | / ____(_) |/ /_ __/")
print(" / /| |/ / __/ /| / / / ")
print(" / ___ / /_/ / // | / / ")
print("/_/ |_\____/_//_/|_|/_/ ")
print(" ")
print("----------------------------------------------------\033[0m")
print("\033[1m\033[95mVisit our documentation at https://AGiXT.com \033[0m")
if not os.path.isfile(".env"):
print("\033[1m\033[95mWelcome to the AGiXT Environment Setup!\033[0m")
local_ip = get_local_ip()
api_key = prompt_user("Set your AGiXT API key", "None")
agixt_uri = prompt_user(
"Set your AGiXT URI (This does not change the port)", f"http://{local_ip}:7437"
)
if api_key.lower() == "none":
api_key = ""
with open(".env", "w") as env_file:
env_file.write(f"AGIXT_URI={agixt_uri}\n")
env_file.write(f"AGIXT_API_KEY={api_key}\n")
env_file.write("UVICORN_WORKERS=10\n")
load_dotenv()
use_ezlocalai = os.getenv("USE_EZLOCALAI", None)
if use_ezlocalai == None:
# Ask user if they want to use ezLocalai
use_ezlocalai = prompt_user(
"Would you like to use ezLocalai to run local models? (Y/N)", "Yes"
)
if use_ezlocalai.lower() in ["y", "yes"]:
use_ezlocalai = True
with open(".env", "a") as env_file:
env_file.write("USE_EZLOCALAI=true\n")
if not os.path.exists("ezlocalai"):
run_shell_command(
"git clone https://github.com/DevXT-LLC/ezlocalai ezlocalai"
)
else:
run_shell_command("cd ezlocalai && git pull && cd ..")
ezlocalai_uri = prompt_user("Set your ezLocalai URI", f"http://{local_ip}:8091")
default_llm = prompt_user("Default LLM to use", "Mistral-7B-Instruct-v0.2")
default_vlm = prompt_user(
"Use vision model? Enter model from Hugging Face or 'None' for no vision model",
"deepseek-ai/deepseek-vl-1.3b-chat",
)
if default_vlm.lower() == "none":
default_vlm = ""
img_enabled = prompt_user("Enable image generation? (Y/N)", "No")
if img_enabled.lower() in ["y", "yes"]:
img_enabled = True
else:
img_enabled = False
with open(".env", "a") as env_file:
env_file.write("USE_EZLOCALAI=true\n")
with open("ezlocalai/.env", "w") as env_file:
env_file.write(f"EZLOCALAI_URI={ezlocalai_uri}\n")
env_file.write(f"DEFAULT_LLM={default_llm}\n")
env_file.write(f"DEFAULT_VLM={default_vlm}\n")
env_file.write(f"IMG_ENABLED={img_enabled}\n")
# Create a default ezlocalai agent that will work with AGiXT out of the box
ezlocalai_agent_settings = {
"commands": {},
"settings": {
"provider": "ezlocalai",
"tts_provider": "ezlocalai",
"transcription_provider": "ezlocalai",
"translation_provider": "ezlocalai",
"embeddings_provider": "default",
"image_provider": "ezlocalai" if img_enabled else "default",
"EZLOCALAI_API_KEY": api_key,
"AI_MODEL": "Mistral-7B-Instruct-v0.2",
"API_URI": f"{ezlocalai_uri}/v1/",
"MAX_TOKENS": "4096",
"AI_TEMPERATURE": 0.5,
"AI_TOP_P": 0.9,
"SYSTEM_MESSAGE": "",
"VOICE": "HAL9000",
"mode": "prompt",
"prompt_category": "Default",
"prompt_name": "Chat",
"helper_agent_name": "AGiXT",
"WEBSEARCH_TIMEOUT": 0,
"WAIT_BETWEEN_REQUESTS": 1,
"WAIT_AFTER_FAILURE": 3,
"WORKING_DIRECTORY": "./WORKSPACE",
"WORKING_DIRECTORY_RESTRICTED": True,
"AUTONOMOUS_EXECUTION": True,
"PERSONA": "",
},
}
os.makedirs("agixt/agents/AGiXT", exist_ok=True)
with open("agixt/agents/AGiXT/config.json", "w") as file:
file.write(json.dumps(ezlocalai_agent_settings, indent=4))
else:
use_ezlocalai = False
env_file = open(".env", "a")
env_file.write("USE_EZLOCALAI=false\n")
env_file.close()
else:
use_ezlocalai = use_ezlocalai.lower() == "true"
print("\033[1m\033[95mWelcome to the AGiXT! \033[0m")
ops = prompt_user(
f"""Choose from the following options:
1. Start AGiXT {'and ezLocalai ' if use_ezlocalai else ''}(Stable)
2. Start AGiXT {'and ezLocalai ' if use_ezlocalai else ''}(Development)
3. Exit
Choose an option"""
)
if ops == "1":
print("Starting, please wait...")
if use_ezlocalai:
start_ezlocalai()
print(
f"ezLocalai started. It may take a few minutes for the server to become available at {os.getenv('EZLOCALAI_URI')}"
)
run_shell_command(
"docker-compose down && docker-compose pull && docker-compose up -d"
)
print(
f"AGiXT started. It may take a few minutes for the server to become available at {os.getenv('AGIXT_URI')}"
)
elif ops == "2":
print("Starting, please wait...")
if use_ezlocalai:
start_ezlocalai()
print(
f"ezLocalai started. It may take a few minutes for the server to become available at {os.getenv('EZLOCALAI_URI')}"
)
run_shell_command(
"docker-compose -f docker-compose-dev.yml down && docker-compose -f docker-compose-dev.yml pull && docker-compose -f docker-compose-dev.yml up -d"
)
print(
f"AGiXT started. It may take a few minutes for the server to become available at {os.getenv('AGIXT_URI')}"
)
else:
print("Exiting...")
exit(1)