Spaces:
Paused
Paused
File size: 911 Bytes
b77b218 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import chainlit as cl
from langchain.schema.runnable.config import RunnableConfig
from sql_agent import SQLAgent
# ChainLit Integration
@cl.on_chat_start
async def on_chat_start():
cl.user_session.set("agent", SQLAgent)
@cl.on_message
async def on_message(message: cl.Message):
agent = cl.user_session.get("agent") # Get the agent from the session
cb = cl.AsyncLangchainCallbackHandler(stream_final_answer=True)
config = RunnableConfig(callbacks=[cb])
async with cl.Step(name="SmartQuery Agent", root=True) as step:
step.input = message.content
result = await agent.ainvoke(message.content, config=config)
# Assuming the result is a dictionary with a key 'output' containing the final answer
final_answer = result.get('output', 'No answer returned')
# Stream the final answer as a token to the step
await step.stream_token(final_answer)
|