cartesia-line 0.0.1__py3-none-any.whl → 0.0.2__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 cartesia-line might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cartesia-line
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: Cartesia Voice Agents SDK
5
5
  Requires-Python: >=3.9
6
6
  License-File: LICENSE
@@ -1,4 +1,4 @@
1
- cartesia_line-0.0.1.dist-info/licenses/LICENSE,sha256=ElpXuEGJlZ5XPeLe_tLbAmiEVE79EGxdy-aMw3JxE_Y,11347
1
+ cartesia_line-0.0.2.dist-info/licenses/LICENSE,sha256=ElpXuEGJlZ5XPeLe_tLbAmiEVE79EGxdy-aMw3JxE_Y,11347
2
2
  line/__init__.py,sha256=glA0fvCL2xBmgC1cXZbiv6wcXS-yod7ctcL3EnoeEIk,790
3
3
  line/bridge.py,sha256=53N5UizGKjrb6iR27OQbTtjgQZ-rNLjEJT0HqQiLa-M,14216
4
4
  line/bus.py,sha256=AGMwHCNftVeWDzl0o1Jd2iDm51q1FTBEOlJzGZLub1Q,14324
@@ -8,7 +8,7 @@ line/harness.py,sha256=_4TJV3J2Sxdhz5JSuWXlthZLNmhfNlddHANzOLGjtec,8620
8
8
  line/harness_types.py,sha256=Lwu1n2fAA5o-b_PjLWDSMu4G-GYEpb3X1CAUy3pvelk,2214
9
9
  line/routes.py,sha256=jR_bl96ujx5MYzdVb9YLkcAITCboosM9UM7f4Et9eBc,24446
10
10
  line/user_bridge.py,sha256=etnvSMALCDB7JOguW0imd41RSH3sHJ-oBHH2Hr7kSeQ,7620
11
- line/voice_agent_app.py,sha256=1i-eIeZ3ZM8HHUjDn-WXpqAVfskhhRuESyHQA3AGlAQ,5448
11
+ line/voice_agent_app.py,sha256=xlhtc9ZER2v5hOOWHz9W8e9jALlMAz_OvEcJL5QCNsQ,5421
12
12
  line/voice_agent_system.py,sha256=8yywrjKdO43s7UkKqIs0jqte27vOF96NYnuGILsJz7k,8002
13
13
  line/nodes/__init__.py,sha256=Rp-9gxMZ4hCTjbm6zaiTTBz6lg9d32UwxJgWTJfhnZU,128
14
14
  line/nodes/base.py,sha256=HKfv_j3H-E-cwhtK9La1DUNmYdtbGUNeo-c51TGIQKM,1897
@@ -21,7 +21,7 @@ line/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  line/utils/aio.py,sha256=l1YgZ8tf1KtOyq6A-6RA_kE-FKGafDfHERFnDx0-PxM,1899
22
22
  line/utils/gemini_utils.py,sha256=6YNyU3-I6Kn95j0qMroelO1WpjIPjIwhiub2lX34-kY,5396
23
23
  line/utils/openai_utils.py,sha256=I9nIpHTFC98ChWzRmV-enMSIcicRVF9KYjifsWkoPCE,3596
24
- cartesia_line-0.0.1.dist-info/METADATA,sha256=sMqD3NiPCOoNfVvbq6_vkllIZmltvvHoY8eoATWc9dA,872
25
- cartesia_line-0.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
26
- cartesia_line-0.0.1.dist-info/top_level.txt,sha256=xztzr4hR6ekbxrTcEufazgor-5McHQuLNu82cxn1jNE,5
27
- cartesia_line-0.0.1.dist-info/RECORD,,
24
+ cartesia_line-0.0.2.dist-info/METADATA,sha256=1hHBtRPLWLLSfofr4h1tYP1Iw-0gD6_OEAHZeaoQwRw,872
25
+ cartesia_line-0.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
26
+ cartesia_line-0.0.2.dist-info/top_level.txt,sha256=xztzr4hR6ekbxrTcEufazgor-5McHQuLNu82cxn1jNE,5
27
+ cartesia_line-0.0.2.dist-info/RECORD,,
line/voice_agent_app.py CHANGED
@@ -1,12 +1,12 @@
1
1
  from datetime import datetime, timezone
2
2
  import json
3
- import logging
4
3
  import os
5
4
  from typing import Awaitable, Callable, Optional
6
5
  from urllib.parse import urlencode
7
6
 
8
7
  from dotenv import load_dotenv
9
8
  from fastapi import FastAPI, HTTPException, Request, WebSocket, WebSocketDisconnect
9
+ from loguru import logger
10
10
  import uvicorn
11
11
 
12
12
  from line.call_request import CallRequest, PreCallResult
@@ -15,8 +15,6 @@ from line.voice_agent_system import VoiceAgentSystem
15
15
  # Load environment variables from .env file
16
16
  load_dotenv()
17
17
 
18
- logger = logging.getLogger(__name__)
19
-
20
18
 
21
19
  class VoiceAgentApp:
22
20
  """