Spaces:
Sleeping
Sleeping
Commit
·
0e85257
1
Parent(s):
5866751
openai version change
Browse files- app.py +14 -13
- requirements.txt +5 -2
app.py
CHANGED
@@ -1,19 +1,14 @@
|
|
1 |
# You can find this code for Chainlit python streaming here (https://docs.chainlit.io/concepts/streaming/python)
|
2 |
|
3 |
# OpenAI Chat completion
|
4 |
-
|
5 |
-
import
|
6 |
import chainlit as cl # importing chainlit for our app
|
7 |
-
from chainlit.input_widget import (
|
8 |
-
Select,
|
9 |
-
Switch,
|
10 |
-
Slider,
|
11 |
-
) # importing chainlit settings selection tools
|
12 |
from chainlit.prompt import Prompt, PromptMessage # importing prompt tools
|
13 |
from chainlit.playground.providers import ChatOpenAI # importing ChatOpenAI tools
|
|
|
14 |
|
15 |
-
|
16 |
-
# openai.api_key = "YOUR_API_KEY"
|
17 |
|
18 |
# ChatOpenAI Templates
|
19 |
system_template = """You are a helpful assistant who always speaks in a pleasant tone!
|
@@ -39,9 +34,13 @@ async def start_chat():
|
|
39 |
|
40 |
|
41 |
@cl.on_message # marks a function that should be run each time the chatbot receives a message from a user
|
42 |
-
async def main(message):
|
43 |
settings = cl.user_session.get("settings")
|
44 |
|
|
|
|
|
|
|
|
|
45 |
prompt = Prompt(
|
46 |
provider=ChatOpenAI.id,
|
47 |
messages=[
|
@@ -65,10 +64,12 @@ async def main(message):
|
|
65 |
msg = cl.Message(content="")
|
66 |
|
67 |
# Call OpenAI
|
68 |
-
async for stream_resp in await
|
69 |
messages=[m.to_openai() for m in prompt.messages], stream=True, **settings
|
70 |
):
|
71 |
-
token = stream_resp.choices[0]
|
|
|
|
|
72 |
await msg.stream_token(token)
|
73 |
|
74 |
# Update the prompt object with the completion
|
@@ -76,4 +77,4 @@ async def main(message):
|
|
76 |
msg.prompt = prompt
|
77 |
|
78 |
# Send and close the message stream
|
79 |
-
await msg.send()
|
|
|
1 |
# You can find this code for Chainlit python streaming here (https://docs.chainlit.io/concepts/streaming/python)
|
2 |
|
3 |
# OpenAI Chat completion
|
4 |
+
import os
|
5 |
+
from openai import AsyncOpenAI # importing openai for API usage
|
6 |
import chainlit as cl # importing chainlit for our app
|
|
|
|
|
|
|
|
|
|
|
7 |
from chainlit.prompt import Prompt, PromptMessage # importing prompt tools
|
8 |
from chainlit.playground.providers import ChatOpenAI # importing ChatOpenAI tools
|
9 |
+
from dotenv import load_dotenv
|
10 |
|
11 |
+
load_dotenv()
|
|
|
12 |
|
13 |
# ChatOpenAI Templates
|
14 |
system_template = """You are a helpful assistant who always speaks in a pleasant tone!
|
|
|
34 |
|
35 |
|
36 |
@cl.on_message # marks a function that should be run each time the chatbot receives a message from a user
|
37 |
+
async def main(message: cl.Message):
|
38 |
settings = cl.user_session.get("settings")
|
39 |
|
40 |
+
client = AsyncOpenAI()
|
41 |
+
|
42 |
+
print(message.content)
|
43 |
+
|
44 |
prompt = Prompt(
|
45 |
provider=ChatOpenAI.id,
|
46 |
messages=[
|
|
|
64 |
msg = cl.Message(content="")
|
65 |
|
66 |
# Call OpenAI
|
67 |
+
async for stream_resp in await client.chat.completions.create(
|
68 |
messages=[m.to_openai() for m in prompt.messages], stream=True, **settings
|
69 |
):
|
70 |
+
token = stream_resp.choices[0].delta.content
|
71 |
+
if not token:
|
72 |
+
token = ""
|
73 |
await msg.stream_token(token)
|
74 |
|
75 |
# Update the prompt object with the completion
|
|
|
77 |
msg.prompt = prompt
|
78 |
|
79 |
# Send and close the message stream
|
80 |
+
await msg.send()
|
requirements.txt
CHANGED
@@ -1,2 +1,5 @@
|
|
1 |
-
chainlit
|
2 |
-
|
|
|
|
|
|
|
|
1 |
+
chainlit==0.7.700
|
2 |
+
cohere==4.37
|
3 |
+
openai==1.3.5
|
4 |
+
tiktoken==0.5.1
|
5 |
+
python-dotenv==1.0.0
|