-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Request
Would love to have PraisonAI listed on the Chainlit integrations page at https://docs.chainlit.io/integrations
Integration Details
- Package: chainlit-praisonai
- PyPI: https://pypi.org/project/chainlit-praisonai/
- GitHub: https://github.com/MervinPraison/chainlit-praisonai
What it does
Provides a client for integrating PraisonAI multi-agent workflows with Chainlit applications. Users can easily send queries to PraisonAI agents and display responses in the Chainlit chat interface.
Example Usage
import chainlit as cl
from chainlit_praisonai import PraisonAIClient
client = PraisonAIClient()
@cl.on_message
async def main(message: cl.Message):
response = await client.run_workflow(message.content)
await cl.Message(content=response).send()Happy to provide any additional information needed!
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request