Llama Index plugin for LiveKit Agents
Project description
LiveKit Plugins Llama Index
Agent Framework plugin for using Llama Index. Currently supports Query Engine and Chat Engine.
Install
pip install livekit-plugins-llama-index
Query Engine
Query Engine is primarily used for RAG. See example voice agent
Chat Engine
Chat Engine can be used as an LLM within the framework.
# load the existing index
storage_context = StorageContext.from_defaults(persist_dir=<mydir>)
index = load_index_from_storage(storage_context)
async def entrypoint(ctx: JobContext):
...
chat_engine = index.as_chat_engine(chat_mode=ChatMode.CONTEXT)
assistant = VoicePipelineAgent(
vad=silero.VAD.load(),
stt=deepgram.STT(),
llm=llama_index.LLM(chat_engine=chat_engine),
tts=openai.TTS(),
chat_ctx=initial_ctx,
)
full example here
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file livekit_plugins_llama_index-0.2.4.tar.gz.
File metadata
- Download URL: livekit_plugins_llama_index-0.2.4.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cd8eaeea0568bc7e3741efb2419851e3dcfdc10ab4227d01a437f8b23b0bfc5
|
|
| MD5 |
e7f51091ed7d59ea9e03cbfc1e6b7ea6
|
|
| BLAKE2b-256 |
dd3707d9fa9a1847fd7536b0163f2c59acbaa55878c4a4931712f4020cdc44c3
|
File details
Details for the file livekit_plugins_llama_index-0.2.4-py3-none-any.whl.
File metadata
- Download URL: livekit_plugins_llama_index-0.2.4-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc51196098989f785524b751c06c8ed4f597312668ce656a99fe2ed8099430ac
|
|
| MD5 |
b3a832fff93db695d634885790150ef3
|
|
| BLAKE2b-256 |
2d7e10b5d6fdaec4a8f3f2704fce496e6857ce1a8fe3c7848bff6f2e34ad28b9
|