Spaces:
Runtime error
Runtime error
app.py
Browse files
app.py
ADDED
@@ -0,0 +1,438 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import openai
|
3 |
+
import pandas as pd
|
4 |
+
from datetime import datetime
|
5 |
+
from weasyprint import HTML
|
6 |
+
from jinja2 import Template
|
7 |
+
import os
|
8 |
+
|
9 |
+
# Egzersiz veritabanı
|
10 |
+
exercise_db = {
|
11 |
+
"Kardiyovasküler": ["Koşu", "Yürüyüş", "Bisiklet", "Yüzme", "İp atlama"],
|
12 |
+
"Güç Antrenmanı": ["Şınav", "Mekik", "Squat", "Deadlift", "Bench Press"],
|
13 |
+
"Esneklik": ["Yoga", "Pilates", "Germe Egzersizleri"],
|
14 |
+
"HIIT": ["Burpees", "Mountain Climbers", "Jump Squats", "High Knees"]
|
15 |
+
}
|
16 |
+
html_template = """
|
17 |
+
<!DOCTYPE html>
|
18 |
+
<html>
|
19 |
+
<head>
|
20 |
+
<meta charset="UTF-8">
|
21 |
+
<style>
|
22 |
+
body {
|
23 |
+
font-family: Arial, sans-serif;
|
24 |
+
line-height: 1.6;
|
25 |
+
margin: 40px;
|
26 |
+
color: #333;
|
27 |
+
}
|
28 |
+
.header {
|
29 |
+
text-align: center;
|
30 |
+
color: #2c3e50;
|
31 |
+
margin-bottom: 40px;
|
32 |
+
border-bottom: 2px solid #3498db;
|
33 |
+
padding-bottom: 20px;
|
34 |
+
}
|
35 |
+
.section {
|
36 |
+
margin: 30px 0;
|
37 |
+
padding: 25px;
|
38 |
+
background: #f8f9fa;
|
39 |
+
border-radius: 10px;
|
40 |
+
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
41 |
+
}
|
42 |
+
.section h2 {
|
43 |
+
color: #2980b9;
|
44 |
+
border-bottom: 1px solid #bdc3c7;
|
45 |
+
padding-bottom: 10px;
|
46 |
+
}
|
47 |
+
.metrics {
|
48 |
+
display: grid;
|
49 |
+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
50 |
+
gap: 20px;
|
51 |
+
margin: 20px 0;
|
52 |
+
}
|
53 |
+
.metric-box {
|
54 |
+
text-align: center;
|
55 |
+
padding: 20px;
|
56 |
+
background: #fff;
|
57 |
+
border-radius: 8px;
|
58 |
+
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
|
59 |
+
}
|
60 |
+
.metric-box h3 {
|
61 |
+
color: #3498db;
|
62 |
+
margin-bottom: 15px;
|
63 |
+
}
|
64 |
+
.table {
|
65 |
+
width: 100%;
|
66 |
+
border-collapse: collapse;
|
67 |
+
margin: 20px 0;
|
68 |
+
background: #fff;
|
69 |
+
}
|
70 |
+
.table th, .table td {
|
71 |
+
border: 1px solid #e1e1e1;
|
72 |
+
padding: 12px;
|
73 |
+
text-align: left;
|
74 |
+
}
|
75 |
+
.table th {
|
76 |
+
background-color: #3498db;
|
77 |
+
color: white;
|
78 |
+
}
|
79 |
+
.table tr:nth-child(even) {
|
80 |
+
background-color: #f8f9fa;
|
81 |
+
}
|
82 |
+
.ai-recommendations {
|
83 |
+
background: #fff;
|
84 |
+
padding: 20px;
|
85 |
+
border-radius: 8px;
|
86 |
+
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
|
87 |
+
margin-top: 20px;
|
88 |
+
}
|
89 |
+
</style>
|
90 |
+
</head>
|
91 |
+
<body>
|
92 |
+
<div class="header">
|
93 |
+
<h1>🏋️♂️ Kişisel Fitness Planı</h1>
|
94 |
+
<p>Oluşturulma Tarihi: {{ creation_date }}</p>
|
95 |
+
</div>
|
96 |
+
<div class="section">
|
97 |
+
<h2>👤 Kişisel Bilgiler</h2>
|
98 |
+
<div class="metrics">
|
99 |
+
<div class="metric-box">
|
100 |
+
<h3>{{ name }}</h3>
|
101 |
+
<p>{{ age }} yaşında</p>
|
102 |
+
</div>
|
103 |
+
<div class="metric-box">
|
104 |
+
<h3>Fiziksel Ölçümler</h3>
|
105 |
+
<p>Boy: {{ height }} cm</p>
|
106 |
+
<p>Kilo: {{ weight }} kg</p>
|
107 |
+
<p>{{ bmi_result }}</p>
|
108 |
+
</div>
|
109 |
+
<div class="metric-box">
|
110 |
+
<h3>Hedef</h3>
|
111 |
+
<p>{{ goal }}</p>
|
112 |
+
</div>
|
113 |
+
</div>
|
114 |
+
</div>
|
115 |
+
<div class="section">
|
116 |
+
<h2>📋 AI Önerileri</h2>
|
117 |
+
<div class="ai-recommendations">
|
118 |
+
{{ ai_recommendation }}
|
119 |
+
</div>
|
120 |
+
</div>
|
121 |
+
<div class="section">
|
122 |
+
<h2>💪 Önerilen Egzersizler</h2>
|
123 |
+
<table class="table">
|
124 |
+
<tr>
|
125 |
+
<th>Kategori</th>
|
126 |
+
<th>Egzersizler</th>
|
127 |
+
</tr>
|
128 |
+
{% for category, exercises in exercise_list.items() %}
|
129 |
+
<tr>
|
130 |
+
<td>{{ category }}</td>
|
131 |
+
<td>{{ ", ".join(exercises) }}</td>
|
132 |
+
</tr>
|
133 |
+
{% endfor %}
|
134 |
+
</table>
|
135 |
+
</div>
|
136 |
+
</body>
|
137 |
+
</html>
|
138 |
+
"""
|
139 |
+
|
140 |
+
class FitnessPlan:
|
141 |
+
def __init__(self):
|
142 |
+
self.current_plan = None
|
143 |
+
self.chat_history = []
|
144 |
+
self.api_key = None
|
145 |
+
self.api_configured = False
|
146 |
+
|
147 |
+
def configure_api(self, api_key):
|
148 |
+
"""API yapılandırmasını ayarla"""
|
149 |
+
if api_key and api_key.strip():
|
150 |
+
self.api_key = api_key
|
151 |
+
openai.api_base = "https://integrate.api.nvidia.com/v1"
|
152 |
+
openai.api_key = api_key
|
153 |
+
self.api_configured = True
|
154 |
+
return "✅ API yapılandırması başarıyla tamamlandı!"
|
155 |
+
return "❌ Lütfen geçerli bir API anahtarı girin!"
|
156 |
+
|
157 |
+
def store_plan(self, plan):
|
158 |
+
self.current_plan = plan
|
159 |
+
|
160 |
+
def get_motivation(self):
|
161 |
+
"""Rastgele motivasyon sözü ve şarkı seç"""
|
162 |
+
quote = random.choice(motivation_quotes)
|
163 |
+
song = random.choice(motivation_songs)
|
164 |
+
return quote, song
|
165 |
+
|
166 |
+
def generate_pdf(self):
|
167 |
+
"""Fitness planını PDF olarak oluştur"""
|
168 |
+
if not self.current_plan:
|
169 |
+
return None
|
170 |
+
|
171 |
+
quote, song = self.get_motivation()
|
172 |
+
|
173 |
+
template = Template(html_template)
|
174 |
+
html_content = template.render(
|
175 |
+
creation_date=datetime.now().strftime("%d/%m/%Y"),
|
176 |
+
name=self.current_plan["user_info"]["name"],
|
177 |
+
age=self.current_plan["user_info"]["age"],
|
178 |
+
height=self.current_plan["user_info"]["height"],
|
179 |
+
weight=self.current_plan["user_info"]["weight"],
|
180 |
+
goal=self.current_plan["user_info"]["goal"],
|
181 |
+
bmi_result=self.current_plan["bmi_result"],
|
182 |
+
ai_recommendation=self.current_plan["ai_recommendation"],
|
183 |
+
exercise_list=exercise_db,
|
184 |
+
motivation_quote=quote,
|
185 |
+
motivation_song=song
|
186 |
+
)
|
187 |
+
|
188 |
+
pdf_path = f"fitness_plan_{datetime.now().strftime('%Y%m%d_%H%M%S')}.pdf"
|
189 |
+
|
190 |
+
# HTML içeriği alıp PDF'ye dönüştür
|
191 |
+
HTML(string=html_content).write_pdf(pdf_path)
|
192 |
+
|
193 |
+
return pdf_path
|
194 |
+
fitness_plan = FitnessPlan()
|
195 |
+
|
196 |
+
def get_ai_recommendation(user_info):
|
197 |
+
"""AI'dan kişiselleştirilmiş fitness tavsiyesi al"""
|
198 |
+
if not fitness_plan.api_configured:
|
199 |
+
return "Lütfen önce API anahtarınızı yapılandırın!"
|
200 |
+
|
201 |
+
prompt = f"""
|
202 |
+
Aşağıdaki bilgilere sahip kullanıcı için detaylı bir fitness planı oluştur:
|
203 |
+
Yaş: {user_info['age']}
|
204 |
+
Kilo: {user_info['weight']} kg
|
205 |
+
Boy: {user_info['height']} cm
|
206 |
+
Hedef: {user_info['goal']}
|
207 |
+
Fitness Seviyesi: {user_info['fitness_level']}
|
208 |
+
Sağlık Durumu: {user_info['health_conditions']}
|
209 |
+
Lütfen şunları içeren bir plan oluştur:
|
210 |
+
1. Haftalık egzersiz programı
|
211 |
+
2. Beslenme önerileri
|
212 |
+
3. Hedeflerine ulaşması için özel tavsiyeler
|
213 |
+
4. İlerleme takibi için öneriler
|
214 |
+
Lütfen yanıtını HTML formatında, düzenli başlıklar ve listeler kullanarak oluştur.
|
215 |
+
"""
|
216 |
+
|
217 |
+
try:
|
218 |
+
response = openai.ChatCompletion.create(
|
219 |
+
model="nvidia/llama-3.1-nemotron-70b-instruct",
|
220 |
+
messages=[{"role": "user", "content": prompt}],
|
221 |
+
temperature=0.7,
|
222 |
+
max_tokens=1024
|
223 |
+
)
|
224 |
+
return response.choices[0].message['content']
|
225 |
+
except Exception as e:
|
226 |
+
return f"AI tavsiyesi alınırken bir hata oluştu: {str(e)}"
|
227 |
+
|
228 |
+
def calculate_bmi(weight, height):
|
229 |
+
"""BMI hesaplama"""
|
230 |
+
height_m = height / 100
|
231 |
+
bmi = weight / (height_m ** 2)
|
232 |
+
|
233 |
+
if bmi < 18.5:
|
234 |
+
category = "Zayıf"
|
235 |
+
elif 18.5 <= bmi < 25:
|
236 |
+
category = "Normal"
|
237 |
+
elif 25 <= bmi < 30:
|
238 |
+
category = "Fazla Kilolu"
|
239 |
+
else:
|
240 |
+
category = "Obez"
|
241 |
+
|
242 |
+
return f"BMI: {bmi:.1f} - Kategori: {category}"
|
243 |
+
|
244 |
+
# create_workout_plan fonksiyonunu güncelliyorum
|
245 |
+
def create_workout_plan(name, age, weight, height, goal, fitness_level, health_conditions):
|
246 |
+
if not fitness_plan.api_configured:
|
247 |
+
return "⚠️ Lütfen önce API anahtarınızı yapılandırın!"
|
248 |
+
|
249 |
+
user_info = {
|
250 |
+
"name": name,
|
251 |
+
"age": age,
|
252 |
+
"weight": weight,
|
253 |
+
"height": height,
|
254 |
+
"goal": goal,
|
255 |
+
"fitness_level": fitness_level,
|
256 |
+
"health_conditions": health_conditions
|
257 |
+
}
|
258 |
+
|
259 |
+
bmi_result = calculate_bmi(weight, height)
|
260 |
+
ai_recommendation = get_ai_recommendation(user_info)
|
261 |
+
quote, song = fitness_plan.get_motivation()
|
262 |
+
|
263 |
+
# Planı sakla
|
264 |
+
fitness_plan.store_plan({
|
265 |
+
"user_info": user_info,
|
266 |
+
"bmi_result": bmi_result,
|
267 |
+
"ai_recommendation": ai_recommendation
|
268 |
+
})
|
269 |
+
|
270 |
+
response = f"""
|
271 |
+
## 👤 Kişisel Bilgiler
|
272 |
+
- İsim: {name}
|
273 |
+
- Yaş: {age}
|
274 |
+
- Kilo: {weight} kg
|
275 |
+
- Boy: {height} cm
|
276 |
+
- Hedef: {goal}
|
277 |
+
- Fitness Seviyesi: {fitness_level}
|
278 |
+
|
279 |
+
## 📊 Fiziksel Değerlendirme
|
280 |
+
{bmi_result}
|
281 |
+
|
282 |
+
## 🎯 Günün Motivasyon Sözü
|
283 |
+
"{quote}"
|
284 |
+
|
285 |
+
## 🎵 Size Özel Motivasyon Şarkısı
|
286 |
+
{song}
|
287 |
+
|
288 |
+
## 🤖 AI Önerileri
|
289 |
+
{ai_recommendation}
|
290 |
+
|
291 |
+
## 💪 Önerilen Egzersiz Kategorileri
|
292 |
+
"""
|
293 |
+
|
294 |
+
for category, exercises in exercise_db.items():
|
295 |
+
response += f"\n### {category}\n"
|
296 |
+
response += "\n".join([f"- {exercise}" for exercise in exercises])
|
297 |
+
response += "\n"
|
298 |
+
|
299 |
+
return response
|
300 |
+
|
301 |
+
def download_plan():
|
302 |
+
"""Planı PDF olarak indir"""
|
303 |
+
if not fitness_plan.current_plan:
|
304 |
+
return None
|
305 |
+
return fitness_plan.generate_pdf()
|
306 |
+
|
307 |
+
def chat_with_ai(api_key, message, history):
|
308 |
+
"""AI ile sohbet et"""
|
309 |
+
if not fitness_plan.api_configured:
|
310 |
+
return history + [[message, "⚠️ Lütfen önce API anahtarınızı yapılandırın!"]]
|
311 |
+
|
312 |
+
if fitness_plan.current_plan is None:
|
313 |
+
return history + [[message, "Lütfen önce bir fitness planı oluşturun."]]
|
314 |
+
|
315 |
+
# Mevcut planı string olarak format
|
316 |
+
current_plan_str = f"""
|
317 |
+
Kişisel Bilgiler:
|
318 |
+
İsim: {fitness_plan.current_plan['user_info']['name']}
|
319 |
+
Yaş: {fitness_plan.current_plan['user_info']['age']}
|
320 |
+
Boy: {fitness_plan.current_plan['user_info']['height']} cm
|
321 |
+
Kilo: {fitness_plan.current_plan['user_info']['weight']} kg
|
322 |
+
Hedef: {fitness_plan.current_plan['user_info']['goal']}
|
323 |
+
BMI Sonucu: {fitness_plan.current_plan['bmi_result']}
|
324 |
+
"""
|
325 |
+
|
326 |
+
prompt = f"""
|
327 |
+
Mevcut fitness planı:
|
328 |
+
{current_plan_str}
|
329 |
+
|
330 |
+
AI Önerileri:
|
331 |
+
{fitness_plan.current_plan['ai_recommendation']}
|
332 |
+
|
333 |
+
Kullanıcı sorusu: {message}
|
334 |
+
Lütfen kullanıcının sorusunu yukarıdaki fitness planı bağlamında yanıtla.
|
335 |
+
"""
|
336 |
+
|
337 |
+
try:
|
338 |
+
response = openai.ChatCompletion.create(
|
339 |
+
model="nvidia/llama-3.1-nemotron-70b-instruct",
|
340 |
+
messages=[{"role": "user", "content": prompt}],
|
341 |
+
temperature=0.7,
|
342 |
+
max_tokens=1024
|
343 |
+
)
|
344 |
+
ai_response = response.choices[0].message['content']
|
345 |
+
except Exception as e:
|
346 |
+
ai_response = f"Yanıt alınırken bir hata oluştu: {str(e)}"
|
347 |
+
|
348 |
+
return history + [[message, ai_response]]
|
349 |
+
|
350 |
+
|
351 |
+
# Gradio arayüzü
|
352 |
+
with gr.Blocks(title="AI Fitness Asistanı", theme=gr.themes.Soft()) as demo:
|
353 |
+
gr.Markdown("""
|
354 |
+
# 🏋️♂️ AI Destekli Fitness Asistanı---Deployed by Eray Coşkun
|
355 |
+
Kişiselleştirilmiş fitness planınızı oluşturun ve AI ile planınız hakkında sohbet edin!
|
356 |
+
""")
|
357 |
+
|
358 |
+
with gr.Tab("API Yapılandırması"):
|
359 |
+
gr.Markdown("""
|
360 |
+
### 🔑 API Yapılandırması
|
361 |
+
Uygulamayı kullanmadan önce NVIDIA API anahtarınızı yapılandırmalısınız.
|
362 |
+
""")
|
363 |
+
api_key_input = gr.Textbox(
|
364 |
+
label="API Anahtarınızı Giriniz (API anahtarınız yoksa [buradan](https://build.nvidia.com/nvidia/llama-3_1-nemotron-70b-instruct) alın)",
|
365 |
+
type="password"
|
366 |
+
)
|
367 |
+
api_status = gr.Markdown()
|
368 |
+
api_submit = gr.Button("API'yi Yapılandır", variant="primary")
|
369 |
+
|
370 |
+
with gr.Tab("Plan Oluştur"):
|
371 |
+
with gr.Row():
|
372 |
+
with gr.Column():
|
373 |
+
name_input = gr.Textbox(label="Adınız")
|
374 |
+
age_input = gr.Number(label="Yaşınız", minimum=15, maximum=100)
|
375 |
+
weight_input = gr.Number(label="Kilonuz (kg)", minimum=30, maximum=200)
|
376 |
+
height_input = gr.Number(label="Boyunuz (cm)", minimum=120, maximum=220)
|
377 |
+
|
378 |
+
with gr.Column():
|
379 |
+
goal_input = gr.Dropdown(
|
380 |
+
label="Fitness Hedefiniz",
|
381 |
+
choices=["Kilo Vermek", "Kas Kazanmak", "Genel Sağlık", "Güç Artırmak"]
|
382 |
+
)
|
383 |
+
fitness_level_input = gr.Radio(
|
384 |
+
label="Fitness Seviyeniz",
|
385 |
+
choices=["Başlangıç", "Orta", "İleri"]
|
386 |
+
)
|
387 |
+
health_input = gr.Textbox(
|
388 |
+
label="Sağlık Durumunuz (varsa)",
|
389 |
+
placeholder="Örn: Diyabet, Tansiyon, vs. yoksa 'yok' yazın"
|
390 |
+
)
|
391 |
+
|
392 |
+
with gr.Row():
|
393 |
+
submit_btn = gr.Button("Plan Oluştur", variant="primary")
|
394 |
+
download_btn = gr.Button("PDF Olarak İndir", variant="secondary")
|
395 |
+
|
396 |
+
output = gr.Markdown()
|
397 |
+
pdf_output = gr.File(label="İndirilebilir PDF")
|
398 |
+
|
399 |
+
with gr.Tab("AI ile Sohbet"):
|
400 |
+
gr.Markdown("""
|
401 |
+
### 💬 Planınız Hakkında Sohbet Edin
|
402 |
+
Oluşturulan plan hakkında sorularınızı sorun ve AI'dan kişiselleştirilmiş yanıtlar alın.
|
403 |
+
""")
|
404 |
+
chatbot = gr.Chatbot(height=400)
|
405 |
+
msg = gr.Textbox(label="Planınız hakkında soru sorun",
|
406 |
+
placeholder="Örn: Bu plan ile hedefime ne kadar sürede ulaşabilirim?")
|
407 |
+
with gr.Row():
|
408 |
+
clear = gr.Button("Sohbeti Temizle")
|
409 |
+
submit_msg = gr.Button("Gönder", variant="primary")
|
410 |
+
|
411 |
+
# Event handlers
|
412 |
+
api_submit.click(
|
413 |
+
fitness_plan.configure_api,
|
414 |
+
inputs=[api_key_input],
|
415 |
+
outputs=[api_status]
|
416 |
+
)
|
417 |
+
|
418 |
+
submit_btn.click(
|
419 |
+
create_workout_plan,
|
420 |
+
inputs=[name_input, age_input, weight_input, height_input,
|
421 |
+
goal_input, fitness_level_input, health_input],
|
422 |
+
outputs=output
|
423 |
+
)
|
424 |
+
|
425 |
+
download_btn.click(
|
426 |
+
download_plan,
|
427 |
+
inputs=[],
|
428 |
+
outputs=pdf_output
|
429 |
+
)
|
430 |
+
|
431 |
+
# Sohbet kutusundaki mesajı gönderme ve temizleme işlevleri
|
432 |
+
msg.submit(chat_with_ai, [api_key_input, msg, chatbot], chatbot)
|
433 |
+
submit_msg.click(chat_with_ai, [api_key_input, msg, chatbot], chatbot)
|
434 |
+
clear.click(lambda: None, None, chatbot, queue=False)
|
435 |
+
|
436 |
+
# Uygulamayı başlat
|
437 |
+
if __name__ == "__main__":
|
438 |
+
demo.launch()
|