Skip to content

Commit

Permalink
Merge branch 'master' into fix-conda-not-found
Browse files Browse the repository at this point in the history
  • Loading branch information
lunamidori5 committed Nov 26, 2023
2 parents 7bd476d + 9482acf commit 39b0d7c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ GOLLAMA_VERSION?=aeba71ee842819da681ea537e78846dc75949ac0

GOLLAMA_STABLE_VERSION?=50cee7712066d9e38306eccadcfbb44ea87df4b7

CPPLLAMA_VERSION?=e9c13ff78114af6fc6a4f27cc8dcdda0f3d389fb
CPPLLAMA_VERSION?=f837c3a992b2b6146936cb120871a8cf9d0e3857

# gpt4all version
GPT4ALL_REPO?=https://github.com/nomic-ai/gpt4all
Expand Down
2 changes: 1 addition & 1 deletion backend/python/transformers/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ source activate transformers
# get the directory where the bash script is located
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"

python $DIR/transformers.py $@
python $DIR/transformers_server.py $@
2 changes: 1 addition & 1 deletion backend/python/transformers/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ source activate transformers
# get the directory where the bash script is located
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"

python -m unittest $DIR/test_transformers.py
python -m unittest $DIR/test_transformers_server.py
2 changes: 1 addition & 1 deletion backend/python/transformers/test_transformers.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def setUp(self):
"""
This method sets up the gRPC service by starting the server
"""
self.service = subprocess.Popen(["python3", "transformers.py", "--addr", "localhost:50051"])
self.service = subprocess.Popen(["python3", "transformers_server.py", "--addr", "localhost:50051"])

def tearDown(self) -> None:
"""
Expand Down
File renamed without changes.

0 comments on commit 39b0d7c

Please sign in to comment.