-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsefaria2.py
99 lines (79 loc) · 2.6 KB
/
sefaria2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import streamlit as st
from openai import OpenAI
import requests
import os
temperature = 0.2
max_tokens = 100 ##
# מפתח API
openai_api_key = os.getenv("OPENAI_API_KEY")
prompt_file_name = "prompt_he.txt"
content = ""
# מוודאים שהקובץ נמצא בתיקייה הנוכחית
current_dir = os.getcwd() # מחזיר את הנתיב לתיקייה הנוכחית
file_path = os.path.join(current_dir, prompt_file_name)
try:
# קריאת תוכן הקובץ
with open(file_path, 'r', encoding='utf-8') as file:
content = file.read()
except FileNotFoundError:
print(f"שגיאה: הקובץ '{prompt_file_name}' לא נמצא בתיקייה {current_dir}.")
except Exception as e:
print(f"שגיאה: {e}")
print(content)
# יצירת מפתח API של OpenAI
client = OpenAI(api_key=openai_api_key)
# פונקציה למשיכת טקסט מ-Sefaria
def fetch_sefaria_text():
base_url = "https://www.sefaria.org/api/index"
response = requests.get(base_url)
if response.status_code == 200:
data = response.json()
return data.get("he", "טקסט לא נמצא")
else:
return f"שגיאה בקבלת נתונים: {response.status_code}"
# פונקציה לשליחת שאלה ל-GPT
def ask_gpt(user_question):
prompt = f"השאלה: {user_question}\nענה בהתבסס על הטקסט בלבד."
response = client.chat.completions.create(
model="gpt-4o",
messages=[
{"role": "system", "content": content},
{"role": "user", "content": prompt}
],
temperature = temperature,
max_tokens = max_tokens
)
return response.choices[0].message.content
# הוספת CSS לעמוד עבור RTL
st.markdown(
"""
<style>
body {
direction: rtl;
text-align: right;
}
.stTextInput label {
float: right;
}
.stButton button {
float: right;
}
</style>
""",
unsafe_allow_html=True,
)
# אפליקציית Streamlit
st.title('שו"ת עם הדרשן הדיגיטלי')
# קבלת שאלה מהמשתמש
user_question = st.text_input("מהי שאלתך?")
# קבלת תשובה מהבוט
if st.button("לקבלת תשובה"):
if user_question:
try:
answer = ask_gpt(user_question)
st.success("תשובת הבוט:")
st.write(answer)
except Exception as e:
st.error(f"אירעה שגיאה: {e}")
else:
st.warning("אנא הכנס שאלה.")