Skip to content

Commit 935cf29

Browse files
committed
Small fixes
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
1 parent b61308e commit 935cf29

71 files changed

Lines changed: 1907 additions & 699 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

backend/python/ace-step/backend.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import backend_pb2_grpc
2121
import grpc
2222
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'common'))
23+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'common'))
2324
from grpc_auth import get_auth_interceptors
2425

2526
from acestep.inference import (

backend/python/chatterbox/backend.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
from chatterbox.mtl_tts import ChatterboxMultilingualTTS
1818
import grpc
1919
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'common'))
20+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'common'))
2021
from grpc_auth import get_auth_interceptors
2122

2223
import tempfile

backend/python/coqui/backend.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
import grpc
1818
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'common'))
19+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'common'))
1920
from grpc_auth import get_auth_interceptors
2021

2122

backend/python/diffusers/backend.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
import grpc
2525
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'common'))
26+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'common'))
2627
from grpc_auth import get_auth_interceptors
2728

2829

backend/python/faster-qwen3-tts/backend.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
import grpc
1818
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'common'))
19+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'common'))
1920
from grpc_auth import get_auth_interceptors
2021

2122

backend/python/faster-whisper/backend.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
import grpc
1717
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'common'))
18+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'common'))
1819
from grpc_auth import get_auth_interceptors
1920

2021

backend/python/fish-speech/backend.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
import grpc
2222
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'common'))
23+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'common'))
2324
from grpc_auth import get_auth_interceptors
2425

2526

backend/python/kitten-tts/backend.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
import grpc
1919
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'common'))
20+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'common'))
2021
from grpc_auth import get_auth_interceptors
2122

2223

backend/python/kokoro/backend.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
import grpc
1919
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'common'))
20+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'common'))
2021
from grpc_auth import get_auth_interceptors
2122

2223

backend/python/llama-cpp-quantization/backend.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
import grpc
2020
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'common'))
21+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'common'))
2122
from grpc_auth import get_auth_interceptors
2223

2324
import backend_pb2

0 commit comments

Comments
 (0)