chatgpt_assistant 0.1.1 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.env_prod_sample +1 -1
- data/.env_sample +1 -1
- data/.rubocop.yml +16 -5
- data/Dockerfile +1 -4
- data/README.md +14 -11
- data/exe/chatgpt_assistant +2 -2
- data/lib/bots/application_bot.rb +22 -91
- data/lib/bots/discord_bot.rb +102 -241
- data/lib/bots/helpers/audio_helper.rb +18 -0
- data/lib/bots/helpers/authentication_helper.rb +47 -0
- data/lib/bots/helpers/discord_helper.rb +102 -0
- data/lib/bots/helpers/discord_voice_helper.rb +50 -0
- data/lib/bots/helpers/file_helper.rb +10 -0
- data/lib/bots/helpers/logger_action_helper.rb +14 -0
- data/lib/bots/helpers/messenger_helper.rb +132 -0
- data/lib/bots/helpers/search_helper.rb +34 -0
- data/lib/bots/helpers/telegram_helper.rb +89 -0
- data/lib/bots/helpers/validation_helper.rb +29 -0
- data/lib/bots/helpers/visit_helper.rb +24 -0
- data/lib/bots/telegram_bot.rb +120 -235
- data/lib/chatgpt_assistant/audio_recognition.rb +33 -32
- data/lib/chatgpt_assistant/audio_synthesis.rb +80 -80
- data/lib/chatgpt_assistant/chatter.rb +34 -27
- data/lib/chatgpt_assistant/config.rb +5 -1
- data/lib/chatgpt_assistant/default_messages.rb +108 -106
- data/lib/chatgpt_assistant/migrations.rb +62 -4
- data/lib/chatgpt_assistant/models.rb +56 -8
- data/lib/chatgpt_assistant/version.rb +1 -1
- data/lib/chatgpt_assistant.rb +25 -13
- data/workflows/deploy.yml +19 -0
- data/workflows/deploy_and_build.yml +19 -0
- metadata +20 -6
metadata
CHANGED
@@ -1,17 +1,17 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chatgpt_assistant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- JesusGautamah
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-04-
|
11
|
+
date: 2023-04-09 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |-
|
14
|
-
This gem has the intention to facilitate the creation of chatbots with
|
14
|
+
This gem has the intention to facilitate the creation of chatbots with Chatgpt,
|
15
15
|
Telegram bot, Discord bot, Audio Transcription and IBM Cloud Text to Speech or AWS Polly in docker containers.
|
16
16
|
Documentation: https://github.com/JesusGautamah/chatgpt_assistant
|
17
17
|
email:
|
@@ -45,6 +45,17 @@ files:
|
|
45
45
|
- exe/chatgpt_bot
|
46
46
|
- lib/bots/application_bot.rb
|
47
47
|
- lib/bots/discord_bot.rb
|
48
|
+
- lib/bots/helpers/audio_helper.rb
|
49
|
+
- lib/bots/helpers/authentication_helper.rb
|
50
|
+
- lib/bots/helpers/discord_helper.rb
|
51
|
+
- lib/bots/helpers/discord_voice_helper.rb
|
52
|
+
- lib/bots/helpers/file_helper.rb
|
53
|
+
- lib/bots/helpers/logger_action_helper.rb
|
54
|
+
- lib/bots/helpers/messenger_helper.rb
|
55
|
+
- lib/bots/helpers/search_helper.rb
|
56
|
+
- lib/bots/helpers/telegram_helper.rb
|
57
|
+
- lib/bots/helpers/validation_helper.rb
|
58
|
+
- lib/bots/helpers/visit_helper.rb
|
48
59
|
- lib/bots/telegram_bot.rb
|
49
60
|
- lib/chatgpt_assistant.rb
|
50
61
|
- lib/chatgpt_assistant/audio_recognition.rb
|
@@ -58,6 +69,8 @@ files:
|
|
58
69
|
- logs/.keep
|
59
70
|
- sig/chatgpt_assistant.rbs
|
60
71
|
- voice/.keep
|
72
|
+
- workflows/deploy.yml
|
73
|
+
- workflows/deploy_and_build.yml
|
61
74
|
homepage: https://github.com/JesusGautamah/chatgpt_assistant
|
62
75
|
licenses:
|
63
76
|
- MIT
|
@@ -81,9 +94,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
94
|
- !ruby/object:Gem::Version
|
82
95
|
version: '0'
|
83
96
|
requirements: []
|
84
|
-
rubygems_version: 3.
|
97
|
+
rubygems_version: 3.4.10
|
85
98
|
signing_key:
|
86
99
|
specification_version: 4
|
87
|
-
summary: Easy way chatbot with
|
88
|
-
and IBM Cloud Text to Speech or AWS Polly in
|
100
|
+
summary: Easy way chatbot with Chatgpt, Telegram bot, Discord bot, currently using
|
101
|
+
GPT-3.5-turbo, Audio Transcription and IBM Cloud Text to Speech or AWS Polly in
|
102
|
+
docker containers.
|
89
103
|
test_files: []
|