-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchat_async.py
36 lines (26 loc) · 946 Bytes
/
chat_async.py
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
# Copyright EinStack
# SPDX-License-Identifier: APACHE-2.0
import asyncio
import time
from glide import AsyncGlideClient
from glide.lang import ChatRequest, ChatMessage
router_id: str = "default" # defined in Glide config (see glide.config.yaml)
async def chat() -> None:
glide_client = AsyncGlideClient(base_url="http://127.0.0.1:9099/v1/")
question = "What's the capital of Germany?"
started_at = time.perf_counter()
response = await glide_client.lang.chat(
router_id=router_id,
request=ChatRequest(
message=ChatMessage(
content=question,
role="user",
),
),
)
duration_ms = (time.perf_counter() - started_at) * 1000
print(f"💬Question: {question}")
print(f"💬Answer: {response.model_response.message.content}")
print(f"⏱️Response Time: {duration_ms:.2f}ms")
if __name__ == "__main__":
asyncio.run(chat())