Metadata-Version: 2.4
Name: livekit-plugins-xunfei
Version: 1.1.2.post0
Summary: LiveKit Agent Plugins for Xunfei
Author-email: wangmengdi <790990241@qq.com>
Keywords: audio,livekit,realtime,video,webrtc
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.9
Requires-Dist: livekit-agents>=1.1.2
Description-Content-Type: text/markdown

# LiveKit Plugins Xunfei

Agent Framework plugin for services from Xunfei. Currently supports [STT](https://console.xfyun.cn/services/rta).

## Installation
```python
pip install livekit-plugins-xunfei
```

## Pre-requisites

- XunFei STT environment variable: `XUNFEI_STT_APP_ID`, `XUNFEI_STT_API_KEY`.

## Usage


This example shows how to use the xunfei plugin to create a voice agent.

```python
from livekit.agents import Agent, AgentSession, JobContext, cli, WorkerOptions
from livekit.plugins import xunfei
from dotenv import load_dotenv


async def entry_point(ctx: JobContext):
    
    await ctx.connect()
    
    agent = Agent(instructions="You are a helpful assistant.")

    session = AgentSession(
        # app_id and api_key can be found in the xfyun console.
        stt=xunfei.STT(app_id="xxx", api_key="xxx"),
    )
    
    await session.start(agent=agent, room=ctx.room)
    
    await session.generate_reply()

if __name__ == "__main__":
    load_dotenv()
    cli.run_app(WorkerOptions(entrypoint_fnc=entry_point))
```

