File size: 9,457 Bytes
a9422f7
 
 
 
f0eba1a
a9422f7
 
 
 
e8db6a0
f0eba1a
a9422f7
 
 
 
f0eba1a
a9422f7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c7eac1c
 
 
 
a9422f7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c7eac1c
a9422f7
 
 
c7eac1c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a9422f7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c7eac1c
a9422f7
 
 
c7eac1c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a9422f7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c7eac1c
a9422f7
 
 
c7eac1c
 
 
 
 
 
 
 
 
 
 
 
a9422f7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
841dd86
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
import asyncio
import logging
import os

from pyrogram import Client, filters
from pyrogram.types import Message

from database import db
from logger import LOGS
from config import *
from RyuzakiLib import GeminiLatest
import google.generativeai as genai
from google.api_core.exceptions import InvalidArgument


@Client.on_message(
    filters.incoming
    & (
        filters.text
        | filters.photo
        | filters.video
        | filters.audio
        | filters.voice
        | filters.regex(r"\b(Randy|Rendi)\b(.*)", flags=re.IGNORECASE)
    )
    & filters.private
    & ~filters.via_bot
    & ~filters.forwarded,
    group=2,
)
async def chatbot_talk(client: Client, message: Message):
    try:
        genai.configure(api_key=GOOGLE_API_KEY)
        if message.photo:
            try:
                file_path = await message.download()
                caption = message.caption or "What's this?"
                x = GeminiLatest(api_keys=GOOGLE_API_KEY)
                ai_reply = await message.reply_text("Processing...")
                backup_chat = await db._get_chatbot_chat_from_db(message.from_user.id)
                backup_chat.append({"role": "user", "parts": [{"text": caption}]})
                response_reads = x.get_response_image(caption, file_path)
                if len(response_reads) > 4096:
                    with open("chat.txt", "w+", encoding="utf8") as out_file:
                        out_file.write(response_reads)
                    await message.reply_document(
                        document="chat.txt",
                        disable_notification=True
                    )
                    await ai_reply.delete()
                    os.remove("chat.txt")
                else:
                    await ai_reply.edit_text(response_reads)
                backup_chat.append({"role": "model", "parts": [{"text": response_reads}]})
                await db._update_chatbot_chat_in_db(message.from_user.id, backup_chat)
                os.remove(file_path)
            except InvalidArgument as e:
                await ai_reply.edit_text(f"Error: {e}")
            except Exception as e:
                await ai_reply.edit_text(f"Error: {e}")
            return

        if message.audio or message.voice:
            try:
                ai_reply = await message.reply_text("Processing...")
                audio_file_name = await message.download()
                caption = message.caption or "What's this?"
                model = genai.GenerativeModel(
                    model_name="gemini-1.5-flash",
                    safety_settings={
                        genai.types.HarmCategory.HARM_CATEGORY_HATE_SPEECH: genai.types.HarmBlockThreshold.BLOCK_NONE,
                        genai.types.HarmCategory.HARM_CATEGORY_HARASSMENT: genai.types.HarmBlockThreshold.BLOCK_NONE,
                        genai.types.HarmCategory.HARM_CATEGORY_SEXUALLY_EXPLICIT: genai.types.HarmBlockThreshold.BLOCK_NONE,
                        genai.types.HarmCategory.HARM_CATEGORY_DANGEROUS_CONTENT: genai.types.HarmBlockThreshold.BLOCK_NONE,
                    }
                )
                backup_chat = await db._get_chatbot_chat_from_db(message.from_user.id)
                backup_chat.append({"role": "user", "parts": [{"text": caption}]})
                await ai_reply.edit_text("Uploading file...")
                audio_file = genai.upload_file(path=audio_file_name)
                while audio_file.state.name == "PROCESSING":
                    await asyncio.sleep(10)
                    audio_file = genai.get_file(audio_file.name)
                if audio_file.state.name == "FAILED":
                    await ai_reply.edit_text(f"Error: {audio_file.state.name}")
                    return
                response = model.generate_content(
                    [audio_file, caption],
                    request_options={"timeout": 600}
                )
                if len(response.text) > 4096:
                    with open("chat.txt", "w+", encoding="utf8") as out_file:
                        out_file.write(response.text)
                    await message.reply_document(
                        document="chat.txt",
                        disable_notification=True
                    )
                    await ai_reply.delete()
                    os.remove("chat.txt")
                else:
                    await ai_reply.edit_text(response.text)
                
                backup_chat.append({"role": "model", "parts": [{"text": response.text}]})
                await db._update_chatbot_chat_in_db(message.from_user.id, backup_chat)
                
                audio_file.delete()
                os.remove(audio_file_name)
            except InvalidArgument as e:
                await ai_reply.edit_text(f"Error: {e}")
            except Exception as e:
                await ai_reply.edit_text(f"Error: {e}")
            return

        if message.video:
            try:
                ai_reply = await message.reply_text("Processing...")
                video_file_name = await message.download(file_name="newvideo.mp4")
                caption = message.caption or "What's this?"
                model = genai.GenerativeModel(
                    model_name="gemini-1.5-pro",
                    safety_settings={
                        genai.types.HarmCategory.HARM_CATEGORY_HATE_SPEECH: genai.types.HarmBlockThreshold.BLOCK_NONE,
                        genai.types.HarmCategory.HARM_CATEGORY_HARASSMENT: genai.types.HarmBlockThreshold.BLOCK_NONE,
                        genai.types.HarmCategory.HARM_CATEGORY_SEXUALLY_EXPLICIT: genai.types.HarmBlockThreshold.BLOCK_NONE,
                        genai.types.HarmCategory.HARM_CATEGORY_DANGEROUS_CONTENT: genai.types.HarmBlockThreshold.BLOCK_NONE,
                    }
                )
                backup_chat = await db._get_chatbot_chat_from_db(message.from_user.id)
                backup_chat.append({"role": "user", "parts": [{"text": caption}]})
                await ai_reply.edit_text("Uploading file...")
                video_file = genai.upload_file(path=video_file_name)
                while video_file.state.name == "PROCESSING":
                    await asyncio.sleep(10)
                    video_file = genai.get_file(video_file.name)
                if video_file.state.name == "FAILED":
                    await ai_reply.edit_text(f"Error: {video_file.state.name}")
                    return
                
                response = model.generate_content(
                    [video_file, caption],
                    request_options={"timeout": 600}
                )
                if len(response.text) > 4096:
                    with open("chat.txt", "w+", encoding="utf8") as out_file:
                        out_file.write(response.text)
                    await message.reply_document(
                        document="chat.txt",
                        disable_notification=True
                    )
                    await ai_reply.delete()
                    os.remove("chat.txt")
                else:
                    await ai_reply.edit_text(response.text)
                
                backup_chat.append({"role": "model", "parts": [{"text": response.text}]})
                await db._update_chatbot_chat_in_db(message.from_user.id, backup_chat)
                video_file.delete()
                os.remove(video_file_name)
            except InvalidArgument as e:
                await ai_reply.edit_text(f"Error: {e}")
            except Exception as e:
                await ai_reply.edit_text(f"Error: {e}")
            return

        if message.text:
            try:
                query = message.text.strip()
                match = re.search(r"\b(Randy|Rendi)\b(.*)", query, flags=re.IGNORECASE)
                if match:
                    rest_of_sentence = match.group(2).strip()
                    query_base = rest_of_sentence if rest_of_sentence else query
                else:
                    query_base = query
                
                parts = query.split(maxsplit=1)
                command = parts[0].lower()
                pic_query = parts[1].strip() if len(parts) > 1 else ""
                
                model_flash = genai.GenerativeModel(
                    model_name="gemini-1.5-flash"
                )
                backup_chat = await db._get_chatbot_chat_from_db(message.from_user.id)
                backup_chat.append({"role": "user", "parts": [{"text": query_base}]})
                chat_session = model_flash.start_chat(history=backup_chat)
                response_data = chat_session.send_message(query_base)
                output = response_data.text
                if len(output) > 4096:
                    with open("chat.txt", "w+", encoding="utf8") as out_file:
                        out_file.write(output)
                    await message.reply_document(
                        document="chat.txt",
                        disable_notification=True
                    )
                    os.remove("chat.txt")
                else:
                    await message.reply_text(output)
                backup_chat.append({"role": "model", "parts": [{"text": output}]})
                await db._update_chatbot_chat_in_db(message.from_user.id, backup_chat)
            except Exception as e:
                return await message.reply_text(str(e))