Skip to content

Commit

Permalink
Handle new route format
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonjchen committed Mar 11, 2024
1 parent 3edc1ec commit 6767d02
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,16 @@ predict-url-wide:
./cog/generate.sh
../cog/cog predict -i route="https://connect.comma.ai/a2a0ccea32023010/1690488163535/1690488170140" -i renderType=wide

# This is a private URL
predict-url-wide-new-format:
./cog/generate.sh
../cog/cog predict -i route="https://connect.comma.ai/fe18f736cb0d7813/1710110122129/1710110166074" -i renderType=wide

# This is a private URL
predict-url-ui-new-format:
./cog/generate.sh
../cog/cog predict -i route="https://connect.comma.ai/fe18f736cb0d7813/1710110122129/1710110166074" -i renderType=ui

predict-wide:
./cog/generate.sh
../cog/cog predict -i renderType=wide
Expand Down
6 changes: 6 additions & 0 deletions common/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ apt-get update -y && apt-get install -y \
git-lfs \
git

# Download and install libicu66 for Ubuntu jammy
# http://security.ubuntu.com/ubuntu/pool/main/i/icu/libicu66_66.1-2ubuntu2.1_amd64.deb
wget -q -O /tmp/libicu66_66.1-2ubuntu2.1_amd64.deb http://security.ubuntu.com/ubuntu/pool/main/i/icu/libicu66_66.1-2ubuntu2.1_amd64.deb
dpkg -i /tmp/libicu66_66.1-2ubuntu2.1_amd64.deb
rm -f /tmp/libicu66_66.1-2ubuntu2.1_amd64.deb

# Setup git lfs
git lfs install

Expand Down

0 comments on commit 6767d02

Please sign in to comment.