-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsales_stage_analysis_bot.py
94 lines (73 loc) · 3.44 KB
/
sales_stage_analysis_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
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_answer_from_target_client_about_dialogue_continuation(
current_stage: str, dialogue: str
) -> str:
"""
Returns text of answer from target client about dialogue continuation.
:param current_stage: Current stage of sales.
:type current_stage: str
:param dialogue: Dialogue with target client.
:type dialogue: str
:return: A text of answer from target client about dialogue continuation.
:rtype: str
"""
response = await async_client.chat.completions.create(
model="gpt-3.5-turbo",
messages=[
{"role": "system", "content": "Ты специалист по продажам."},
{
"role": "user",
"content": f"Текущий этап продаж: {current_stage}.\nТекущий диалог:\n{dialogue}\nМожем ли мы двигаться к следующему этапу продаж? Пожалуйста ответьте 'да' или 'нет' и дайте небольшое пояснение.",
},
],
)
return response["choices"][0]["message"]["content"]
async def get_sales_stage(stages: list, current_stage: str, dialogue: str) -> str:
"""
Returns sales stage that depends on client answer.
:param stages: List of sales stages.
:type stages: list
:param current_stage: Current sales stage.
:type current_stage: str
:param dialogue: Dialogue with client.
:type dialogue: str
:return: A sales stage that depends on client answer.
:rtype: str
"""
if current_stage not in stages:
raise ValueError("Такого этапа продаж нет в списке.")
current_stage_index = stages.index(current_stage)
if current_stage_index == len(stages) - 1:
return "Текущий этап продаж является последним в списке."
client_answer = await get_answer_from_target_client_about_dialogue_continuation(
current_stage, dialogue
)
if "yes" in client_answer.lower():
return stages[current_stage_index + 1]
else:
return current_stage
if __name__ == "__main__":
sales_stages = [
"Первый контакт",
"Выявление потребностей",
"Презентация",
"Обработка возражений",
"Закрытие сделки",
"Постпродажное обслуживание",
]
current_stage = "Выявление потребностей"
dialogue = """
Клиент: Мы рассматриваем возможность улучшения нашего IT-инфраструктуры.
Специалист: Хорошо, расскажите, пожалуйста, о текущих проблемах и задачах, которые вы хотите решить.
Клиент: У нас есть проблемы с масштабируемостью и безопасностью.
Специалист: Понял вас, мы можем предложить решения, которые помогут вам в этих областях.
"""
next_stage = asyncio.run(get_sales_stage(sales_stages, current_stage, dialogue))
print(f"Следующий этап: {next_stage}")