aboutsummaryrefslogtreecommitdiffstats
path: root/setup_desktop.sh
diff options
context:
space:
mode:
authorben2025-02-01 13:54:25 +0100
committerben2025-02-01 13:54:25 +0100
commitcf09067c156b581db6cde07728cce849b7a971e3 (patch)
treeee75be9ba6bffc4f923b87c327c6b401f5634037 /setup_desktop.sh
parent01f224002e91e9ba8c567dbfb20a364f13327842 (diff)
downloadai_env-cf09067c156b581db6cde07728cce849b7a971e3.tar.gz
ai_env-cf09067c156b581db6cde07728cce849b7a971e3.tar.bz2
ai_env-cf09067c156b581db6cde07728cce849b7a971e3.tar.xz
Expose OpenAI API compatibility using aichat
Diffstat (limited to 'setup_desktop.sh')
-rwxr-xr-xsetup_desktop.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup_desktop.sh b/setup_desktop.sh
index cc951af..7ef956e 100755
--- a/setup_desktop.sh
+++ b/setup_desktop.sh
@@ -7,7 +7,7 @@ cd "$SCRIPTPATH" || exit
if [[ ! -x $(command -v aichat) ]]; then
echo "aichat is not installed."
if [[ $(docker images -q aichat-build 2>/dev/null) ]]; then
- container_id=$(docker create "aichat-build")
+ container_id=$(docker create "aichat")
docker cp "${container_id}:/usr/local/cargo/bin/aichat" "./tools/"
docker rm "${container_id}"
else