randydev commited on
Commit
db61d31
·
verified ·
1 Parent(s): a9a4ad1

Upload meta_ai.py

Browse files
Files changed (1) hide show
  1. akn/Meta/meta_ai.py +118 -0
akn/Meta/meta_ai.py ADDED
@@ -0,0 +1,118 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python
2
+ # -*- coding: utf-8 -*-
3
+ # Copyright 2020-2024 (c) Randy W @xtdevs, @xtsea
4
+ #
5
+ # from : https://github.com/TeamKillerX
6
+ # Channel : @RendyProjects
7
+ # This program is free software: you can redistribute it and/or modify
8
+ # it under the terms of the GNU Affero General Public License as published by
9
+ # the Free Software Foundation, either version 3 of the License, or
10
+ # (at your option) any later version.
11
+ #
12
+ # This program is distributed in the hope that it will be useful,
13
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ # GNU Affero General Public License for more details.
16
+ #
17
+ # You should have received a copy of the GNU Affero General Public License
18
+ # along with this program. If not, see <https://www.gnu.org/licenses/>.
19
+
20
+ import asyncio
21
+ import os
22
+ from pyrogram import *
23
+ from pyrogram import enums
24
+ from pyrogram import Client, filters
25
+ from pyrogram.types import *
26
+ from pyrogram.errors import *
27
+ from config import *
28
+
29
+ from akn.utils.logger import LOGS
30
+ import datetime
31
+
32
+ from huggingface_hub import InferenceClient
33
+
34
+ from . import force_sub
35
+
36
+ SYSTEM_PROMPT = f"""
37
+ Your name is Randy Dev. A kind and friendly AI assistant that answers in a short and concise answer.
38
+ Give short step-by-step reasoning if required.
39
+
40
+ python language powered by @xtdevs on telegram support and language models Meta AI
41
+
42
+ {datetime.datetime.now()}
43
+ """
44
+
45
+ async def process_stream(message, prompt):
46
+ client_hf = InferenceClient(api_key=HF_KEY)
47
+ messages = [
48
+ {"role": "system", "content": SYSTEM_PROMPT},
49
+ {"role": "user", "content": prompt}
50
+ ]
51
+ stream = client_hf.chat.completions.create(
52
+ model="mistralai/Mixtral-8x7B-Instruct-v0.1",
53
+ messages=messages,
54
+ max_tokens=500,
55
+ stream=True
56
+ )
57
+ accumulated_text = ""
58
+ for chunk in stream:
59
+ LOGS.info(chunk)
60
+ new_content = chunk.choices[0].delta.content
61
+ accumulated_text += new_content
62
+ return accumulated_text
63
+
64
+ @Client.on_message(
65
+ ~filters.scheduled
66
+ & filters.command(["start"])
67
+ & ~filters.forwarded
68
+ )
69
+ async def startbot(client: Client, message: Message):
70
+ buttons = [
71
+ [
72
+ InlineKeyboardButton(
73
+ text="Developer",
74
+ url=f"https://t.me/xtdevs"
75
+ ),
76
+ InlineKeyboardButton(
77
+ text="Channel",
78
+ url='https://t.me/RendyProjects'
79
+ ),
80
+ ]
81
+ ]
82
+ await message.reply_text(
83
+ text="Woohoo! Welcome! I'm excited to get started as a Meta AI bot!\n\n• Command /ask hello",
84
+ disable_web_page_preview=True,
85
+ reply_markup=InlineKeyboardMarkup(buttons)
86
+ )
87
+
88
+ @Client.on_message(
89
+ filters.private
90
+ & filters.command(["ask"])
91
+ & ~filters.forwarded
92
+ )
93
+ @force_sub
94
+ async def askcmd(client: Client, message: Message):
95
+ if len(message.command) > 1:
96
+ prompt = message.text.split(maxsplit=1)[1]
97
+ elif message.reply_to_message:
98
+ prompt = message.reply_to_message.text
99
+ else:
100
+ return await message.reply_text("Give ask from Meta AI")
101
+ await client.send_chat_action(message.chat.id, enums.ChatAction.TYPING)
102
+ await asyncio.sleep(1.5)
103
+ try:
104
+ output = await process_stream(message, prompt)
105
+ if len(output) > 4096:
106
+ with open("chat.txt", "w+", encoding="utf8") as out_file:
107
+ out_file.write(output)
108
+ await message.reply_document(
109
+ document="chat.txt",
110
+ disable_notification=True
111
+ )
112
+ os.remove("chat.txt")
113
+ else:
114
+ await message.reply_text(output, disable_web_page_preview=True)
115
+ await client.send_chat_action(message.chat.id, enums.ChatAction.CANCEL)
116
+ return
117
+ except Exception as e:
118
+ return await message.reply_text(f"Error: {e}")