Curranj commited on
Commit
6e0e655
·
1 Parent(s): f3a7405

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -24,8 +24,8 @@ def gpt3(texts):
24
 
25
  # Function to elicit regex response from model
26
  def greet(prompt):
27
- txt= (f'''Perfect Python Regex Generator \n #Prompt: {prompt}\n#Regex:\n#''')
28
- regex = gpt3(txt)
29
  return regex
30
 
31
 
 
24
 
25
  # Function to elicit regex response from model
26
  def greet(prompt):
27
+ txt= (f'''#---Python Regex Generator--- \n #Prompt: {prompt}\n#Pythonic Regex:\nre''')
28
+ regex = str("re"+gpt3(txt))
29
  return regex
30
 
31