Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -63,15 +63,9 @@ def generate_exegesis(passage):
|
|
63 |
return "Please enter a Bible passage."
|
64 |
|
65 |
params = get_unique_parameters()
|
66 |
-
prompt = f"""<s>[INST]
|
67 |
-
|
68 |
-
|
69 |
-
Include:
|
70 |
-
1. Original language analysis
|
71 |
-
2. Historical context
|
72 |
-
3. Theological insights
|
73 |
-
4. Practical application
|
74 |
-
[/INST] Exegesis:</s>"""
|
75 |
|
76 |
result = make_api_call(prompt, params)
|
77 |
return process_response(result, "Exegesis:")
|
|
|
63 |
return "Please enter a Bible passage."
|
64 |
|
65 |
params = get_unique_parameters()
|
66 |
+
prompt = f"""<s>[INST] You are a professional Bible Scholar. Provide a detailed exegesis of the following biblical verse, including:
|
67 |
+
The original Greek text and transliteration with word-by-word analysis and meanings, historical and cultural context, and theological significance for:
|
68 |
+
{passage} [/INST] Exegesis:</s>"""
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
|
70 |
result = make_api_call(prompt, params)
|
71 |
return process_response(result, "Exegesis:")
|