selamw commited on
Commit
3f2b2d5
·
verified ·
1 Parent(s): 17e2f81

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -12
app.py CHANGED
@@ -15,21 +15,28 @@ bnb_config = BitsAndBytesConfig(load_in_8bit=True)
15
 
16
 
17
  def convert_to_markdown(input_text):
18
- # Split the input text into sections based on the '**' delimiter
19
- sections = input_text.split("**")
 
 
 
 
 
 
 
20
 
21
- # Initialize the formatted output with the bird name
22
- formatted_output = f"**{sections[0].strip()}**\n"
23
 
24
- # Process each section to format it
25
- for i in range(1, len(sections), 2):
26
- if i + 1 < len(sections):
27
- # Use '##' for subheadings and clean up the text
28
- header = sections[i].strip() + "** "
29
- content = sections[i + 1].strip()
30
- formatted_output += f"\n**{header}{content}\n"
31
 
32
- # Return the formatted output
 
 
33
  return formatted_output.strip()
34
 
35
  @spaces.GPU
 
15
 
16
 
17
  def convert_to_markdown(input_text):
18
+ """Converts bird information text to Markdown format,
19
+ making specific keywords bold and adding headings.
20
+
21
+ Args:
22
+ input_text (str): The input text containing bird information.
23
+
24
+ Returns:
25
+ str: The formatted Markdown text.
26
+ """
27
 
28
+ bold_words = ['Look:', 'Cool Fact!:', 'Habitat:', 'Food:', 'Birdie Behaviors:']
 
29
 
30
+ # Split into title and content based on the first ":", handling extra whitespace
31
+ title, content = map(str.strip, input_text.split(":", 1))
32
+
33
+ # Bold the keywords
34
+ for word in bold_words:
35
+ content = content.replace(word, f'\n**{word}**\n')
 
36
 
37
+ # Construct the Markdown output with headings
38
+ formatted_output = f"** {title} **\n{content}"
39
+
40
  return formatted_output.strip()
41
 
42
  @spaces.GPU