akn-dev / akn /Akeno /chatgpt.py
randydev's picture
_
f419acb verified
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2019-2025 (c) Randy W @xtdevs, @xtsea
#
# from : https://github.com/TeamKillerX
# Channel : @RendyProjects
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
import requests
import aiohttp
import datetime
import time
from pyrogram import *
from pyrogram.types import *
from akn.utils.database import db
from akn.utils.handler import *
from akn.utils.logger import LOGS
from akn.utils.prefixprem import command
from akn import app, log_detailed_error
from config import *
from Ryzenth import ApiKeyFrom
from Ryzenth.types import QueryParameter
ryz = ApiKeyFrom(..., is_free_from_ryzenth=True)
@Akeno(
~filters.scheduled
& command(["askid"])
& filters.me
& ~filters.forwarded
)
async def hybrid(client: Client, message: Message):
if len(message.command) > 1:
prompt = message.text.split(maxsplit=1)[1]
elif message.reply_to_message:
prompt = message.reply_to_message.text
else:
return await message.reply_text("Give ask from mistralai")
try:
response = await ryz.aio.send_message(
"hybrid",
QueryParameter(
query=prompt
),
dot_access=True
)
output = response.results
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)
except Exception as e:
await log_detailed_error(e, where=client.me.id, who=message.chat.title)
await message.reply_text("Error try again gpt")
@Akeno(
~filters.scheduled
& command(["asken"])
& filters.me
& ~filters.forwarded
)
async def hybrid_english(client: Client, message: Message):
if len(message.command) > 1:
prompt = message.text.split(maxsplit=1)[1]
elif message.reply_to_message:
prompt = message.reply_to_message.text
else:
return await message.reply_text("Give ask from mistralai")
try:
response = await ryz.aio.send_message(
"hybrid-english",
QueryParameter(
query=prompt
),
dot_access=True
)
output = response.results
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)
except Exception as e:
await log_detailed_error(e, where=client.me.id, who=message.chat.title)
await message.reply_text("Error try again gpt")
module = modules_help.add_module("chatgpt", __file__)
module.add_command("askid", "to question from Ryzenth Library")
module.add_command("asken", "to question from Ryzenth Library")