Spaces:
Runtime error
Runtime error
File size: 17,736 Bytes
f15834d 02ddf36 f15834d 02ddf36 f15834d 02ddf36 f15834d |
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 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 |
import requests
import streamlit as st
import shutil
import random
import gtts
import requests
from PIL import Image, ImageDraw, ImageFont
from io import BytesIO
import urllib.request
import random
from gtts import gTTS
import sqlite3
conn = sqlite3.connect('chatbot_data.db')
def main():
st.title("انیمه کردن تصاویر")
image_link = st.text_input("لطفاً لینک عکس را وارد کنید:")
if st.button("انیمه کردن"):
animate_image(image_link)
# ایجاد یک cursor
cursor = conn.cursor()
# ایجاد جدول برای ذخیره پاسخهای Chatbot
cursor.execute('''
CREATE TABLE IF NOT EXISTS chatbot_responses (
id INTEGER PRIMARY KEY AUTOINCREMENT,
user_input TEXT,
bot_response TEXT
)
''')
def fetch_estekhare():
url = "http://api-free.ir/api/es.php"
response = requests.get(url)
data = response.json()
return data
def animate_image(image_link):
# لینک وبسرویس
url = f'http://api-free.ir/api/enime/?img={image_link}'
# دریافت نتیجه وبسرویس
response = requests.get(url)
data = response.json()
# چک کردن صحت دریافت نتیجه
if data['ok']:
# دریافت لینک عکس انیمه شده
image_url = data['result']
# دریافت عکس و نمایش آن
image_response = requests.get(image_url)
image_data = Image.open(BytesIO(image_response.content))
st.image(image_data, caption='تصویر انیمه شده')
st.success("تصویر انیمه شده با موفقیت ذخیره شد.")
else:
st.error("دریافت نتیجه انیمه شده با مشکل مواجه شده است.")
def chatgpt4(text):
s = requests.Session()
r = random.randint(0, 1)
if r == 0:
chat = s.get(f"http://api-free.ir/api/bard.php?text={text}").json()["result"]
return chat
else:
chat_2 = s.get(f"http://api-free.ir/api/chat.php?text={text}").json()["result"]
return chat_2
def download_logo_and_save(text):
random_logo_url = fetch_random_logo(text)
if random_logo_url:
try:
response = requests.get(random_logo_url)
image = Image.open(BytesIO(response.content))
st.image(image, caption='Generated Logo', use_column_width=True)
st.success("Logo saved successfully.")
except Exception as e:
st.error("Error occurred while saving logo:", e)
else:
st.warning("No logos found.")
# def fetch_random_logo(text):
# url = f"https://api-free.ir/api/Logo-top.php?text={text}&page={str(random.randint(1, 99))}"
# try:
# response = requests.get(url)
# data = response.json()
# if 'result' in data and data['result']:
# return random.choice(data['result'])
# else:
# st.error("Error: No logos found.")
# return None
# except Exception as e:
# st.error("Error occurred:", e)
# return None
def download_logo(logo_url):
try:
response = requests.get(logo_url)
image = Image.open(BytesIO(response.content))
st.image(image, caption='Generated Logo', use_column_width=True)
st.success("Logo saved successfully.")
except Exception as e:
st.error("Error occurred while saving logo:", e)
# اضافه کردن پاسخ Chatbot به جدول
def insert_chatbot_response(user_input, bot_response):
cursor.execute('INSERT INTO chatbot_responses (user_input, bot_response) VALUES (?, ?)', (user_input, bot_response))
conn.commit()
# تنظیمات صفحه را سفارشی کنید
st.set_page_config(
page_title="ChatGPT",
page_icon="🤖",
layout="wide",
initial_sidebar_state="expanded",
)
def fetch_random_logo(text):
page = random.randint(1, 99)
url = f"https://api-free.ir/api/Logo-top.php?text={text}&page={page}"
try:
response = requests.get(url)
data = response.json()
if 'result' in data and data['result']:
# انتخاب یک لینک تصادفی از لیست لینکهای لوگوها
random_logo_url = random.choice(data['result'])
return random_logo_url
else:
st.error("Error: No logos found.")
return None
except Exception as e:
st.error("Error occurred:", e)
return None
def download_and_save_music(file_path, music_link):
response = requests.get(music_link)
if response.status_code == 200:
with open(file_path, "wb") as file:
file.write(response.content)
# https://chatgpt.ai/
def get_random_music_link():
api_url = "https://api-free.ir/api/music/"
response = requests.get(api_url)
if response.status_code == 200:
data = response.json()
if data.get("ok") and data.get("result") and data["result"].get("song"):
return data["result"]["song"]
return None
st.image('ai.jpg', width=100)
st.title('ChatGPT')
st.subheader('Free-GPT-Chat')
inp = st.chat_input('درخواست خود را وارد کنید')
if inp:
if inp.startswith("تصویر"):
st.text('در حال بارگیری...')
image = inp.replace("تصویر","").strip()
try :
response = requests.get(f"http://api-free.ir/api/img.php?text={image}&v=3.5")
response.raise_for_status()
data = response.json()
result = data["result"]
# انتخاب یک عنصر تصادفی از لیست result
random_link = random.choice(result)
response = requests.get(random_link, stream=True)
response.raise_for_status()
with open("downloaded_image.jpg", "wb") as out_file:
shutil.copyfileobj(response.raw, out_file)
st.image("downloaded_image.jpg", use_column_width=True)
except requests.exceptions.RequestException as e:
st.error(f"خطا در دریافت تصویر: {e}")
elif inp.startswith("مونث"):
text = inp.replace("مونث", "").strip()
st.text('در حال پردازش ویس')
# تبدیل متن به صدا
try:
response = requests.get(f"https://api-free.ir/api/voice.php?text={text}&mod=DilaraNeural")
response.raise_for_status() # بررسی موفقیت درخواست
result_url = response.json()["result"]
voice_response = requests.get(result_url)
voice_response.raise_for_status()
with open('voice_bot.mp3', "wb") as f:
f.write(voice_response.content)
st.audio("voice_bot.mp3", format='audio/mp3')
except requests.exceptions.RequestException as mz:
st.error(f"erorr:\n{mz}")
#
elif inp.startswith("مذکر"):
text_man = inp.replace("مذکر", "").strip()
st.text('در حال پردازش ویس')
response = requests.get(f"https://api-free.ir/api/voice.php?text={text_man}&mod=FaridNeural")
response.raise_for_status() # بررسی موفقیت درخواست
result_url = response.json()["result"]
voice_response = requests.get(result_url)
try:
voice_response.raise_for_status()
with open('voice_bot_man.mp3', "wb") as f:
f.write(voice_response.content)
st.audio("voice_bot_man.mp3", format='audio/mp3')
except requests.exceptions.RequestException as m:
st.error(f"erorr:\n{m}")
elif inp.startswith("voice"):
text = inp.replace("voice", "").strip()
st.text('در حال پردازش ویس')
tts = gTTS(text)
tts.save("responsee.mp3")
st.audio("responsee.mp3", format='audio/mp3')
# پخش صدا
# os.system("start response.mp3")
elif inp =="اهنگ"or inp =="music":
st.text("منتظربمانید که اهگ اماده بشه")
random_music_link = get_random_music_link()
try:
if random_music_link:
music_file_name = "random_music.mp3"
download_and_save_music(music_file_name, random_music_link)
with open(music_file_name, 'rb') as music_file:
st.audio('random_music.mp3',format='audio/mp3')
except Exception as m:
st.error(f"erorr:\n {m}")
elif inp=="bg" or inp =="بگراند":
st.text("منتظربمانید که بگراند ارسال شه")
# لیست مدلها
model_list = [
"animals",
"stock-images",
"travel",
"nature",
"military",
"hi-tech",
"games",
"celebrities",
"art",
"architecture",
"abstract",
]
# URL وبسرویس
url_template = "https://api-free.ir/api/background2.php?page=1&text={}"
# تولید لینک برای یک مدل تصادفی
random_model = random.choice(model_list)
url = url_template.format(random_model)
# ارسال درخواست و دریافت پاسخ
response = requests.get(url)
# تبدیل پاسخ به دیکشنری
data = response.json()
# استخراج لینکهای عکس از پاسخ
image_links = data.get('result', [])
# انتخاب تصویر تصادفی
random_image_link = random.choice(image_links)
# دانلود تصویر
image_response = requests.get(random_image_link)
image = Image.open(BytesIO(image_response.content))
# نمایش تصویر
# ذخیره تصویر با نام خاص
image_name = "random_image.jpg"
image.save(image_name)
st.image("random_image.jpg",use_column_width=True)
elif inp.startswith("عکس"):
st.text('در حال بارگیری...')
image = inp.replace("عکس","").strip()
try :
response = requests.get(f"http://api-free.ir/api/img.php?text={image}&v=3.5")
response.raise_for_status()
data = response.json()
result = data["result"]
# انتخاب یک عنصر تصادفی از لیست result
random_link = random.choice(result)
response = requests.get(random_link, stream=True)
response.raise_for_status()
with open("downloaded_image.jpg", "wb") as out_file:
shutil.copyfileobj(response.raw, out_file)
st.image("downloaded_image.jpg", use_column_width=True)
except requests.exceptions.RequestException as e:
st.error(f"خطا در دریافت تصویر: {e}")
elif inp.startswith("موزیک"):
st.text("منتظرسرچ موزیک وارسال آن باشید")
query = inp.replace("موزیک","")
url = f"https://api-free.ir/api/sr-music/?text={query}"
response = requests.get(url)
if response.status_code == 200:
data = response.json()
# دریافت لینک فایل صوتی از دیکشنری result
song_url = data["result"]["song"]
# دانلود فایل صوتی
urllib.request.urlretrieve(song_url, "music_plyar.mp3")
with open("music_plyar.mp3","rb") as m:
st.audio('music_plyar.mp3',format='audio/mp3')
m.close()
elif inp.startswith("font"):
st.text("درحال ساخت فونت ")
a =inp.replace("font","")
fonts = requests.get(f'http://api-free.ir/api/font.php?en={a}').json()["result"]
formatted_fonts = "\n".join([f"{index + 1}. {font}" for index, font in enumerate(fonts)])
try:
st.text_area("Chatbot's Response", value=f"فونتهای شما:\n{formatted_fonts}" , height=400)
# font_to_database(fonts)
except Exception as f:
st.text_area("Chatbot's Response", value=f"erorr:\n{f}" , height=400)
elif inp.startswith("فونت"):
st.text("درحال ساخت فونت ")
a =inp.replace("font","")
fonts = requests.get(f'http://api-free.ir/api/font.php?fa={a}').json()["result"]
formatted_fonts = "\n".join([f"{index + 1}. {font}" for index, font in enumerate(fonts)])
try:
st.text_area("Chatbot's Response", value=f"فونتهای شما:\n{formatted_fonts}" , height=400)
# font_to_database(fonts)
except Exception as f:
st.error(f"erorr:\n{f}")
# st.text_area("Chatbot's Response", value=f"erorr:\n{f}" , height=400)
elif inp == "چنل" or inp == "کانال":
st.markdown("[Python Channel](https://t.me/pythonsource1384)")
elif inp.startswith("logo"):
text = inp.replace("logo","").strip()
a=download_logo_and_save(text)
elif inp.startswith("anime"):
st.text('در حال انیمه کردن')
image_link = inp.replace("anime", "").strip()
try:
response = requests.get(f"http://api-free.ir/api/enime/?img={image_link}")
response.raise_for_status()
data = response.json()
if data.get('ok'):
image_url = data['result']
image_response = requests.get(image_url)
image_data = Image.open(BytesIO(image_response.content))
st.image(image_data, caption='تصویر انیمه شده', use_column_width=False)
st.success("تصویر انیمه شده با موفقیت ذخیره شد.")
else:
st.error("خطا در انیمه کردن تصویر.")
except requests.exceptions.RequestException as e:
st.error(f"خطا در دریافت تصویر: {e}")
elif inp.startswith("انیمه"):
st.text('در حال انیمه کردن')
image_link = inp.replace("انیمه", "").strip()
try:
response = requests.get(f"http://api-free.ir/api/enime/?img={image_link}")
response.raise_for_status()
data = response.json()
if data.get('ok'):
image_url = data['result']
image_response = requests.get(image_url)
image_data = Image.open(BytesIO(image_response.content))
st.image(image_data, caption='تصویر انیمه شده', use_column_width=False)
st.success("تصویر انیمه شده با موفقیت ذخیره شد.")
else:
st.error("خطا در انیمه کردن تصویر.")
except requests.exceptions.RequestException as e:
st.error(f"خطا در دریافت تصویر: {e}")
elif inp =="استخاره":
estekhare_data = fetch_estekhare()
if estekhare_data["ok"]:
# Display result
st.subheader("نتیجه استخاره:")
st.write(f"سوره: {estekhare_data['result']['soreh']}")
st.write(f"آیه: {estekhare_data['result']['ayeh']}")
st.write(f"نتیجه: {estekhare_data['result']['natijeh']}")
st.write(f"نتیجه کلی: {estekhare_data['result']['natijeh_kolli']}")
st.write(f"نتیجه ازدواج: {estekhare_data['result']['natijeh_ezdevaj']}")
st.write(f"نتیجه معامله: {estekhare_data['result']['natijeh_moameleh']}")
# Display image
st.subheader("تصویر مرتبط:")
image_url = estekhare_data["result"]["image"]
image_response = requests.get(image_url)
image = Image.open(BytesIO(image_response.content))
st.image(image, caption='تصویر استخاره', use_column_width=True)
else:
st.error("خطا در دریافت اطلاعات استخاره")
else:
st.text(' منتظربمانید برای پاسخ')
try:
chat =chatgpt4(inp)
st.text_area("Chatbot's Response", value=chat , height=400)
insert_chatbot_response(inp, chat)
except Exception as e:
st.text_area("Error", value=f"An error occurred: {e}", height=200) |