File size: 13,028 Bytes
618430a |
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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 |
# Ultroid - UserBot
# Copyright (C) 2021-2025 TeamUltroid
#
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
# PLease read the GNU Affero General Public License in
# <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
"""
β Commands Available -
β’ `{i}gemini <prompt>`
Get response from Google Gemini.
β’ `{i}antr <prompt>`
Get response from Anthropic Claude.
β’ `{i}gpt <prompt>`
Get response from OpenAI GPT.
β’ `{i}deepseek <prompt>`
Get response from DeepSeek AI.
Set custom models using:
β’ OPENAI_MODEL
β’ ANTHROPIC_MODEL
β’ GEMINI_MODEL
β’ DEEPSEEK_MODEL
"""
import json
from . import LOGS, eor, get_string, udB, ultroid_cmd, async_searcher
import aiohttp
import asyncio
ENDPOINTS = {
"gpt": "https://api.openai.com/v1/chat/completions",
"antr": "https://api.anthropic.com/v1/messages",
"gemini": "https://generativelanguage.googleapis.com/v1/models/gemini-pro:generateContent",
"deepseek": "https://api.deepseek.com/chat/completions"
}
DEFAULT_MODELS = {
"gpt": "gpt-3.5-turbo",
"antr": "claude-3-opus-20240229",
"gemini": "gemini-pro",
"deepseek": "deepseek-chat"
}
def get_model(provider):
"""Get model name from database or use default"""
model_keys = {
"gpt": "OPENAI_MODEL",
"antr": "ANTHROPIC_MODEL",
"gemini": "GEMINI_MODEL",
"deepseek": "DEEPSEEK_MODEL"
}
return udB.get_key(model_keys[provider]) or DEFAULT_MODELS[provider]
async def stream_response(msg, text):
"""Stream response by editing message"""
current = ""
# Split into chunks of ~100 characters at word boundaries
words = text.split()
chunks = []
current_chunk = []
for word in words:
current_chunk.append(word)
if len(" ".join(current_chunk)) > 100:
chunks.append(" ".join(current_chunk[:-1]))
current_chunk = [word]
if current_chunk:
chunks.append(" ".join(current_chunk))
for chunk in chunks:
current += chunk + " "
try:
await msg.edit(current)
except Exception:
pass
await asyncio.sleep(0.5)
return current
async def get_ai_response(provider, prompt, api_key, stream=False):
"""Get response from AI provider"""
try:
headers = {"Content-Type": "application/json"}
model = get_model(provider)
if provider == "gpt":
headers["Authorization"] = f"Bearer {api_key}"
data = {
"model": model,
"messages": [{"role": "user", "content": prompt}],
"stream": stream
}
if not stream:
response = await async_searcher(
ENDPOINTS[provider],
headers=headers,
post=True,
json=data,
re_json=True
)
yield response["choices"][0]["message"]["content"]
return
async with aiohttp.ClientSession() as session:
async with session.post(
ENDPOINTS[provider],
headers=headers,
json=data
) as resp:
async for line in resp.content:
if line:
try:
json_line = json.loads(line.decode('utf-8').strip().strip('data:').strip())
if 'choices' in json_line and json_line['choices']:
content = json_line['choices'][0].get('delta', {}).get('content', '')
if content:
yield content
except Exception:
continue
elif provider == "antr":
headers["x-api-key"] = api_key
headers["anthropic-version"] = "2023-06-01"
data = {
"model": model,
"messages": [{"role": "user", "content": prompt}],
"stream": stream
}
if not stream:
response = await async_searcher(
ENDPOINTS[provider],
headers=headers,
post=True,
json=data,
re_json=True
)
yield response["content"][0]["text"]
return
async with aiohttp.ClientSession() as session:
async with session.post(
ENDPOINTS[provider],
headers=headers,
json=data
) as resp:
async for line in resp.content:
if line:
try:
json_line = json.loads(line.decode('utf-8').strip())
if 'content' in json_line:
content = json_line['content'][0]['text']
if content:
yield content
except Exception:
continue
elif provider == "gemini":
params = {"key": api_key}
data = {
"contents": [{
"parts": [{"text": prompt}]
}]
}
response = await async_searcher(
ENDPOINTS[provider],
params=params,
headers=headers,
post=True,
json=data,
re_json=True
)
text = response["candidates"][0]["content"]["parts"][0]["text"]
if not stream:
yield text
return
# Simulate streaming by yielding chunks
words = text.split()
buffer = []
for word in words:
buffer.append(word)
if len(' '.join(buffer)) > 20: # Adjust chunk size as needed
yield ' '.join(buffer) + ' '
buffer = []
if buffer:
yield ' '.join(buffer)
elif provider == "deepseek":
headers["Authorization"] = f"Bearer {api_key}"
data = {
"model": model,
"messages": [{"role": "user", "content": prompt}],
"stream": stream
}
if not stream:
response = await async_searcher(
ENDPOINTS[provider],
headers=headers,
post=True,
json=data,
re_json=True
)
yield response["choices"][0]["message"]["content"]
return
async with aiohttp.ClientSession() as session:
async with session.post(
ENDPOINTS[provider],
headers=headers,
json=data
) as resp:
async for line in resp.content:
if line:
try:
json_line = json.loads(line.decode('utf-8').strip())
if 'choices' in json_line and json_line['choices']:
content = json_line['choices'][0].get('delta', {}).get('content', '')
if content:
yield content
except Exception:
continue
except Exception as e:
LOGS.exception(e)
yield f"Error: {str(e)}"
@ultroid_cmd(pattern="gemini( (.*)|$)")
async def gemini_ai(event):
"""Use Google Gemini"""
prompt = event.pattern_match.group(1).strip()
if not prompt:
return await event.eor("β Please provide a prompt!")
api_key = udB.get_key("GEMINI_API_KEY")
if not api_key:
return await event.eor("β οΈ Please set Gemini API key using `setdb GEMINI_API_KEY your_api_key`")
msg = await event.eor("π€ Thinking...")
model = get_model("gemini")
header = (
"π€ **Google Gemini**\n"
f"**Model:** `{model}`\n"
"ββββββββββ\n\n"
f"**π Prompt:**\n{prompt}\n\n"
"**π‘ Response:**\n"
)
if event.client.me.bot:
await msg.edit(header)
response = ""
async for chunk in get_ai_response("gemini", prompt, api_key, stream=True):
response += chunk
try:
await msg.edit(header + response)
except Exception:
pass
else:
response = ""
async for chunk in get_ai_response("gemini", prompt, api_key, stream=True):
response += chunk
try:
await msg.edit(header + response)
except Exception:
pass
@ultroid_cmd(pattern="antr( (.*)|$)")
async def anthropic_ai(event):
"""Use Anthropic Claude"""
prompt = event.pattern_match.group(1).strip()
if not prompt:
return await event.eor("β Please provide a prompt!")
api_key = udB.get_key("ANTHROPIC_KEY")
if not api_key:
return await event.eor("β οΈ Please set Anthropic API key using `setdb ANTHROPIC_KEY your_api_key`")
msg = await event.eor("π€ Thinking...")
model = get_model("antr")
formatted_response = (
"π§ **Anthropic Claude**\n"
f"**Model:** `{model}`\n"
"ββββββββββ\n\n"
f"**π Prompt:**\n{prompt}\n\n"
f"**π‘ Response:**\n"
)
if event.client.me.bot:
await msg.edit(formatted_response)
response = ""
async for chunk in get_ai_response("antr", prompt, api_key, stream=True):
response += chunk
try:
await msg.edit(formatted_response + response)
except Exception:
pass
else:
response = ""
async for chunk in get_ai_response("antr", prompt, api_key, stream=True):
response += chunk
try:
await msg.edit(formatted_response + response)
except Exception:
pass
@ultroid_cmd(pattern="gpt( (.*)|$)")
async def openai_ai(event):
"""Use OpenAI GPT"""
prompt = event.pattern_match.group(1).strip()
if not prompt:
return await event.eor("β Please provide a prompt!")
api_key = udB.get_key("OPENAI_API_KEY")
if not api_key:
return await event.eor("β οΈ Please set GPT API key using `setdb OPENAI_API_KEY your_api_key`")
msg = await event.eor("π€ Thinking...")
model = get_model("gpt")
header = (
"π **OpenAI GPT**\n"
f"**Model:** `{model}`\n"
"ββββββββββ\n\n"
f"**π Prompt:**\n{prompt}\n\n"
"**π‘ Response:**\n"
)
if event.client.me.bot:
await msg.edit(header)
response = ""
async for chunk in get_ai_response("gpt", prompt, api_key, stream=True):
response += chunk
try:
await msg.edit(header + response)
except Exception:
pass
else:
response =""
async for chunk in get_ai_response("gpt", prompt, api_key, stream=True):
response += chunk
try:
await msg.edit(header + response)
except Exception:
pass
@ultroid_cmd(pattern="deepseek( (.*)|$)")
async def deepseek_ai(event):
"""Use DeepSeek AI"""
prompt = event.pattern_match.group(1).strip()
if not prompt:
return await event.eor("β Please provide a prompt!")
api_key = udB.get_key("DEEPSEEK_API_KEY")
if not api_key:
return await event.eor("β οΈ Please set DeepSeek API key using `setdb DEEPSEEK_API_KEY your_api_key`")
msg = await event.eor("π€ Thinking...")
model = get_model("deepseek")
formatted_response = (
"π€ **DeepSeek AI**\n"
f"**Model:** `{model}`\n"
"ββββββββββ\n\n"
f"**π Prompt:**\n{prompt}\n\n"
f"**π‘ Response:**\n"
)
if event.client.me.bot:
await msg.edit(formatted_response)
response = ""
async for chunk in get_ai_response("deepseek", prompt, api_key, stream=True):
response += chunk
try:
await msg.edit(formatted_response + response)
except Exception:
pass
else:
response = ""
async for chunk in get_ai_response("deepseek", prompt, api_key, stream=True):
response += chunk
try:
await msg.edit(formatted_response + response)
except Exception:
pass
|