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)