lollms-client 1.6.7__py3-none-any.whl → 1.7.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of lollms-client might be problematic. Click here for more details.
- lollms_client/__init__.py +1 -1
- lollms_client/lollms_agentic.py +4 -2
- lollms_client/lollms_core.py +263 -138
- lollms_client/lollms_discussion.py +15 -2
- lollms_client/lollms_stt_binding.py +59 -3
- lollms_client/lollms_tti_binding.py +3 -1
- lollms_client/lollms_ttm_binding.py +3 -1
- lollms_client/lollms_tts_binding.py +2 -2
- lollms_client/lollms_ttv_binding.py +3 -1
- lollms_client/stt_bindings/whisper/__init__.py +20 -12
- lollms_client/stt_bindings/whispercpp/__init__.py +7 -1
- lollms_client/tti_bindings/diffusers/__init__.py +9 -10
- lollms_client/tti_bindings/diffusers/server/main.py +10 -59
- lollms_client/tti_bindings/gemini/__init__.py +4 -1
- lollms_client/tti_bindings/leonardo_ai/__init__.py +5 -2
- lollms_client/tti_bindings/lollms/__init__.py +4 -1
- lollms_client/tti_bindings/novita_ai/__init__.py +4 -1
- lollms_client/tti_bindings/openai/__init__.py +10 -11
- lollms_client/tti_bindings/stability_ai/__init__.py +4 -2
- lollms_client/ttm_bindings/audiocraft/__init__.py +7 -12
- lollms_client/ttm_bindings/beatoven_ai/__init__.py +7 -3
- lollms_client/ttm_bindings/lollms/__init__.py +4 -17
- lollms_client/ttm_bindings/replicate/__init__.py +7 -4
- lollms_client/ttm_bindings/stability_ai/__init__.py +7 -4
- lollms_client/ttm_bindings/topmediai/__init__.py +6 -3
- lollms_client/tts_bindings/bark/__init__.py +7 -10
- lollms_client/tts_bindings/piper_tts/__init__.py +7 -10
- lollms_client/tts_bindings/xtts/__init__.py +8 -8
- {lollms_client-1.6.7.dist-info → lollms_client-1.7.0.dist-info}/METADATA +1 -1
- {lollms_client-1.6.7.dist-info → lollms_client-1.7.0.dist-info}/RECORD +33 -33
- {lollms_client-1.6.7.dist-info → lollms_client-1.7.0.dist-info}/WHEEL +0 -0
- {lollms_client-1.6.7.dist-info → lollms_client-1.7.0.dist-info}/licenses/LICENSE +0 -0
- {lollms_client-1.6.7.dist-info → lollms_client-1.7.0.dist-info}/top_level.txt +0 -0
|
@@ -11,23 +11,10 @@ class LollmsTTMBinding_Impl(LollmsTTMBinding):
|
|
|
11
11
|
"""Concrete implementation of the LollmsTTMBinding for the standard LOLLMS server (Placeholder)."""
|
|
12
12
|
|
|
13
13
|
def __init__(self,
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"""
|
|
19
|
-
Initialize the LOLLMS TTM binding.
|
|
20
|
-
|
|
21
|
-
Args:
|
|
22
|
-
host_address (Optional[str]): Host address for the LOLLMS service.
|
|
23
|
-
model_name (Optional[str]): Default TTM model identifier.
|
|
24
|
-
service_key (Optional[str]): Authentication key.
|
|
25
|
-
verify_ssl_certificate (bool): Whether to verify SSL certificates.
|
|
26
|
-
"""
|
|
27
|
-
super().__init__(host_address=host_address,
|
|
28
|
-
model_name=model_name,
|
|
29
|
-
service_key=service_key,
|
|
30
|
-
verify_ssl_certificate=verify_ssl_certificate)
|
|
14
|
+
**kwargs):
|
|
15
|
+
# Prioritize 'model_name' but accept 'model' as an alias from config files.
|
|
16
|
+
if 'model' in kwargs and 'model_name' not in kwargs:
|
|
17
|
+
kwargs['model_name'] = kwargs.pop('model')
|
|
31
18
|
ASCIIColors.warning("LOLLMS TTM binding is not yet fully implemented in the client.")
|
|
32
19
|
ASCIIColors.warning("Please ensure your LOLLMS server has a TTM service running.")
|
|
33
20
|
|
|
@@ -23,12 +23,15 @@ STABILITY_AI_MODELS = [
|
|
|
23
23
|
class StabilityAITTMBinding(LollmsTTMBinding):
|
|
24
24
|
"""A Text-to-Music binding for Stability AI's Stable Audio API."""
|
|
25
25
|
|
|
26
|
-
def __init__(self,
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
def __init__(self,
|
|
27
|
+
**kwargs):
|
|
28
|
+
# Prioritize 'model_name' but accept 'model' as an alias from config files.
|
|
29
|
+
if 'model' in kwargs and 'model_name' not in kwargs:
|
|
30
|
+
kwargs['model_name'] = kwargs.pop('model')
|
|
31
|
+
self.api_key = self.config.get("api_key") or os.environ.get("STABILITY_API_KEY")
|
|
29
32
|
if not self.api_key:
|
|
30
33
|
raise ValueError("Stability AI API key is required. Please set it in the configuration or as STABILITY_API_KEY environment variable.")
|
|
31
|
-
self.model_name = self.
|
|
34
|
+
self.model_name = self.config.get("model_name", "stable-audio-2.0")
|
|
32
35
|
|
|
33
36
|
def list_models(self, **kwargs) -> List[Dict[str, str]]:
|
|
34
37
|
return STABILITY_AI_MODELS
|
|
@@ -24,12 +24,15 @@ REPLICATE_MODELS = [
|
|
|
24
24
|
class ReplicateTTMBinding(LollmsTTMBinding):
|
|
25
25
|
"""A Text-to-Music binding for models hosted on Replicate."""
|
|
26
26
|
|
|
27
|
-
def __init__(self,
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
def __init__(self,
|
|
28
|
+
**kwargs):
|
|
29
|
+
# Prioritize 'model_name' but accept 'model' as an alias from config files.
|
|
30
|
+
if 'model' in kwargs and 'model_name' not in kwargs:
|
|
31
|
+
kwargs['model_name'] = kwargs.pop('model')
|
|
32
|
+
self.api_key = self.config.get("api_key") or os.environ.get("REPLICATE_API_TOKEN")
|
|
30
33
|
if not self.api_key:
|
|
31
34
|
raise ValueError("Replicate API token is required. Please set it in config or as REPLICATE_API_TOKEN env var.")
|
|
32
|
-
self.model_version = self.
|
|
35
|
+
self.model_version = self.config.get("model_name", "meta/musicgen:b05b1dff1d8c6ac63d42422dd565e23b63869bf2d51acda751e04b5dd304535d")
|
|
33
36
|
self.base_url = "https://api.replicate.com/v1"
|
|
34
37
|
self.headers = {"Authorization": f"Token {self.api_key}", "Content-Type": "application/json"}
|
|
35
38
|
|
|
@@ -15,9 +15,12 @@ BindingName = "TopMediaiTTMBinding"
|
|
|
15
15
|
class TopMediaiTTMBinding(LollmsTTMBinding):
|
|
16
16
|
"""A Text-to-Music binding for the TopMediai API."""
|
|
17
17
|
|
|
18
|
-
def __init__(self,
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
def __init__(self,
|
|
19
|
+
**kwargs):
|
|
20
|
+
# Prioritize 'model_name' but accept 'model' as an alias from config files.
|
|
21
|
+
if 'model' in kwargs and 'model_name' not in kwargs:
|
|
22
|
+
kwargs['model_name'] = kwargs.pop('model')
|
|
23
|
+
self.api_key = self.config.get("api_key") or os.environ.get("TOPMEDIAI_API_KEY")
|
|
21
24
|
if not self.api_key:
|
|
22
25
|
raise ValueError("TopMediai API key is required. Please set it in config or as TOPMEDIAI_API_KEY env var.")
|
|
23
26
|
self.base_url = "https://api.topmediai.com/v1"
|
|
@@ -11,17 +11,14 @@ import pipmaster as pm
|
|
|
11
11
|
BindingName = "BarkClientBinding"
|
|
12
12
|
|
|
13
13
|
class BarkClientBinding(LollmsTTSBinding):
|
|
14
|
-
def __init__(self,
|
|
15
|
-
host: str = "localhost",
|
|
16
|
-
port: int = 8082,
|
|
17
|
-
auto_start_server: bool = True,
|
|
14
|
+
def __init__(self,
|
|
18
15
|
**kwargs):
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
self.host = host
|
|
23
|
-
self.port = port
|
|
24
|
-
self.auto_start_server = auto_start_server
|
|
16
|
+
# Prioritize 'model_name' but accept 'model' as an alias from config files.
|
|
17
|
+
if 'model' in kwargs and 'model_name' not in kwargs:
|
|
18
|
+
kwargs['model_name'] = kwargs.pop('model')
|
|
19
|
+
self.host = self.config.get("host", "http://localhost")
|
|
20
|
+
self.port = self.config.get("port", 9632)
|
|
21
|
+
self.auto_start_server = self.config.get("auto_start_server", True)
|
|
25
22
|
self.server_process = None
|
|
26
23
|
self.base_url = f"http://{self.host}:{self.port}"
|
|
27
24
|
|
|
@@ -11,17 +11,14 @@ import pipmaster as pm
|
|
|
11
11
|
BindingName = "PiperClientBinding"
|
|
12
12
|
|
|
13
13
|
class PiperClientBinding(LollmsTTSBinding):
|
|
14
|
-
def __init__(self,
|
|
15
|
-
host: str = "localhost",
|
|
16
|
-
port: int = 8083,
|
|
17
|
-
auto_start_server: bool = True,
|
|
14
|
+
def __init__(self,
|
|
18
15
|
**kwargs):
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
self.host = host
|
|
23
|
-
self.port = port
|
|
24
|
-
self.auto_start_server = auto_start_server
|
|
16
|
+
# Prioritize 'model_name' but accept 'model' as an alias from config files.
|
|
17
|
+
if 'model' in kwargs and 'model_name' not in kwargs:
|
|
18
|
+
kwargs['model_name'] = kwargs.pop('model')
|
|
19
|
+
self.host = self.config.get("host", "http://localhost")
|
|
20
|
+
self.port = self.config.get("port", 9632)
|
|
21
|
+
self.auto_start_server = self.config.get("auto_start_server", True)
|
|
25
22
|
self.server_process = None
|
|
26
23
|
self.base_url = f"http://{self.host}:{self.port}"
|
|
27
24
|
|
|
@@ -24,15 +24,15 @@ class XTTSClientBinding(LollmsTTSBinding):
|
|
|
24
24
|
This architecture prevents the heavy XTTS model from being loaded into memory
|
|
25
25
|
by multiple worker processes, solving potential OOM errors and speeding up TTS generation.
|
|
26
26
|
"""
|
|
27
|
-
def __init__(self,
|
|
27
|
+
def __init__(self,
|
|
28
28
|
**kwargs):
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
# Prioritize 'model_name' but accept 'model' as an alias from config files.
|
|
30
|
+
if 'model' in kwargs and 'model_name' not in kwargs:
|
|
31
|
+
kwargs['model_name'] = kwargs.pop('model')
|
|
32
32
|
|
|
33
33
|
self.config = kwargs
|
|
34
34
|
self.host = kwargs.get("host", "localhost")
|
|
35
|
-
self.port = kwargs.get("port",
|
|
35
|
+
self.port = kwargs.get("port", 9633)
|
|
36
36
|
self.auto_start_server = kwargs.get("auto_start_server", True)
|
|
37
37
|
self.server_process = None
|
|
38
38
|
self.base_url = f"http://{self.host}:{self.port}"
|
|
@@ -69,7 +69,7 @@ class XTTSClientBinding(LollmsTTSBinding):
|
|
|
69
69
|
return
|
|
70
70
|
|
|
71
71
|
try:
|
|
72
|
-
with lock.acquire(timeout=
|
|
72
|
+
with lock.acquire(timeout=10):
|
|
73
73
|
if not self.is_server_running():
|
|
74
74
|
ASCIIColors.yellow("Lock acquired. Starting dedicated XTTS server...")
|
|
75
75
|
self.start_server()
|
|
@@ -78,7 +78,7 @@ class XTTSClientBinding(LollmsTTSBinding):
|
|
|
78
78
|
ASCIIColors.green("Server was started by another process while we waited. Connected successfully.")
|
|
79
79
|
except Timeout:
|
|
80
80
|
ASCIIColors.yellow("Could not acquire lock, another process is starting the server. Waiting...")
|
|
81
|
-
self._wait_for_server(timeout=
|
|
81
|
+
self._wait_for_server(timeout=60)
|
|
82
82
|
|
|
83
83
|
if not self.is_server_running():
|
|
84
84
|
raise RuntimeError("Failed to start or connect to the XTTS server after all attempts.")
|
|
@@ -140,7 +140,7 @@ class XTTSClientBinding(LollmsTTSBinding):
|
|
|
140
140
|
self.server_process = subprocess.Popen(command, creationflags=creationflags)
|
|
141
141
|
ASCIIColors.info("XTTS server process launched in the background.")
|
|
142
142
|
|
|
143
|
-
def _wait_for_server(self, timeout=
|
|
143
|
+
def _wait_for_server(self, timeout=10):
|
|
144
144
|
"""Waits for the server to become responsive."""
|
|
145
145
|
ASCIIColors.info("Waiting for XTTS server to become available...")
|
|
146
146
|
start_time = time.time()
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
lollms_client/__init__.py,sha256=
|
|
2
|
-
lollms_client/lollms_agentic.py,sha256=
|
|
1
|
+
lollms_client/__init__.py,sha256=qLesznihmO_JxU5KekFvaPF_8zSvf1hlnFk476Tsh18,1146
|
|
2
|
+
lollms_client/lollms_agentic.py,sha256=ljalnmeSU-sbzH19-c9TzrJ-HhEeo4mxXmpJGkXj720,14094
|
|
3
3
|
lollms_client/lollms_config.py,sha256=goEseDwDxYJf3WkYJ4IrLXwg3Tfw73CXV2Avg45M_hE,21876
|
|
4
|
-
lollms_client/lollms_core.py,sha256=
|
|
5
|
-
lollms_client/lollms_discussion.py,sha256=
|
|
4
|
+
lollms_client/lollms_core.py,sha256=PGHPu_V5rKnO-032EjgMw8M5T0SLpNOWrzSUlWKBBgE,253052
|
|
5
|
+
lollms_client/lollms_discussion.py,sha256=4uzXLqGz72xZcXEtamWGudTOR54cYwuo6k8JY37scqY,124574
|
|
6
6
|
lollms_client/lollms_js_analyzer.py,sha256=01zUvuO2F_lnUe_0NLxe1MF5aHE1hO8RZi48mNPv-aw,8361
|
|
7
7
|
lollms_client/lollms_llm_binding.py,sha256=_6d0q9g9lk8FRZ1oYnLpuqG7Y_WLyBJBn4ANdk-C8gU,25020
|
|
8
8
|
lollms_client/lollms_mcp_binding.py,sha256=psb27A23VFWDfZsR2WUbQXQxiZDW5yfOak6ZtbMfszI,10222
|
|
9
9
|
lollms_client/lollms_mcp_security.py,sha256=FhVTDhSBjksGEZnopVnjFmEF5dv7D8bBTqoaj4BiF0E,3562
|
|
10
10
|
lollms_client/lollms_personality.py,sha256=kGuFwmgA9QDLcQlLQ9sKeceMujdEo0Aw28fN5H8MpjI,8847
|
|
11
11
|
lollms_client/lollms_python_analyzer.py,sha256=7gf1fdYgXCOkPUkBAPNmr6S-66hMH4_KonOMsADASxc,10246
|
|
12
|
-
lollms_client/lollms_stt_binding.py,sha256=
|
|
13
|
-
lollms_client/lollms_tti_binding.py,sha256=
|
|
14
|
-
lollms_client/lollms_ttm_binding.py,sha256=
|
|
15
|
-
lollms_client/lollms_tts_binding.py,sha256=
|
|
16
|
-
lollms_client/lollms_ttv_binding.py,sha256=
|
|
12
|
+
lollms_client/lollms_stt_binding.py,sha256=kA8pi-VTKBPnLB_dF2rNAbffNZS9FGVhUWSCVSqRELY,7564
|
|
13
|
+
lollms_client/lollms_tti_binding.py,sha256=SZqR47uOU5HoWX23M0CGtGEk84uwXsCYBjsUp_Dj7_c,8579
|
|
14
|
+
lollms_client/lollms_ttm_binding.py,sha256=55z3niUr0B2Qz8sqv8YV2D5iDslYTF56C4nh8lrG9bQ,4226
|
|
15
|
+
lollms_client/lollms_tts_binding.py,sha256=YEGbWQOC9J_HylA8xNTpC3fE6cb3CkM9aC7PVUBvyBk,5149
|
|
16
|
+
lollms_client/lollms_ttv_binding.py,sha256=QIbUSCqLUW36Vjzc1omZbq-WnjOQUBWyNKQ680F3IZ4,4190
|
|
17
17
|
lollms_client/lollms_types.py,sha256=0iSH1QHRRD-ddBqoL9EEKJ8wWCuwDUlN_FrfbCdg7Lw,3522
|
|
18
18
|
lollms_client/lollms_utilities.py,sha256=3DAsII2X9uhRzRL-D0QlALcEdRg82y7OIL4yHVF32gY,19446
|
|
19
19
|
lollms_client/assets/models_ctx_sizes.json,sha256=jFDLW4GoT431544QXXyi9fA5tqIBmTrwaIA1_syoZ-Y,14972
|
|
@@ -49,40 +49,40 @@ lollms_client/mcp_bindings/remote_mcp/__init__.py,sha256=YpSclbNJDYVUe2W0H5Xki4g
|
|
|
49
49
|
lollms_client/mcp_bindings/standard_mcp/__init__.py,sha256=wJQofr4zS5RIS9V5_WuMMFsJxSDJgXDW3PQPX1hlx6g,31519
|
|
50
50
|
lollms_client/stt_bindings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
51
|
lollms_client/stt_bindings/lollms/__init__.py,sha256=9Vmn1sQQZKLGLe7nZnc-0LnNeSY8r9xw3pYZF-wVtPo,5889
|
|
52
|
-
lollms_client/stt_bindings/whisper/__init__.py,sha256=
|
|
53
|
-
lollms_client/stt_bindings/whispercpp/__init__.py,sha256=
|
|
52
|
+
lollms_client/stt_bindings/whisper/__init__.py,sha256=psXYMRRudgPkDG1EZzoFmuSvq53su7aQoCY3ZhUlylw,15445
|
|
53
|
+
lollms_client/stt_bindings/whispercpp/__init__.py,sha256=5YQKFy3UaN-S-HGZiFCIcuPGTJTELPgqqct1AcTqz-Q,21595
|
|
54
54
|
lollms_client/tti_bindings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
-
lollms_client/tti_bindings/diffusers/__init__.py,sha256=
|
|
56
|
-
lollms_client/tti_bindings/diffusers/server/main.py,sha256=
|
|
57
|
-
lollms_client/tti_bindings/gemini/__init__.py,sha256=
|
|
58
|
-
lollms_client/tti_bindings/leonardo_ai/__init__.py,sha256=
|
|
59
|
-
lollms_client/tti_bindings/lollms/__init__.py,sha256=
|
|
60
|
-
lollms_client/tti_bindings/novita_ai/__init__.py,sha256=
|
|
61
|
-
lollms_client/tti_bindings/openai/__init__.py,sha256=
|
|
62
|
-
lollms_client/tti_bindings/stability_ai/__init__.py,sha256=
|
|
55
|
+
lollms_client/tti_bindings/diffusers/__init__.py,sha256=RGnn5X-MKnXBYnMh6OWjeHdu68aXiquupDV2hPfWG94,17690
|
|
56
|
+
lollms_client/tti_bindings/diffusers/server/main.py,sha256=Qldk04TUV29Zjdq4Sqs86wlLaki8XwcVuwEET37JFEQ,48203
|
|
57
|
+
lollms_client/tti_bindings/gemini/__init__.py,sha256=_9MifhHOi2uNoW8vqmMIPHvjiF6fJq28Cq3Ckg309tA,13184
|
|
58
|
+
lollms_client/tti_bindings/leonardo_ai/__init__.py,sha256=rO6FFLfXFMqgirDdO2J2lelpYrhyaj_Uhu2NK-gBd7g,6075
|
|
59
|
+
lollms_client/tti_bindings/lollms/__init__.py,sha256=J_EH-A13Zj4G2pEbOjSCT9Hw4oSHGl7n6FEBBQODn20,8983
|
|
60
|
+
lollms_client/tti_bindings/novita_ai/__init__.py,sha256=qBan-YaLvzzjEmEa5_a7lAw-vKbAW-U6hOSckMMGkB8,5021
|
|
61
|
+
lollms_client/tti_bindings/openai/__init__.py,sha256=1mg2aBOUs4xvfvKgVHlFHNSmGwdFJuFkaRIlK8OjVkg,5199
|
|
62
|
+
lollms_client/tti_bindings/stability_ai/__init__.py,sha256=XpAXhSAAkktEq3L2Ju1hthk8uRWm7ZGl8U0TN3OITK0,8214
|
|
63
63
|
lollms_client/ttm_bindings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
-
lollms_client/ttm_bindings/audiocraft/__init__.py,sha256=
|
|
65
|
-
lollms_client/ttm_bindings/beatoven_ai/__init__.py,sha256=
|
|
66
|
-
lollms_client/ttm_bindings/lollms/__init__.py,sha256=
|
|
67
|
-
lollms_client/ttm_bindings/replicate/__init__.py,sha256=
|
|
68
|
-
lollms_client/ttm_bindings/stability_ai/__init__.py,sha256=
|
|
69
|
-
lollms_client/ttm_bindings/topmediai/__init__.py,sha256=
|
|
64
|
+
lollms_client/ttm_bindings/audiocraft/__init__.py,sha256=VhFSQNztJnhX0Ve8p_heA-QFpmTHGmVqR_EDRZFj0Rg,14014
|
|
65
|
+
lollms_client/ttm_bindings/beatoven_ai/__init__.py,sha256=Kztrpb0iaW7kv83HMWDKLupoV1IHuD_c_yUTFJPAyjQ,5817
|
|
66
|
+
lollms_client/ttm_bindings/lollms/__init__.py,sha256=0Ke3vE6Qx1kS16IRY0YuyMmNZ7-R5OI46gjU3SmFJzc,2472
|
|
67
|
+
lollms_client/ttm_bindings/replicate/__init__.py,sha256=KYZnnCEDpJ2p2lCiFZZtvxUePzwhHC5mU79Q1BCrRPE,5079
|
|
68
|
+
lollms_client/ttm_bindings/stability_ai/__init__.py,sha256=5IosSAUvaP7W6IMmeYFOL_cJB5NylvhovgNPLO8Xfsc,5729
|
|
69
|
+
lollms_client/ttm_bindings/topmediai/__init__.py,sha256=deABhnEi-fdlQqyRFgcbRAYFKddZ1IHThkbrP8w43RI,3863
|
|
70
70
|
lollms_client/tts_bindings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
|
-
lollms_client/tts_bindings/bark/__init__.py,sha256=
|
|
71
|
+
lollms_client/tts_bindings/bark/__init__.py,sha256=PsQ89OSxE07rWcnKKYT-RCbIrOhWKDWEHSDLZkM5gJI,4690
|
|
72
72
|
lollms_client/tts_bindings/bark/server/install_bark.py,sha256=y9VhplwOqPwCVx_ex2MzkkBKMaUtzwPiUKg93_1LJzo,2221
|
|
73
73
|
lollms_client/tts_bindings/bark/server/main.py,sha256=jUpjFzbndq4kl8KPykRHG0DdVhUjrAn2GOt6iMt-lIY,12922
|
|
74
74
|
lollms_client/tts_bindings/lollms/__init__.py,sha256=7CRlD6hK7ZfZV4jCv5QPKBtZc8QJDsYRwf0qRL-e41I,7300
|
|
75
|
-
lollms_client/tts_bindings/piper_tts/__init__.py,sha256=
|
|
75
|
+
lollms_client/tts_bindings/piper_tts/__init__.py,sha256=Atd1WmtvbJ5XJrh4R8JRr_5pZY77xlzG38WuN9Otd4Q,4900
|
|
76
76
|
lollms_client/tts_bindings/piper_tts/server/install_piper.py,sha256=g71Ne2T18wAytOPipfQ9DNeTAOD9PrII5qC-vr9DtLA,3256
|
|
77
77
|
lollms_client/tts_bindings/piper_tts/server/main.py,sha256=DMozfSR1aCbrlmOXltRFjtXhYhXajsGcNKQjsWgRwZk,17402
|
|
78
78
|
lollms_client/tts_bindings/piper_tts/server/setup_voices.py,sha256=UdHaPa5aNcw8dR-aRGkZr2OfSFFejH79lXgfwT0P3ss,1964
|
|
79
|
-
lollms_client/tts_bindings/xtts/__init__.py,sha256=
|
|
79
|
+
lollms_client/tts_bindings/xtts/__init__.py,sha256=2h28VPQR6oM4l_sHS2wJ91Ux6RXeMYFL5-saCyoU9XM,8171
|
|
80
80
|
lollms_client/tts_bindings/xtts/server/main.py,sha256=feTAX4eAo2HY6PpcDTrgRMak5AXocO7UIhKPuGuWpxY,12303
|
|
81
81
|
lollms_client/tts_bindings/xtts/server/setup_voices.py,sha256=UdHaPa5aNcw8dR-aRGkZr2OfSFFejH79lXgfwT0P3ss,1964
|
|
82
82
|
lollms_client/ttv_bindings/__init__.py,sha256=UZ8o2izQOJLQgtZ1D1cXoNST7rzqW22rL2Vufc7ddRc,3141
|
|
83
83
|
lollms_client/ttv_bindings/lollms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
84
|
-
lollms_client-1.
|
|
85
|
-
lollms_client-1.
|
|
86
|
-
lollms_client-1.
|
|
87
|
-
lollms_client-1.
|
|
88
|
-
lollms_client-1.
|
|
84
|
+
lollms_client-1.7.0.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
|
85
|
+
lollms_client-1.7.0.dist-info/METADATA,sha256=Jlq_HbADBhBobvir0FaJXrSAt7VRH84P__YNZ92ptuM,76835
|
|
86
|
+
lollms_client-1.7.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
87
|
+
lollms_client-1.7.0.dist-info/top_level.txt,sha256=Bk_kz-ri6Arwsk7YG-T5VsRorV66uVhcHGvb_g2WqgE,14
|
|
88
|
+
lollms_client-1.7.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|