Spaces:
Sleeping
Sleeping
| """ | |
| Prompt Mühendisi Chatbot - Ana Uygulama Dosyası | |
| Bu dosya, Hugging Face'de deployment için ana giriş noktasıdır. | |
| """ | |
| import streamlit as st | |
| import os | |
| from dotenv import load_dotenv | |
| # Kendi modüllerimizi içe aktar | |
| from prompt_templates import ( | |
| PROMPT_CATEGORIES, | |
| predict_category, | |
| extract_parameters, | |
| create_prompt | |
| ) | |
| from chatbot_backend import PromptEngineerChatbot | |
| from api_integrations import ( | |
| APIManager, | |
| OpenAIHandler, | |
| GeminiHandler, | |
| OpenRouterHandler | |
| ) | |
| from streamlit_ui import main | |
| # .env dosyasını yükle (varsa) | |
| load_dotenv(encoding="latin-1") | |
| # Ana uygulamayı çalıştır | |
| if __name__ == "__main__": | |
| main() | |