vilarin commited on
Commit
2f19844
·
verified ·
1 Parent(s): 682bf9b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -2
app.py CHANGED
@@ -41,7 +41,6 @@ def process_text(text_input, unit):
41
  {"role": "user", "content": f"Hello! Could you solve {text_input}?"}
42
  ]
43
  )
44
- print(completion)
45
  return completion.choices[0].message.content
46
  return ""
47
 
@@ -72,7 +71,6 @@ def process_image(image_input, unit):
72
  temperature=0.0,
73
  max_tokens=1024,
74
  )
75
- print(response)
76
  return response.choices[0].message.content
77
 
78
 
 
41
  {"role": "user", "content": f"Hello! Could you solve {text_input}?"}
42
  ]
43
  )
 
44
  return completion.choices[0].message.content
45
  return ""
46
 
 
71
  temperature=0.0,
72
  max_tokens=1024,
73
  )
 
74
  return response.choices[0].message.content
75
 
76