Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -106,50 +106,51 @@ demo.queue(max_size=20, concurrency_count=20).launch(debug=True)
|
|
106 |
|
107 |
import requests
|
108 |
import xml.etree.ElementTree as ET
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
'
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
|
|
|
106 |
|
107 |
import requests
|
108 |
import xml.etree.ElementTree as ET
|
109 |
+
from transformers import pipeline
|
110 |
+
|
111 |
+
# Hugging Face pipeline'ını yükle
|
112 |
+
nlp = pipeline('text-generation', model='EleutherAI/gpt-neo-2.7B')
|
113 |
+
|
114 |
+
# API url'si
|
115 |
+
url = 'https://bizimhesap.com/api/product/getproductsasxml?apikey=6F4BAF303FA240608A39653824B6C495'
|
116 |
+
|
117 |
+
# Verileri al
|
118 |
+
response = requests.get(url)
|
119 |
+
xml_data = response.content
|
120 |
+
|
121 |
+
# XML verilerini ayrıştır
|
122 |
+
root = ET.fromstring(xml_data)
|
123 |
+
products = root.findall('urunler/urun')
|
124 |
+
|
125 |
+
# Chatbot'a girdi al
|
126 |
+
input_text = input("Merhaba, ne yapabilirim? ")
|
127 |
+
|
128 |
+
# Girdiye göre yanıt üret
|
129 |
+
if 'stok' in input_text and ('durum' in input_text or 'seviye' in input_text):
|
130 |
+
# Eğer kullanıcı stok durumunu sorduysa
|
131 |
+
for product in products:
|
132 |
+
if product.find('urun_ad').text.lower() in input_text.lower():
|
133 |
+
stok = int(product.find('stok').text)
|
134 |
+
if stok > 0:
|
135 |
+
response_text = f"{product.find('urun_ad').text} ürününden {stok} adet mevcut."
|
136 |
+
else:
|
137 |
+
response_text = f"{product.find('urun_ad').text} ürünü stoklarda yok."
|
138 |
+
break
|
139 |
+
else:
|
140 |
+
response_text = "Aradığınız ürün stoklarda yok."
|
141 |
+
elif 'fiyat' in input_text:
|
142 |
+
# Eğer kullanıcı fiyat bilgisi istiyorsa
|
143 |
+
for product in products:
|
144 |
+
if product.find('urun_ad').text.lower() in input_text.lower():
|
145 |
+
price = float(product.find('satis_fiyat').text)
|
146 |
+
response_text = f"{product.find('urun_ad').text} ürününün fiyatı {price:.2f} TL."
|
147 |
+
break
|
148 |
+
else:
|
149 |
+
response_text = "Aradığınız ürün fiyatı hakkında bilgi verilemedi."
|
150 |
+
else:
|
151 |
+
# Girdiye göre otomatik bir yanıt üret
|
152 |
+
generated_text = nlp(input_text, max_length=50, do_sample=True, temperature=0.7)
|
153 |
+
response_text = generated_text[0]['generated_text'].strip()
|
154 |
+
|
155 |
+
# Yanıtı yazdır
|
156 |
+
print(response_text)
|