Josebert commited on
Commit
fbc8dab
·
verified ·
1 Parent(s): ecb24ba

Update App.py

Browse files
Files changed (1) hide show
  1. App.py +48 -59
App.py CHANGED
@@ -1,72 +1,61 @@
1
  import json
2
  import gradio as gr
3
- from huggingface_hub import InferenceClient
4
 
5
- # Initialize the client using the specified model.
6
- client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
 
7
 
8
- def respond(message, history: list[tuple[str, str]], system_message, max_tokens, temperature, top_p):
9
  """
10
- Builds a conversation history that includes a system instruction for Bible analysis.
11
 
12
- The system message instructs the model to act as JR‑Sacred Syntax, an expert biblical scholar
13
- specializing in analyzing Bible verses to detect figures of speech (e.g., Metaphor, Synecdoche, Hyperbole, etc.)
14
- and output a JSON array with each entry containing:
15
- - "figure": the type of figure of speech,
16
- - "phrase": the phrase in the verse,
17
- - "explanation": explanation in biblical context.
18
- """
19
- # Build the message list starting with the system message.
20
- messages = [{"role": "system", "content": system_message}]
21
-
22
- # Append previous conversation history.
23
- for user_msg, assistant_msg in history:
24
- if user_msg:
25
- messages.append({"role": "user", "content": user_msg})
26
- if assistant_msg:
27
- messages.append({"role": "assistant", "content": assistant_msg})
28
 
29
- # Append the new user message.
30
- messages.append({"role": "user", "content": message})
 
 
 
 
 
 
31
 
32
- response = ""
33
- # Stream the chat completion response.
34
- for chat_message in client.chat_completion(
35
- messages,
36
- max_tokens=max_tokens,
37
- stream=True,
38
- temperature=temperature,
39
- top_p=top_p,
40
- ):
41
- token = chat_message.choices[0].delta.content
42
- response += token
43
- yield response
44
 
45
- # Define a default system message that guides the model for Bible figure-of-speech analysis.
46
- default_system_message = (
47
- "You are JR-Sacred Syntax, an expert biblical scholar. "
48
- "When given a Bible verse, analyze it to detect any figures of speech (such as Metaphor, "
49
- "Synecdoche, Hyperbole, Simile, or Paradox) and return a JSON array where each entry includes "
50
- "'figure' (the type), 'phrase' (the exact words from the verse), and 'explanation' (why it qualifies as such) "
51
- "in a biblical context. Respond only in JSON format."
52
- )
 
 
 
 
 
 
 
 
53
 
54
- # Create the Gradio Chat Interface.
55
- demo = gr.ChatInterface(
56
- respond,
57
- additional_inputs=[
58
- gr.Textbox(value=default_system_message, label="System Message (Instruction)"),
59
- gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max New Tokens"),
60
- gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
61
- gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p (Nucleus Sampling)"),
62
- ],
63
- title="JR‑Sacred Syntax: Bible Figures of Speech Detector",
64
- description=(
65
- "Enter a Bible verse to have it analyzed for figures of speech. "
66
- "JR‑Sacred Syntax will detect and explain literary devices in the verse, "
67
- "returning the results in a structured JSON format."
68
- )
69
  )
70
 
71
  if __name__ == "__main__":
72
- demo.launch()
 
1
  import json
2
  import gradio as gr
3
+ from transformers import pipeline
4
 
5
+ # Load the text generation model (can swap for a Bible-specific LLM)
6
+ model_name = "google/flan-t5-large" # Change if needed
7
+ generator = pipeline("text2text-generation", model=model_name, trust_remote_code=True)
8
 
9
+ def analyze_bible_figure_of_speech(verse):
10
  """
11
+ Analyzes a Bible verse for figures of speech.
12
 
13
+ The function constructs a structured prompt for an LLM, requesting it to:
14
+ - Identify any figure of speech in the verse (e.g., Metaphor, Hyperbole, Synecdoche, Paradox, Simile).
15
+ - Extract the phrase demonstrating the figure of speech.
16
+ - Explain why it's a figure of speech in biblical context.
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
+ Expected Output:
19
+ A structured JSON array with:
20
+ - "figure": Type of figure of speech.
21
+ - "phrase": The phrase in the verse.
22
+ - "explanation": Explanation in biblical context.
23
+ """
24
+ if not verse.strip():
25
+ return "Please enter a Bible verse."
26
 
27
+ prompt = f"""
28
+ Analyze the following Bible verse and identify any figures of speech present (e.g., Metaphor, Hyperbole, Synecdoche, Paradox, Simile).
29
+ Provide a JSON response with:
30
+ - "figure": Type of figure of speech.
31
+ - "phrase": The phrase in the verse.
32
+ - "explanation": Why it is a figure of speech in biblical context.
 
 
 
 
 
 
33
 
34
+ Bible Verse: \"{verse}\"
35
+ """
36
+
37
+ try:
38
+ # Generate the output from the LLM
39
+ result = generator(prompt, max_length=512, num_return_sequences=1)
40
+ generated_text = result[0]['generated_text']
41
+
42
+ # Try parsing the output as JSON
43
+ try:
44
+ output_json = json.loads(generated_text)
45
+ return json.dumps(output_json, indent=2) # Pretty-print JSON
46
+ except json.JSONDecodeError:
47
+ return generated_text # Return raw text if JSON parsing fails
48
+ except Exception as e:
49
+ return f"Error: {str(e)}"
50
 
51
+ # Gradio UI
52
+ interface = gr.Interface(
53
+ fn=analyze_bible_figure_of_speech,
54
+ inputs=gr.Textbox(label="Enter a Bible Verse", placeholder="E.g., 'I am the vine, you are the branches' - John 15:5", lines=3),
55
+ outputs=gr.Textbox(label="Figures of Speech Analysis (JSON)"),
56
+ title="Bible Figures of Speech Detector",
57
+ description="Enter a Bible verse to analyze its figures of speech, such as metaphor, simile, or hyperbole. The app will identify the figure, extract the phrase, and provide an explanation."
 
 
 
 
 
 
 
 
58
  )
59
 
60
  if __name__ == "__main__":
61
+ interface.launch()