Nathan Butters commited on
Commit
0ba9733
·
1 Parent(s): a0f442b

attempting to make images work with API

Browse files
Files changed (1) hide show
  1. app.py +9 -5
app.py CHANGED
@@ -9,6 +9,7 @@ from helpers.constant import *
9
  from helpers.chat import basicChat, guidedMM, mmChat
10
  import os
11
  import requests
 
12
 
13
  logger = logging.getLogger(__name__)
14
  logging.basicConfig(filename='app.log', level=logging.INFO)
@@ -48,10 +49,13 @@ enable = st.checkbox("Enable camera")
48
  picture = st.camera_input("Take a picture of your math work", disabled=not enable)
49
 
50
  if picture is not None:
51
- with open(os.path.join("tempDir","picture.png"),"wb") as f:
52
- f.write(picture.getbuffer())
53
- img_url = f"https://huggingface.co/spaces/butterswords/MM_Math_Helper/resolve/main/tempDir/picture.png"
54
- #mmChat(img_url)
55
- guidedMM(st.session_state.systemPrompt, img_url)
 
 
 
56
  else:
57
  basicChat()
 
9
  from helpers.chat import basicChat, guidedMM, mmChat
10
  import os
11
  import requests
12
+ import tempfile
13
 
14
  logger = logging.getLogger(__name__)
15
  logging.basicConfig(filename='app.log', level=logging.INFO)
 
49
  picture = st.camera_input("Take a picture of your math work", disabled=not enable)
50
 
51
  if picture is not None:
52
+ temp_dir = tempfile.TemporaryDirectory()
53
+ temp_image_path = "." + temp_dir.name + "/" + picture.name
54
+ with open(temp_image_path, "wb") as f:
55
+ f.write(picture.getvalue())
56
+
57
+ # Get image URL
58
+ logger.info(temp_image_path)
59
+ guidedMM(st.session_state.systemPrompt, temp_image_path)
60
  else:
61
  basicChat()