livekit-plugins-avatartalk 1.0.1__tar.gz
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.
- livekit_plugins_avatartalk-1.0.1/.gitignore +179 -0
- livekit_plugins_avatartalk-1.0.1/PKG-INFO +31 -0
- livekit_plugins_avatartalk-1.0.1/README.md +6 -0
- livekit_plugins_avatartalk-1.0.1/livekit/plugins/avatartalk/__init__.py +40 -0
- livekit_plugins_avatartalk-1.0.1/livekit/plugins/avatartalk/api.py +68 -0
- livekit_plugins_avatartalk-1.0.1/livekit/plugins/avatartalk/avatar.py +154 -0
- livekit_plugins_avatartalk-1.0.1/livekit/plugins/avatartalk/log.py +3 -0
- livekit_plugins_avatartalk-1.0.1/livekit/plugins/avatartalk/py.typed +0 -0
- livekit_plugins_avatartalk-1.0.1/livekit/plugins/avatartalk/version.py +15 -0
- livekit_plugins_avatartalk-1.0.1/pyproject.toml +41 -0
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
**/.vscode
|
|
2
|
+
**/.DS_Store
|
|
3
|
+
|
|
4
|
+
# Byte-compiled / optimized / DLL files
|
|
5
|
+
__pycache__/
|
|
6
|
+
*.py[cod]
|
|
7
|
+
*$py.class
|
|
8
|
+
|
|
9
|
+
# C extensions
|
|
10
|
+
*.so
|
|
11
|
+
|
|
12
|
+
# Distribution / packaging
|
|
13
|
+
.Python
|
|
14
|
+
build/
|
|
15
|
+
develop-eggs/
|
|
16
|
+
dist/
|
|
17
|
+
downloads/
|
|
18
|
+
eggs/
|
|
19
|
+
.eggs/
|
|
20
|
+
lib/
|
|
21
|
+
lib64/
|
|
22
|
+
parts/
|
|
23
|
+
sdist/
|
|
24
|
+
var/
|
|
25
|
+
wheels/
|
|
26
|
+
share/python-wheels/
|
|
27
|
+
*.egg-info/
|
|
28
|
+
.installed.cfg
|
|
29
|
+
*.egg
|
|
30
|
+
MANIFEST
|
|
31
|
+
|
|
32
|
+
# PyInstaller
|
|
33
|
+
# Usually these files are written by a python script from a template
|
|
34
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
35
|
+
*.manifest
|
|
36
|
+
*.spec
|
|
37
|
+
|
|
38
|
+
# Installer logs
|
|
39
|
+
pip-log.txt
|
|
40
|
+
pip-delete-this-directory.txt
|
|
41
|
+
|
|
42
|
+
# Unit test / coverage reports
|
|
43
|
+
htmlcov/
|
|
44
|
+
.tox/
|
|
45
|
+
.nox/
|
|
46
|
+
.coverage
|
|
47
|
+
.coverage.*
|
|
48
|
+
.cache
|
|
49
|
+
nosetests.xml
|
|
50
|
+
coverage.xml
|
|
51
|
+
*.cover
|
|
52
|
+
*.py,cover
|
|
53
|
+
.hypothesis/
|
|
54
|
+
.pytest_cache/
|
|
55
|
+
cover/
|
|
56
|
+
|
|
57
|
+
# Translations
|
|
58
|
+
*.mo
|
|
59
|
+
*.pot
|
|
60
|
+
|
|
61
|
+
# Django stuff:
|
|
62
|
+
*.log
|
|
63
|
+
local_settings.py
|
|
64
|
+
db.sqlite3
|
|
65
|
+
db.sqlite3-journal
|
|
66
|
+
|
|
67
|
+
# Flask stuff:
|
|
68
|
+
instance/
|
|
69
|
+
.webassets-cache
|
|
70
|
+
|
|
71
|
+
# Scrapy stuff:
|
|
72
|
+
.scrapy
|
|
73
|
+
|
|
74
|
+
# Sphinx documentation
|
|
75
|
+
docs/_build/
|
|
76
|
+
|
|
77
|
+
# PyBuilder
|
|
78
|
+
.pybuilder/
|
|
79
|
+
target/
|
|
80
|
+
|
|
81
|
+
# Jupyter Notebook
|
|
82
|
+
.ipynb_checkpoints
|
|
83
|
+
|
|
84
|
+
# IPython
|
|
85
|
+
profile_default/
|
|
86
|
+
ipython_config.py
|
|
87
|
+
|
|
88
|
+
# pyenv
|
|
89
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
90
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
91
|
+
# .python-version
|
|
92
|
+
|
|
93
|
+
# pipenv
|
|
94
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
95
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
96
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
97
|
+
# install all needed dependencies.
|
|
98
|
+
#Pipfile.lock
|
|
99
|
+
|
|
100
|
+
# poetry
|
|
101
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
102
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
103
|
+
# commonly ignored for libraries.
|
|
104
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
105
|
+
#poetry.lock
|
|
106
|
+
|
|
107
|
+
# pdm
|
|
108
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
109
|
+
#pdm.lock
|
|
110
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
111
|
+
# in version control.
|
|
112
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
113
|
+
.pdm.toml
|
|
114
|
+
|
|
115
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
116
|
+
__pypackages__/
|
|
117
|
+
|
|
118
|
+
# Celery stuff
|
|
119
|
+
celerybeat-schedule
|
|
120
|
+
celerybeat.pid
|
|
121
|
+
|
|
122
|
+
# SageMath parsed files
|
|
123
|
+
*.sage.py
|
|
124
|
+
|
|
125
|
+
# Environments
|
|
126
|
+
.env
|
|
127
|
+
.venv
|
|
128
|
+
env/
|
|
129
|
+
venv/
|
|
130
|
+
ENV/
|
|
131
|
+
env.bak/
|
|
132
|
+
venv.bak/
|
|
133
|
+
|
|
134
|
+
# Spyder project settings
|
|
135
|
+
.spyderproject
|
|
136
|
+
.spyproject
|
|
137
|
+
|
|
138
|
+
# Rope project settings
|
|
139
|
+
.ropeproject
|
|
140
|
+
|
|
141
|
+
# mkdocs documentation
|
|
142
|
+
/site
|
|
143
|
+
|
|
144
|
+
# mypy
|
|
145
|
+
.mypy_cache/
|
|
146
|
+
.dmypy.json
|
|
147
|
+
dmypy.json
|
|
148
|
+
|
|
149
|
+
# trunk
|
|
150
|
+
.trunk/
|
|
151
|
+
|
|
152
|
+
# Pyre type checker
|
|
153
|
+
.pyre/
|
|
154
|
+
|
|
155
|
+
# pytype static type analyzer
|
|
156
|
+
.pytype/
|
|
157
|
+
|
|
158
|
+
# Cython debug symbols
|
|
159
|
+
cython_debug/
|
|
160
|
+
|
|
161
|
+
# PyCharm
|
|
162
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
163
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
164
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
165
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
166
|
+
.idea/
|
|
167
|
+
|
|
168
|
+
node_modules
|
|
169
|
+
|
|
170
|
+
credentials.json
|
|
171
|
+
pyrightconfig.json
|
|
172
|
+
docs/
|
|
173
|
+
|
|
174
|
+
# Database files
|
|
175
|
+
*.db
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
# Examples for development
|
|
179
|
+
examples/dev/*
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: livekit-plugins-avatartalk
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary: Agent Framework plugin for AvatarTalk
|
|
5
|
+
Project-URL: Documentation, https://docs.livekit.io
|
|
6
|
+
Project-URL: Website, https://livekit.io/
|
|
7
|
+
Project-URL: Source, https://github.com/livekit/agents
|
|
8
|
+
Author-email: LiveKit <support@livekit.io>
|
|
9
|
+
License-Expression: Apache-2.0
|
|
10
|
+
Keywords: audio,livekit,realtime,video,webrtc
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Multimedia :: Sound/Audio
|
|
20
|
+
Classifier: Topic :: Multimedia :: Video
|
|
21
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
22
|
+
Requires-Python: >=3.9.0
|
|
23
|
+
Requires-Dist: livekit-agents>=1.3.1
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
|
|
26
|
+
# AvatarTalk virtual avatar plugin for LiveKit Agents
|
|
27
|
+
|
|
28
|
+
Support for the [AvatarTalk](https://avatartalk.ai/) virtual avatar.
|
|
29
|
+
|
|
30
|
+
See [https://docs.livekit.io/agents/integrations/avatar/avatartalk/](https://docs.livekit.io/agents/integrations/avatar/avatartalk/) for more information.
|
|
31
|
+
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# AvatarTalk virtual avatar plugin for LiveKit Agents
|
|
2
|
+
|
|
3
|
+
Support for the [AvatarTalk](https://avatartalk.ai/) virtual avatar.
|
|
4
|
+
|
|
5
|
+
See [https://docs.livekit.io/agents/integrations/avatar/avatartalk/](https://docs.livekit.io/agents/integrations/avatar/avatartalk/) for more information.
|
|
6
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Copyright 2025 LiveKit, Inc.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
"""AvatarTalk virtual avatar plugin for LiveKit Agents
|
|
16
|
+
|
|
17
|
+
See https://docs.livekit.io/agents/integrations/avatar/avatartalk/ for more information.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
from .api import AvatarTalkException
|
|
21
|
+
from .avatar import AvatarSession
|
|
22
|
+
from .version import __version__
|
|
23
|
+
|
|
24
|
+
__all__ = [
|
|
25
|
+
"AvatarTalkException",
|
|
26
|
+
"AvatarSession",
|
|
27
|
+
"__version__",
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
from livekit.agents import Plugin
|
|
31
|
+
|
|
32
|
+
from .log import logger
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
class AvatarTalkPlugin(Plugin):
|
|
36
|
+
def __init__(self) -> None:
|
|
37
|
+
super().__init__(__name__, __version__, __package__, logger)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
Plugin.register_plugin(AvatarTalkPlugin())
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import logging
|
|
2
|
+
import os
|
|
3
|
+
from typing import Any
|
|
4
|
+
|
|
5
|
+
import aiohttp
|
|
6
|
+
|
|
7
|
+
from livekit.agents import NOT_GIVEN, NotGivenOr
|
|
8
|
+
|
|
9
|
+
logger = logging.getLogger(__name__)
|
|
10
|
+
|
|
11
|
+
DEFAULT_API_URL = "https://api.avatartalk.ai"
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class AvatarTalkException(Exception):
|
|
15
|
+
"""Exception for AvatarTalkAPI errors"""
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class AvatarTalkAPI:
|
|
19
|
+
def __init__(
|
|
20
|
+
self,
|
|
21
|
+
api_url: NotGivenOr[str] = NOT_GIVEN,
|
|
22
|
+
api_key: NotGivenOr[str] = NOT_GIVEN,
|
|
23
|
+
):
|
|
24
|
+
self._api_url = api_url or DEFAULT_API_URL
|
|
25
|
+
avatartalk_api_key = api_key or os.getenv("AVATARTALK_API_KEY")
|
|
26
|
+
if avatartalk_api_key is None:
|
|
27
|
+
raise AvatarTalkException("AVATARTALK_API_KEY must be set")
|
|
28
|
+
|
|
29
|
+
self._api_key = avatartalk_api_key
|
|
30
|
+
self._headers = {"Authorization": f"Bearer {self._api_key}"}
|
|
31
|
+
|
|
32
|
+
async def _request(self, method: str, path: str, **kwargs):
|
|
33
|
+
async with aiohttp.ClientSession() as session:
|
|
34
|
+
async with session.request(
|
|
35
|
+
method, f"{self._api_url}{path}", headers=self._headers, **kwargs
|
|
36
|
+
) as response:
|
|
37
|
+
if response.ok:
|
|
38
|
+
return await response.json()
|
|
39
|
+
else:
|
|
40
|
+
r = await response.json()
|
|
41
|
+
raise AvatarTalkException(f"API request failed: {response.status} {r}")
|
|
42
|
+
|
|
43
|
+
async def start_session(
|
|
44
|
+
self,
|
|
45
|
+
livekit_url: str,
|
|
46
|
+
avatar: str,
|
|
47
|
+
emotion: str,
|
|
48
|
+
room_name: str,
|
|
49
|
+
livekit_listener_token: str,
|
|
50
|
+
livekit_room_token: str,
|
|
51
|
+
agent_identity: str,
|
|
52
|
+
) -> dict[str, Any]:
|
|
53
|
+
return await self._request(
|
|
54
|
+
"POST",
|
|
55
|
+
"/livekit/create-session",
|
|
56
|
+
json={
|
|
57
|
+
"livekit_url": livekit_url,
|
|
58
|
+
"avatar": avatar,
|
|
59
|
+
"emotion": emotion,
|
|
60
|
+
"room_name": room_name,
|
|
61
|
+
"room_token": livekit_room_token,
|
|
62
|
+
"listener_token": livekit_listener_token,
|
|
63
|
+
"agent_identity": agent_identity,
|
|
64
|
+
},
|
|
65
|
+
)
|
|
66
|
+
|
|
67
|
+
async def stop_session(self, task_id: str) -> dict[str, Any]:
|
|
68
|
+
return await self._request("DELETE", f"/livekit/delete-session/{task_id}")
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
import os
|
|
2
|
+
from typing import Optional
|
|
3
|
+
|
|
4
|
+
from livekit import api, rtc
|
|
5
|
+
from livekit.agents import NOT_GIVEN, AgentSession, NotGivenOr, get_job_context
|
|
6
|
+
from livekit.agents.types import ATTRIBUTE_PUBLISH_ON_BEHALF
|
|
7
|
+
from livekit.agents.voice.avatar import DataStreamAudioOutput
|
|
8
|
+
|
|
9
|
+
from .api import AvatarTalkAPI, AvatarTalkException
|
|
10
|
+
from .log import logger
|
|
11
|
+
|
|
12
|
+
_AVATAR_AGENT_IDENTITY = "avatartalk-agent"
|
|
13
|
+
_AVATAR_AGENT_NAME = "avatartalk-agent"
|
|
14
|
+
DEFAULT_AVATAR_NAME = "japanese_man"
|
|
15
|
+
DEFAULT_AVATAR_EMOTION = "expressive"
|
|
16
|
+
SAMPLE_RATE = 16000
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class AvatarSession:
|
|
20
|
+
"""AvatarTalkAPI avatar session"""
|
|
21
|
+
|
|
22
|
+
def __init__(
|
|
23
|
+
self,
|
|
24
|
+
*,
|
|
25
|
+
api_url: NotGivenOr[str] = NOT_GIVEN,
|
|
26
|
+
api_secret: NotGivenOr[str] = NOT_GIVEN,
|
|
27
|
+
avatar: NotGivenOr[str | None] = NOT_GIVEN,
|
|
28
|
+
emotion: NotGivenOr[str | None] = NOT_GIVEN,
|
|
29
|
+
avatar_participant_identity: NotGivenOr[str | None] = NOT_GIVEN,
|
|
30
|
+
avatar_participant_name: NotGivenOr[str | None] = NOT_GIVEN,
|
|
31
|
+
):
|
|
32
|
+
self._avatartalk_api = AvatarTalkAPI(api_url, api_secret)
|
|
33
|
+
self._avatar = avatar or (os.getenv("AVATARTALK_AVATAR") or DEFAULT_AVATAR_NAME)
|
|
34
|
+
self._emotion = emotion or (os.getenv("AVATARTALK_EMOTION") or DEFAULT_AVATAR_EMOTION)
|
|
35
|
+
self._avatar_participant_identity = avatar_participant_identity or _AVATAR_AGENT_IDENTITY
|
|
36
|
+
self._avatar_participant_name = avatar_participant_name or _AVATAR_AGENT_NAME
|
|
37
|
+
self._agent_track = None
|
|
38
|
+
|
|
39
|
+
def __generate_lk_token(
|
|
40
|
+
self,
|
|
41
|
+
livekit_api_key: str,
|
|
42
|
+
livekit_api_secret: str,
|
|
43
|
+
room: rtc.Room,
|
|
44
|
+
participant_identity: str,
|
|
45
|
+
participant_name: str,
|
|
46
|
+
as_agent: bool = True,
|
|
47
|
+
local_participant_identity: Optional[str] = None,
|
|
48
|
+
):
|
|
49
|
+
token = (
|
|
50
|
+
api.AccessToken(api_key=livekit_api_key, api_secret=livekit_api_secret)
|
|
51
|
+
.with_identity(participant_identity)
|
|
52
|
+
.with_name(participant_name)
|
|
53
|
+
.with_grants(api.VideoGrants(room_join=True, room=room.name))
|
|
54
|
+
.with_attributes({ATTRIBUTE_PUBLISH_ON_BEHALF: local_participant_identity})
|
|
55
|
+
)
|
|
56
|
+
if as_agent:
|
|
57
|
+
token = token.with_kind("agent")
|
|
58
|
+
|
|
59
|
+
if local_participant_identity is not None:
|
|
60
|
+
token = token.with_attributes({ATTRIBUTE_PUBLISH_ON_BEHALF: local_participant_identity})
|
|
61
|
+
|
|
62
|
+
return token.to_jwt()
|
|
63
|
+
|
|
64
|
+
async def start(
|
|
65
|
+
self,
|
|
66
|
+
agent_session: AgentSession,
|
|
67
|
+
room: rtc.Room,
|
|
68
|
+
*,
|
|
69
|
+
livekit_url: NotGivenOr[str | None] = NOT_GIVEN,
|
|
70
|
+
livekit_api_key: NotGivenOr[str | None] = NOT_GIVEN,
|
|
71
|
+
livekit_api_secret: NotGivenOr[str | None] = NOT_GIVEN,
|
|
72
|
+
):
|
|
73
|
+
livekit_url = livekit_url or (os.getenv("LIVEKIT_URL") or NOT_GIVEN)
|
|
74
|
+
livekit_api_key = livekit_api_key or (os.getenv("LIVEKIT_API_KEY") or NOT_GIVEN)
|
|
75
|
+
livekit_api_secret = livekit_api_secret or (os.getenv("LIVEKIT_API_SECRET") or NOT_GIVEN)
|
|
76
|
+
if not livekit_url or not livekit_api_key or not livekit_api_secret:
|
|
77
|
+
raise AvatarTalkException(
|
|
78
|
+
"livekit_url, livekit_api_key, and livekit_api_secret must be set by arguments or environment variables"
|
|
79
|
+
)
|
|
80
|
+
|
|
81
|
+
session_task_mapping = {}
|
|
82
|
+
|
|
83
|
+
try:
|
|
84
|
+
job_ctx = get_job_context()
|
|
85
|
+
local_participant_identity = job_ctx.token_claims().identity
|
|
86
|
+
|
|
87
|
+
async def _shutdown_session():
|
|
88
|
+
if room.name not in session_task_mapping:
|
|
89
|
+
return
|
|
90
|
+
await self._avatartalk_api.stop_session(session_task_mapping[room.name])
|
|
91
|
+
|
|
92
|
+
job_ctx.add_shutdown_callback(_shutdown_session)
|
|
93
|
+
except (RuntimeError, KeyError):
|
|
94
|
+
if not room.isconnected():
|
|
95
|
+
raise AvatarTalkException(
|
|
96
|
+
"local participant identity not found in token, and room is not connected"
|
|
97
|
+
) from None
|
|
98
|
+
local_participant_identity = room.local_participant.identity
|
|
99
|
+
|
|
100
|
+
livekit_token = self.__generate_lk_token(
|
|
101
|
+
livekit_api_key,
|
|
102
|
+
livekit_api_secret,
|
|
103
|
+
room,
|
|
104
|
+
self._avatar_participant_identity,
|
|
105
|
+
self._avatar_participant_name,
|
|
106
|
+
as_agent=True,
|
|
107
|
+
local_participant_identity=local_participant_identity,
|
|
108
|
+
)
|
|
109
|
+
|
|
110
|
+
livekit_listener_token = self.__generate_lk_token(
|
|
111
|
+
livekit_api_key,
|
|
112
|
+
livekit_api_secret,
|
|
113
|
+
room,
|
|
114
|
+
"listener",
|
|
115
|
+
"listener",
|
|
116
|
+
as_agent=False,
|
|
117
|
+
local_participant_identity=None,
|
|
118
|
+
)
|
|
119
|
+
|
|
120
|
+
logger.debug(
|
|
121
|
+
"Starting Avatartalk agent session",
|
|
122
|
+
extra={"avatar": self._avatar, "room_name": room.name},
|
|
123
|
+
)
|
|
124
|
+
try:
|
|
125
|
+
resp = await self._avatartalk_api.start_session(
|
|
126
|
+
livekit_url=livekit_url,
|
|
127
|
+
avatar=self._avatar,
|
|
128
|
+
emotion=self._emotion,
|
|
129
|
+
room_name=room.name,
|
|
130
|
+
livekit_listener_token=livekit_listener_token,
|
|
131
|
+
livekit_room_token=livekit_token,
|
|
132
|
+
agent_identity=local_participant_identity,
|
|
133
|
+
)
|
|
134
|
+
|
|
135
|
+
self.conversation_id = resp["task_id"]
|
|
136
|
+
logger.debug(
|
|
137
|
+
"Avatartalk agent session started",
|
|
138
|
+
extra={
|
|
139
|
+
"avatar": self._avatar,
|
|
140
|
+
"emotion": self._emotion,
|
|
141
|
+
"room_name": room.name,
|
|
142
|
+
"task_id": self.conversation_id,
|
|
143
|
+
},
|
|
144
|
+
)
|
|
145
|
+
session_task_mapping[room.name] = self.conversation_id
|
|
146
|
+
|
|
147
|
+
agent_session.output.audio = DataStreamAudioOutput(
|
|
148
|
+
room=room,
|
|
149
|
+
destination_identity="listener",
|
|
150
|
+
sample_rate=SAMPLE_RATE,
|
|
151
|
+
# wait_remote_track=rtc.TrackKind.KIND_VIDEO,
|
|
152
|
+
)
|
|
153
|
+
except AvatarTalkException as e:
|
|
154
|
+
logger.error(e)
|
|
File without changes
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Copyright 2025 LiveKit, Inc.
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
__version__ = "1.0.1"
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "livekit-plugins-avatartalk"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
description = "Agent Framework plugin for AvatarTalk"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.9.0"
|
|
12
|
+
authors = [{ name = "LiveKit", email = "support@livekit.io" }]
|
|
13
|
+
keywords = ["webrtc", "realtime", "audio", "video", "livekit"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"License :: OSI Approved :: Apache Software License",
|
|
17
|
+
"Topic :: Multimedia :: Sound/Audio",
|
|
18
|
+
"Topic :: Multimedia :: Video",
|
|
19
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.9",
|
|
22
|
+
"Programming Language :: Python :: 3.10",
|
|
23
|
+
"Programming Language :: Python :: 3.11",
|
|
24
|
+
"Programming Language :: Python :: 3.12",
|
|
25
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
26
|
+
]
|
|
27
|
+
dependencies = ["livekit-agents>=1.3.1"]
|
|
28
|
+
|
|
29
|
+
[project.urls]
|
|
30
|
+
Documentation = "https://docs.livekit.io"
|
|
31
|
+
Website = "https://livekit.io/"
|
|
32
|
+
Source = "https://github.com/livekit/agents"
|
|
33
|
+
|
|
34
|
+
[tool.hatch.version]
|
|
35
|
+
path = "livekit/plugins/avatartalk/version.py"
|
|
36
|
+
|
|
37
|
+
[tool.hatch.build.targets.wheel]
|
|
38
|
+
packages = ["livekit"]
|
|
39
|
+
|
|
40
|
+
[tool.hatch.build.targets.sdist]
|
|
41
|
+
include = ["/livekit"]
|