You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class MultiFunctionalAI:
def init(self):
# Mevcut işlevleri başlatma
self.sentiment_analyzer = pipeline("sentiment-analysis")
self.summarizer = pipeline("summarization")
self.qa_pipeline = pipeline("question-answering")
# Mevcut işlevler...
# 6. Basit Bir Web Sitesi Kurma İşlevi
def create_website(self, title, content):
"""Basit bir HTML ve CSS yapısı oluşturarak web sitesi kurar"""
# HTML ve CSS kodlarını oluştur
html_content = f"""<!DOCTYPE html>
# Klasör ve dosyaları oluştur
os.makedirs("website", exist_ok=True)
with open("website/index.html", "w") as html_file:
html_file.write(html_content)
with open("website/style.css", "w") as css_file:
css_file.write(css_content)
print("Web sitesi başarıyla oluşturuldu! 'website' klasöründe 'index.html' ve 'style.css' dosyalarına bakabilirsiniz.")
Ana İşlev: Tüm Modülleri Kapsayan Kullanıcı Arayüzü
def main():
ai = MultiFunctionalAI()
print("Hoşgeldiniz! Yapmak istediğiniz işlemi seçin:")
print("1. Eğitim İçin Duygu Analizi")
print("2. Eğitim İçin Metin Özeti")
print("3. İş İçin Metin Özeti")
print("4. PDF Dosyasından Metin Çıkarma")
print("5. Bilgi İçin Soru-Cevap")
print("6. İki Metin Arasında Benzerlik Bulma")
print("7. Basit Web Sitesi Kurma")
choice = input("Seçiminiz (1-7): ")
if choice == '7':
title = input("Web sitesinin başlığını girin: ")
content = input("Web sitesinin içeriğini girin: ")
ai.create_website(title, content)
else:
print("Geçersiz seçim. Lütfen 1-7 arasında bir sayı girin.")
if name == "main":
main()
The text was updated successfully, but these errors were encountered:
import os
class MultiFunctionalAI:
def init(self):
# Mevcut işlevleri başlatma
self.sentiment_analyzer = pipeline("sentiment-analysis")
self.summarizer = pipeline("summarization")
self.qa_pipeline = pipeline("question-answering")
{title}
{content}
© 2024 MultiFunctionalAI Web
"""}
header, footer {
background-color: #4CAF50;
color: white;
padding: 1em;
text-align: center;
width: 100%;
}
main {
max-width: 600px;
margin: 2em;
padding: 1em;
background-color: #f9f9f9;
border-radius: 8px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}"""
Ana İşlev: Tüm Modülleri Kapsayan Kullanıcı Arayüzü
def main():
ai = MultiFunctionalAI()
if name == "main":
main()
The text was updated successfully, but these errors were encountered: