-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselecting_snowboard_bot.py
112 lines (89 loc) · 3.84 KB
/
selecting_snowboard_bot.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import json
import os
import asyncio
from dotenv import load_dotenv
from openai import AsyncOpenAI
load_dotenv()
async_client = AsyncOpenAI(
api_key=os.environ.get("OPENAI_API_KEY"),
)
async def get_recommendations(
name: str, experience: str, goal: str, additional_info: str
) -> str:
"""
Returns text with recommendations based on user experience, goal of buying and additional info.
:param name: A name of user.
:type name: str
:param experience: An experience of user.
:type experience: str
:param goal: A goal of buying snowboard.
:type goal: str
:param additional_info: An additional info from user.
:type additional_info: str
:return: A text with recommendations based on user experience, goal of buying and additional info.
:rtype: str
"""
conversation = [
{
"role": "system",
"content": "Ты - робот Алёша. Помоги человеку выбрать доску для сноуборда.",
},
{
"role": "user",
"content": f"Имя: {name}\nОпыт: {experience}\nЦель покупки: {goal}\nДополнительная информация: {additional_info}\nПосоветуй, какой сноуборд лучше выбрать.",
},
]
response = await async_client.chat.completions.create(
model="gpt-3.5-turbo", messages=conversation, max_tokens=150
)
return response.choices[0].message["content"].strip()
async def get_user_input_using_prompt(prompt: str) -> str:
"""
Returns text that is entered by user using prompt. This text will be used in gpt model.
:param prompt: A prompt that is used to get text from target user.
:type prompt: str
:return: A text that is entered by user using prompt. This text will be used in gpt model.
:rtype: str
"""
conversation = [
{
"role": "system",
"content": "Ты - робот Алёша. Помоги человеку выбрать доску для сноуборда.",
},
{"role": "user", "content": prompt},
]
response = await async_client.chat.completions.create(
model="gpt-3.5-turbo",
messages=conversation,
max_tokens=100,
)
return response.choices[0].message["content"].strip()
async def get_snowboard_info() -> str:
"""
Returns text with snowboard info.
:return: A text with snowboard info.
:rtype: str
"""
user_and_snowboard_info = {}
user_and_snowboard_info["Имя"] = await get_user_input_using_prompt("Как вас зовут?")
user_and_snowboard_info["Опыт"] = await get_user_input_using_prompt(
"Каков ваш опыт в сноубординге? (Начинающий, Средний, Опытный)"
)
user_and_snowboard_info["Цель покупки"] = await get_user_input_using_prompt(
"Для чего вы покупаете сноуборд? (Например: катание в парке, спуск с гор, фрирайд и т.д.)"
)
user_and_snowboard_info["Дополнительная информация"] = (
await get_user_input_using_prompt(
"Есть ли другая полезная информация, которую вы хотите сообщить?"
)
)
user_and_snowboard_info["Рекомендация"] = await get_recommendations(
user_and_snowboard_info.get("Имя"),
user_and_snowboard_info.get("Опыт"),
user_and_snowboard_info.get("Цель покупки"),
user_and_snowboard_info.get("Дополнительная информация"),
)
return json.dumps(user_and_snowboard_info, ensure_ascii=False, indent=4)
if __name__ == "__main__":
snowboard_info = asyncio.run(get_snowboard_info())
print(snowboard_info)