smart-bot-factory 0.1.2__py3-none-any.whl → 0.1.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of smart-bot-factory might be problematic. Click here for more details.

Files changed (61) hide show
  1. smart_bot_factory/__init__.py +51 -0
  2. smart_bot_factory/admin/__init__.py +16 -0
  3. smart_bot_factory/admin/admin_logic.py +430 -0
  4. smart_bot_factory/admin/admin_manager.py +141 -0
  5. smart_bot_factory/admin/admin_migration.sql +136 -0
  6. smart_bot_factory/admin/admin_tester.py +151 -0
  7. smart_bot_factory/admin/timeout_checker.py +499 -0
  8. smart_bot_factory/analytics/__init__.py +7 -0
  9. smart_bot_factory/analytics/analytics_manager.py +355 -0
  10. smart_bot_factory/cli.py +642 -0
  11. smart_bot_factory/config.py +235 -0
  12. smart_bot_factory/configs/growthmed-helper/env_example.txt +1 -0
  13. smart_bot_factory/configs/growthmed-helper/prompts/1sales_context.txt +9 -0
  14. smart_bot_factory/configs/growthmed-helper/prompts/2product_info.txt +582 -0
  15. smart_bot_factory/configs/growthmed-helper/prompts/3objection_handling.txt +66 -0
  16. smart_bot_factory/configs/growthmed-helper/prompts/final_instructions.txt +232 -0
  17. smart_bot_factory/configs/growthmed-helper/prompts/help_message.txt +28 -0
  18. smart_bot_factory/configs/growthmed-helper/prompts/welcome_message.txt +7 -0
  19. smart_bot_factory/configs/growthmed-helper/welcome_file/welcome_file_msg.txt +16 -0
  20. smart_bot_factory/configs/growthmed-helper/welcome_file//342/225/250/320/267/342/225/250/342/225/241/342/225/250/342/225/221 /342/225/250/342/225/227/342/225/250/342/225/225/342/225/244/320/221/342/225/244/320/222 /342/225/250/342/224/220/342/225/250/342/225/233 152/342/225/250/320/264/342/225/250/320/247 /342/225/250/342/225/225 323/342/225/250/320/264/342/225/250/320/247 /342/225/250/342/224/244/342/225/250/342/225/227/342/225/244/320/237 /342/225/250/342/225/235/342/225/250/342/225/241/342/225/250/342/224/244/342/225/250/342/225/225/342/225/244/320/226/342/225/250/342/225/225/342/225/250/342/225/234/342/225/244/320/233.pdf +0 -0
  21. smart_bot_factory/configs/growthmed-october-24/prompts/1sales_context.txt +16 -0
  22. smart_bot_factory/configs/growthmed-october-24/prompts/2product_info.txt +582 -0
  23. smart_bot_factory/configs/growthmed-october-24/prompts/3objection_handling.txt +66 -0
  24. smart_bot_factory/configs/growthmed-october-24/prompts/final_instructions.txt +212 -0
  25. smart_bot_factory/configs/growthmed-october-24/prompts/help_message.txt +28 -0
  26. smart_bot_factory/configs/growthmed-october-24/prompts/welcome_message.txt +8 -0
  27. smart_bot_factory/configs/growthmed-october-24/reports/test_20250924_064229.txt +818 -0
  28. smart_bot_factory/configs/growthmed-october-24/reports/test_20250924_064335.txt +32 -0
  29. smart_bot_factory/configs/growthmed-october-24/reports/test_20250924_064638.txt +35 -0
  30. smart_bot_factory/configs/growthmed-october-24/tests/quick_scenarios.yaml +66 -0
  31. smart_bot_factory/configs/growthmed-october-24/tests/realistic_scenarios.yaml +108 -0
  32. smart_bot_factory/configs/growthmed-october-24/tests/scenario_examples.yaml +46 -0
  33. smart_bot_factory/configs/growthmed-october-24/welcome_file/welcome_file_msg.txt +16 -0
  34. smart_bot_factory/configs/growthmed-october-24/welcome_file//342/225/250/320/267/342/225/250/342/225/241/342/225/250/342/225/221 /342/225/250/342/225/227/342/225/250/342/225/225/342/225/244/320/221/342/225/244/320/222 /342/225/250/342/224/220/342/225/250/342/225/233 152/342/225/250/320/264/342/225/250/320/247 /342/225/250/342/225/225 323/342/225/250/320/264/342/225/250/320/247 /342/225/250/342/224/244/342/225/250/342/225/227/342/225/244/320/237 /342/225/250/342/225/235/342/225/250/342/225/241/342/225/250/342/224/244/342/225/250/342/225/225/342/225/244/320/226/342/225/250/342/225/225/342/225/250/342/225/234/342/225/244/320/233.pdf +0 -0
  35. smart_bot_factory/core/__init__.py +22 -0
  36. smart_bot_factory/core/bot_utils.py +693 -0
  37. smart_bot_factory/core/conversation_manager.py +536 -0
  38. smart_bot_factory/core/decorators.py +229 -0
  39. smart_bot_factory/core/message_sender.py +249 -0
  40. smart_bot_factory/core/states.py +14 -0
  41. smart_bot_factory/creation/__init__.py +8 -0
  42. smart_bot_factory/creation/bot_builder.py +329 -0
  43. smart_bot_factory/creation/bot_testing.py +986 -0
  44. smart_bot_factory/database/database_structure.sql +57 -0
  45. smart_bot_factory/database/schema.sql +1094 -0
  46. smart_bot_factory/handlers/handlers.py +583 -0
  47. smart_bot_factory/integrations/__init__.py +9 -0
  48. smart_bot_factory/integrations/openai_client.py +435 -0
  49. smart_bot_factory/integrations/supabase_client.py +592 -0
  50. smart_bot_factory/setup_checker.py +476 -0
  51. smart_bot_factory/utils/__init__.py +9 -0
  52. smart_bot_factory/utils/debug_routing.py +103 -0
  53. smart_bot_factory/utils/prompt_loader.py +427 -0
  54. smart_bot_factory/uv.lock +2004 -0
  55. smart_bot_factory-0.1.3.dist-info/METADATA +126 -0
  56. smart_bot_factory-0.1.3.dist-info/RECORD +59 -0
  57. smart_bot_factory-0.1.3.dist-info/licenses/LICENSE +24 -0
  58. smart_bot_factory-0.1.2.dist-info/METADATA +0 -31
  59. smart_bot_factory-0.1.2.dist-info/RECORD +0 -4
  60. {smart_bot_factory-0.1.2.dist-info → smart_bot_factory-0.1.3.dist-info}/WHEEL +0 -0
  61. {smart_bot_factory-0.1.2.dist-info → smart_bot_factory-0.1.3.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,126 @@
1
+ Metadata-Version: 2.4
2
+ Name: smart-bot-factory
3
+ Version: 0.1.3
4
+ Summary: Библиотека для создания умных чат-ботов
5
+ Author-email: Kopatych <kopatych@example.com>
6
+ License: MIT
7
+ License-File: LICENSE
8
+ Keywords: chatbot,cli,openai,supabase,telegram
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Environment :: Console
11
+ Classifier: Framework :: AsyncIO
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Communications :: Chat
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Requires-Python: >=3.9
23
+ Requires-Dist: aiofiles>=23.0.0
24
+ Requires-Dist: aiogram>=3.4.1
25
+ Requires-Dist: click>=8.0.0
26
+ Requires-Dist: openai>=1.12.0
27
+ Requires-Dist: project-root-finder>=1.9
28
+ Requires-Dist: python-dotenv>=1.0.1
29
+ Requires-Dist: pytz>=2023.3
30
+ Requires-Dist: pyyaml>=6.0.2
31
+ Requires-Dist: supabase>=2.3.4
32
+ Description-Content-Type: text/markdown
33
+
34
+ # Smart Bot Factory
35
+
36
+ Библиотека для создания умных чат-ботов с использованием OpenAI, Telegram и Supabase.
37
+
38
+ ## Установка
39
+
40
+ ```bash
41
+ pip install smart-bot-factory
42
+ ```
43
+
44
+ ## Быстрый старт
45
+
46
+ 1. Создайте нового бота:
47
+ ```bash
48
+ sbf create my-bot
49
+ ```
50
+
51
+ 2. Настройте конфигурацию в `bots/my-bot/.env`
52
+
53
+ 3. Запустите бота:
54
+ ```bash
55
+ sbf run my-bot
56
+ ```
57
+
58
+ ## Возможности
59
+
60
+ - 🤖 Интеграция с OpenAI GPT для умных ответов
61
+ - 📱 Поддержка Telegram Bot API через aiogram
62
+ - 💾 Хранение данных в Supabase
63
+ - 🔄 Система событий и обработчиков
64
+ - ⏰ Планировщик задач
65
+ - 🧪 Встроенная система тестирования
66
+ - 📝 Управление промптами
67
+ - 🛠️ Удобный CLI интерфейс
68
+
69
+ ## CLI команды
70
+
71
+ ```bash
72
+ # Создать нового бота
73
+ sbf create my-bot
74
+
75
+ # Запустить бота
76
+ sbf run my-bot
77
+
78
+ # Показать список ботов
79
+ sbf list
80
+
81
+ # Управление промптами
82
+ sbf prompts my-bot --list
83
+ sbf prompts my-bot --edit welcome_message
84
+ sbf prompts my-bot --add new_prompt
85
+
86
+ # Запустить тесты
87
+ sbf test my-bot
88
+ ```
89
+
90
+ ## Пример использования
91
+
92
+ ```python
93
+ from smart_bot_factory import BotBuilder, event_handler, schedule_task
94
+
95
+ # Обработчик события
96
+ @event_handler("book_appointment", "Запись на прием")
97
+ async def handle_booking(user_id: int, event_data: dict):
98
+ # Логика обработки записи на прием
99
+ return {"status": "success"}
100
+
101
+ # Запланированная задача
102
+ @schedule_task("send_reminder", "Отправка напоминания")
103
+ async def send_reminder(user_id: int, message: str):
104
+ # Логика отправки напоминания
105
+ return {"status": "sent"}
106
+
107
+ # Запуск бота
108
+ async def main():
109
+ bot = BotBuilder("my-bot")
110
+ await bot.build()
111
+ await bot.start()
112
+
113
+ if __name__ == "__main__":
114
+ asyncio.run(main())
115
+ ```
116
+
117
+ ## Требования
118
+
119
+ - Python 3.9+
120
+ - OpenAI API ключ
121
+ - Telegram Bot Token
122
+ - Supabase проект
123
+
124
+ ## Лицензия
125
+
126
+ MIT
@@ -0,0 +1,59 @@
1
+ smart_bot_factory/__init__.py,sha256=Epn0KzYUeFyP1I9hE4o-lmAKo9lOOw0_qrzEWd8ReqQ,1719
2
+ smart_bot_factory/cli.py,sha256=7uS72ovZGRz6yotc1Cl-iyEuYzJ9ZHSYWWFiT9sQOB4,26120
3
+ smart_bot_factory/config.py,sha256=kB3G2hGMrrCSOAvlrddf8x43bgfgEaQqOCKOeELAzfM,11640
4
+ smart_bot_factory/setup_checker.py,sha256=fqRzyptyMzcb2I0boUaj0rWLdarqaN6ViX6suwTEeWc,20123
5
+ smart_bot_factory/uv.lock,sha256=WUofzlMJoT_Aw0jc0DjCbs8_2qN6ZnMwfxgnDQHAS7I,395792
6
+ smart_bot_factory/admin/__init__.py,sha256=aA8VMXkFn7TiWAMeHzkXCPFGEPxJvL2ECdFASSr7jtU,397
7
+ smart_bot_factory/admin/admin_logic.py,sha256=K41UKpeUWwL9vTq9e-OCwoMZxVsOCOOPR5l9SVspGhI,20616
8
+ smart_bot_factory/admin/admin_manager.py,sha256=xlyG9mIjPmtUhS4E9lp36T7o5Kfp5PZpJ-r1QjnSn5g,6394
9
+ smart_bot_factory/admin/admin_migration.sql,sha256=kleMPJBSe2Z7ZZz7rNyOX_yoh4GZivGesqAX90U5PGs,5667
10
+ smart_bot_factory/admin/admin_tester.py,sha256=PGFpf7fmD5Wxea31xR2ZM_A_QpvrB73gsbxvUrHQBkg,6463
11
+ smart_bot_factory/admin/timeout_checker.py,sha256=TzA2FGrxwE8fuhKerGnGrt4qYMEZdIR8x3SQAnIW5YQ,24490
12
+ smart_bot_factory/analytics/__init__.py,sha256=kPkReaG-cch-eDrTXjynTY1BZL4JxPytxKaAvvPZrvU,137
13
+ smart_bot_factory/analytics/analytics_manager.py,sha256=JQgKGkPPt07vI6KYWpa7OAimgl5SyF5cbiM89N4LKIQ,16298
14
+ smart_bot_factory/configs/growthmed-helper/env_example.txt,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
15
+ smart_bot_factory/configs/growthmed-helper/prompts/1sales_context.txt,sha256=oB2fyS1gmea_ECELiKauL9eGr0_0JCEdFo5_P5jcYgM,812
16
+ smart_bot_factory/configs/growthmed-helper/prompts/2product_info.txt,sha256=tWP9gdn58vu9BhYpDx1lGuPNT24j5p1XPiCSD-CdXiU,24191
17
+ smart_bot_factory/configs/growthmed-helper/prompts/3objection_handling.txt,sha256=zwUGKp3mp1dAQUPjLQsCsczwRJJOqn9GGvVzVBCpvfY,6985
18
+ smart_bot_factory/configs/growthmed-helper/prompts/final_instructions.txt,sha256=EmzdgZUoidcuS4G8spGdTZ3-ky5ZdX04-VlVUXmb-_g,17628
19
+ smart_bot_factory/configs/growthmed-helper/prompts/help_message.txt,sha256=q_vNNWsq5rU0xbjKWeyD_lKAy7Q9ABpDZfgpgQNHoyo,1914
20
+ smart_bot_factory/configs/growthmed-helper/prompts/welcome_message.txt,sha256=kE_EqEp5-bphCfLgbVm76GFkd04KgluZKh_EjNsWj2o,570
21
+ smart_bot_factory/configs/growthmed-helper/welcome_file/welcome_file_msg.txt,sha256=Db21Mm0r8SBWFdX9EeIF2FZtLQ2cvuwVlSRJd2KEYCg,922
22
+ smart_bot_factory/configs/growthmed-helper/welcome_file/Чек лист по 152ФЗ и 323ФЗ для медицины.pdf,sha256=BiAiQHNnQXJPMsks9AeL6s0beEjRFkRMJLMlAn4WorA,5284954
23
+ smart_bot_factory/configs/growthmed-october-24/prompts/1sales_context.txt,sha256=uJ4WviYIr9xJaFdu-APrrmBgIWVwdJymcN04upIviLY,1614
24
+ smart_bot_factory/configs/growthmed-october-24/prompts/2product_info.txt,sha256=tWP9gdn58vu9BhYpDx1lGuPNT24j5p1XPiCSD-CdXiU,24191
25
+ smart_bot_factory/configs/growthmed-october-24/prompts/3objection_handling.txt,sha256=zwUGKp3mp1dAQUPjLQsCsczwRJJOqn9GGvVzVBCpvfY,6985
26
+ smart_bot_factory/configs/growthmed-october-24/prompts/final_instructions.txt,sha256=Y-lIyL9U0DJFY-CC-6LCVohJqZT9uNEJWikuTBJ81Ik,15410
27
+ smart_bot_factory/configs/growthmed-october-24/prompts/help_message.txt,sha256=q_vNNWsq5rU0xbjKWeyD_lKAy7Q9ABpDZfgpgQNHoyo,1914
28
+ smart_bot_factory/configs/growthmed-october-24/prompts/welcome_message.txt,sha256=sGgaYqxYqQYiyfaA-BgUgjbt5Yxx56ZEQEPYTAy7h60,572
29
+ smart_bot_factory/configs/growthmed-october-24/reports/test_20250924_064229.txt,sha256=v24DY1_dL7wvDQzY3JVwc4I_5t5rgSe8IOGuUDzQkH0,58752
30
+ smart_bot_factory/configs/growthmed-october-24/reports/test_20250924_064335.txt,sha256=qLcF79mUuzlpSGlLrYTm2HVYsTym7wqF7ky4tYlU24s,1707
31
+ smart_bot_factory/configs/growthmed-october-24/reports/test_20250924_064638.txt,sha256=dA_svJJXVf2c0KDkeS4BLhg4UVIfzhC1Jba9da-KayM,2055
32
+ smart_bot_factory/configs/growthmed-october-24/tests/quick_scenarios.yaml,sha256=Lom4d-5iZz-4CtdFZ3vE9YAS0lSAfYLqKojO7E-9rrY,3901
33
+ smart_bot_factory/configs/growthmed-october-24/tests/realistic_scenarios.yaml,sha256=Z1V540aHgWamPWzzMKfRlSFfUwFQpfF_IKrxnYayJ0M,6897
34
+ smart_bot_factory/configs/growthmed-october-24/tests/scenario_examples.yaml,sha256=bzDulOU4a2LyWlcHzlQU8GYhOky2WTfyizGfjX4ioMY,2436
35
+ smart_bot_factory/configs/growthmed-october-24/welcome_file/welcome_file_msg.txt,sha256=Db21Mm0r8SBWFdX9EeIF2FZtLQ2cvuwVlSRJd2KEYCg,922
36
+ smart_bot_factory/configs/growthmed-october-24/welcome_file/Чек лист по 152ФЗ и 323ФЗ для медицины.pdf,sha256=BiAiQHNnQXJPMsks9AeL6s0beEjRFkRMJLMlAn4WorA,5284954
37
+ smart_bot_factory/core/__init__.py,sha256=Q0MNoUR5zKMPcE4ge9kgS1cRnQfJ-RN8c_cd7kZufTo,648
38
+ smart_bot_factory/core/bot_utils.py,sha256=-09K1Sw5-o9wvlkT8EqbcQjVWQQOgn-rUY7fDT94WeQ,32201
39
+ smart_bot_factory/core/conversation_manager.py,sha256=L_yj4VfQ0_oblBqczVZfeZ9g6gkJ5XmhdsLSz2vtfbs,27307
40
+ smart_bot_factory/core/decorators.py,sha256=GVgcPnQz5NubnBeZ_YMcZytzbjwDO0p1iBATeQ4XtnQ,9607
41
+ smart_bot_factory/core/message_sender.py,sha256=ukfxtnuqLU2vTT-W0yr5rSigq8Ym2rIZeQntlEB5i6U,10067
42
+ smart_bot_factory/core/states.py,sha256=AOc19_yAsDW_8md-2oiowjBhuW3bwcsmMxszCXWZZTQ,355
43
+ smart_bot_factory/creation/__init__.py,sha256=QsKcT7e5UKv5-9PaNiMo2G5Pv2iYF83OElFo8Zj_xuI,209
44
+ smart_bot_factory/creation/bot_builder.py,sha256=DRZiEbLBlqC6P5ilmSvZZ0o7UHnXXdnMWHZOs-7Qepw,16656
45
+ smart_bot_factory/creation/bot_testing.py,sha256=P089f9hY0F-BxyoFvIs5yR5eoa78HcKx7rBth6H7FDc,51958
46
+ smart_bot_factory/database/database_structure.sql,sha256=26gFtMC2jdQGQF7Zb_F4Br56rMd4hUDTk9FkNZYneLo,2789
47
+ smart_bot_factory/database/schema.sql,sha256=-6kOmA9QnSkUtmGI2iQRbTvbdiqOhEOQcuz1lJn79mU,28059
48
+ smart_bot_factory/handlers/handlers.py,sha256=Rw1Pm7-BIIveAGJbZJxWn8Y24TPww16UUvyN-e7AqNA,32104
49
+ smart_bot_factory/integrations/__init__.py,sha256=_goEBDvOSmQh8f_RUWm8wbO7nbWrOyFe_aXuedRsSnE,132
50
+ smart_bot_factory/integrations/openai_client.py,sha256=aMcDrKO0GEx3ZSVEOGDeDtFCDWSXs6biUfgrbRK8yTU,23180
51
+ smart_bot_factory/integrations/supabase_client.py,sha256=8vT5RR12JJJfGFldAx9uUa-2czNAPSeY2mQyQ6Zr-W8,28908
52
+ smart_bot_factory/utils/__init__.py,sha256=5zNjw491bj5VkOhoEAwh2hjmv8nldyDOTrG7pbGpz6A,285
53
+ smart_bot_factory/utils/debug_routing.py,sha256=BOoDhKBg7UXe5uHQxRk3TSfPfLPOFqt0N7lAo6kjCOo,4719
54
+ smart_bot_factory/utils/prompt_loader.py,sha256=JSn7CsWnToSbHYtURdeuZn7ectyDqQGrPGHN2ixIGkw,19930
55
+ smart_bot_factory-0.1.3.dist-info/METADATA,sha256=2bA7T7vqj8J6IEE59bTwE5f2X5c_zgPADe8ukLWi9a4,3528
56
+ smart_bot_factory-0.1.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
57
+ smart_bot_factory-0.1.3.dist-info/entry_points.txt,sha256=ybKEAI0WSb7WoRiey7QE-HHfn88UGV7nxLDxXq7b7SU,50
58
+ smart_bot_factory-0.1.3.dist-info/licenses/LICENSE,sha256=OrK3cwdUTzNzIhJvSPtJaVMoYIyC_sSx5EFE_FDMvGs,1092
59
+ smart_bot_factory-0.1.3.dist-info/RECORD,,
@@ -0,0 +1,24 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Kopatych
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
23
+
24
+
@@ -1,31 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: smart-bot-factory
3
- Version: 0.1.2
4
- Summary: Библиотека для создания умных чат-ботов
5
- Author-email: Kopatych <kopatych@example.com>
6
- License: MIT
7
- Keywords: chatbot,cli,openai,supabase,telegram
8
- Classifier: Development Status :: 4 - Beta
9
- Classifier: Environment :: Console
10
- Classifier: Framework :: AsyncIO
11
- Classifier: Intended Audience :: Developers
12
- Classifier: License :: OSI Approved :: MIT License
13
- Classifier: Operating System :: OS Independent
14
- Classifier: Programming Language :: Python :: 3
15
- Classifier: Programming Language :: Python :: 3.9
16
- Classifier: Programming Language :: Python :: 3.10
17
- Classifier: Programming Language :: Python :: 3.11
18
- Classifier: Programming Language :: Python :: 3.12
19
- Classifier: Topic :: Communications :: Chat
20
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
- Requires-Python: >=3.9
22
- Requires-Dist: aiofiles>=23.0.0
23
- Requires-Dist: aiogram>=3.4.1
24
- Requires-Dist: click>=8.0.0
25
- Requires-Dist: openai>=1.12.0
26
- Requires-Dist: project-root-finder>=1.9
27
- Requires-Dist: python-dotenv>=1.0.1
28
- Requires-Dist: pytz>=2023.3
29
- Requires-Dist: pyyaml>=6.0.2
30
- Requires-Dist: supabase>=2.3.4
31
- Requires-Dist: twine>=6.2.0
@@ -1,4 +0,0 @@
1
- smart_bot_factory-0.1.2.dist-info/METADATA,sha256=AL-uAGQGwU2fP4IK06oAHnPxnaE0Zssy1T026JeuQCE,1206
2
- smart_bot_factory-0.1.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
3
- smart_bot_factory-0.1.2.dist-info/entry_points.txt,sha256=ybKEAI0WSb7WoRiey7QE-HHfn88UGV7nxLDxXq7b7SU,50
4
- smart_bot_factory-0.1.2.dist-info/RECORD,,