Spaces:
Runtime error
Runtime error
File size: 1,318 Bytes
8733154 cec6273 8733154 56a4ec8 d948fc1 8733154 d948fc1 cec6273 8733154 |
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
import asyncio
import chainlit as cl
from chain import Chain
import os
from typing import Dict, Optional
import chainlit as cl
@cl.oauth_callback
def oauth_callback(
provider_id: str,
token: str,
raw_user_data: Dict[str, str],
default_user: cl.User,
) -> Optional[cl.User]:
return default_user
@cl.on_chat_start
async def start_chat():
app_user = cl.user_session.get("user")
print(app_user)
print(os.getenv("OAUTH_CLIENT_ID"))
print('HERE-------------------------------------------------')
chain = Chain(None)
await chain.text("I will count to 5. How many concurrent times should I count?")
@cl.on_message
async def on_message(message: str, message_id: str):
chain = Chain(message_id)
try:
num = int(message)
except ValueError:
await chain.text_stream("Sorry, that doesn't look like an integer to me.", final=True)
return
if num > 10:
await chain.text_stream("Whoa, let's try a smaller number. (Max 10.)", final=True)
return
await chain.text("Alright, here we go:")
coroutines = []
for i in range(num):
coroutines.append(chain.text_stream("1 2 3 4 5", delay=1, name=f"Counter {i + 1}"))
await asyncio.gather(*coroutines)
await chain.text_stream("Okay, I'm done counting now.", final=True)
|