Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Yapay zeka kogfi #2399

Open
ahmetemin-70 opened this issue Oct 28, 2024 · 1 comment
Open

Yapay zeka kogfi #2399

ahmetemin-70 opened this issue Oct 28, 2024 · 1 comment

Comments

@ahmetemin-70
Copy link

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")

# 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>
<title>{title}</title>

{title}

{content}

© 2024 MultiFunctionalAI Web

"""
    css_content = """body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
color: #333;

}

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);
}"""

    # 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()

@NitkarshChourasia
Copy link
Contributor

Close this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants