Moss delivers sub-10ms semantic retrieval, ensuring your Pipecat AI voice agents respond naturally without noticeable delays.
Install the package
pip install pipecat-moss- Moss project ID and project key (get them from Moss Portal)
- Deepgram, OpenAI, Cartesia API keys (to run the example)
Pipecat-Moss integrates seamlessly into a Pipecat pipeline, enabling efficient retrieval-based operations. It leverages Pipecat's modular architecture to inject semantic context for Voice AI Agents.
import os
import asyncio
from pipecat_moss import MossRetrievalService
moss_service = MossRetrievalService(
project_id=os.getenv("MOSS_PROJECT_ID"),
project_key=os.getenv("MOSS_PROJECT_KEY"),
system_prompt="Relevant passages from the Moss knowledge base:\n\n",
)
async def setup_indexes():
await moss_service.load_index(os.getenv("MOSS_INDEX_NAME"))
asyncio.run(setup_indexes())
pipeline = Pipeline([
transport.input(), # audio/user input
stt, # speech to text
context_aggregator.user(), # add user text to context
moss_service.query(os.getenv("MOSS_INDEX_NAME"), top_k=5, alpha=0.8), # retrieve relevant docs from Moss
llm, # LLM generates response
tts, # TTS synthesis
transport.output(), # stream audio back to user
context_aggregator.assistant(), # store assistant response
])setup_indexes() must be awaited before the pipeline starts so the service can load the Moss index. See examples/moss-retrieval-demo.py for a complete working example.
Tested with Pipecat v0.0.99. Please upgrade to this version (or newer) to ensure API compatibility with the snippets below.
If you are contributing or want to build from source, follow the CONTRIBUTING.md setup steps.
Create a .env file in the root directory with the following content:
MOSS_PROJECT_ID= Your Moss Project ID
MOSS_PROJECT_KEY= Your Moss Project Key
MOSS_INDEX_NAME= Your Moss Index Name
DEEPGRAM_API_KEY= Your DEEPGRAM API KEY
CARTESIA_API_KEY= Your CARTESIA API KEY
OPENAI_API_KEY= Your OpenAI KeyOr pass them directly when creating the MossRetrievalService.
Before using Moss in your pipeline, you need to create an index and populate it with documents:
python examples/moss-create-index-demo.pypython examples/moss-retrieval-demo.pyproject_id(required): Moss project ID (can use env varMOSS_PROJECT_ID)project_key(required): Moss project key (can use env varMOSS_PROJECT_KEY)system_prompt(default: "Here is additional context retrieved from database:\n\n"): Prefix added ahead of retrieved documentsload_index(index_name): Awaitable method that loads the given index before the pipeline runsquery(index_name, *, top_k=5): Returns aMossIndexProcessorfor the specified index;top_kcontrols result count,alphablends semantic vs keyword scoring (0.0 keyword-only, 1.0 semantic-only)
This integration is provided under a permissive open source license (BSD-2 or equivalent).