|
|
|
|
|
|
|
|
|
import openai |
|
import chainlit as cl |
|
from chainlit.input_widget import Select, Switch, Slider |
|
from chainlit.prompt import Prompt, PromptMessage |
|
from chainlit.playground.providers import ChatOpenAI |
|
|
|
|
|
|
|
|
|
|
|
system_template = """ |
|
You are a helpful assistant who always speaks in a pleasant tone! |
|
""" |
|
|
|
user_template = """ |
|
{input} |
|
Think through your response step by step. |
|
""" |
|
|
|
@cl.on_chat_start |
|
async def start_chat(): |
|
|
|
|
|
settings = await cl.ChatSettings( |
|
[ |
|
Select( |
|
id="Model", |
|
label="OpenAI - Model", |
|
values=["gpt-3.5-turbo", "gpt-3.5-turbo-16k"], |
|
initial_index=0, |
|
), |
|
Switch(id="Streaming", label="OpenAI - Stream Tokens", initial=True), |
|
Slider( |
|
id="Temperature", |
|
label="OpenAI - Temperature", |
|
initial=1, |
|
min=0, |
|
max=2, |
|
step=0.1, |
|
), |
|
Slider( |
|
id="Max Tokens", |
|
label="OpenAI - Max Tokens", |
|
initial=250, |
|
min=100, |
|
max=500, |
|
step=10 |
|
) |
|
] |
|
).send() |
|
|
|
@cl.on_settings_update |
|
async def setup_agent(settings): |
|
print("on_settings_update", settings) |
|
|
|
@cl.on_message |
|
async def main(message: str): |
|
|
|
prompt = Prompt( |
|
provider=ChatOpenAI.id, |
|
messages=[ |
|
PromptMessage( |
|
role="system", |
|
template=system_template, |
|
), |
|
PromptMessage( |
|
role="user", |
|
template=user_template, |
|
formatted=template.format(input=message) |
|
) |
|
], |
|
inputs = {"input" : message} |
|
) |
|
|
|
msg = cl.Message(content="") |
|
|
|
|
|
async for stream_resp in await openai.ChatCompletion.acreate( |
|
messages=[m.to_openai() for m in prompt.messages], stream=True, **settings |
|
): |
|
token = stream_resp.choices[0]["delta"].get("content", "") |
|
await msg.stream_token(token) |
|
|
|
|
|
prompt.completion = msg.content |
|
msg.prompt = prompt |
|
|
|
|
|
await msg.send() |
|
|