dcorcoran commited on
Commit
ebfd963
·
1 Parent(s): e7de063

Removed os from requirments

Browse files
Files changed (2) hide show
  1. api_client.py +1 -1
  2. requirements.txt +1 -2
api_client.py CHANGED
@@ -2,7 +2,7 @@ import requests
2
  import os
3
 
4
  #BACKEND_URL = "http://localhost:8000"
5
- BACKEND_URL = os.getenv("BACKEND_URL", "https://your-username-pokemon-backend.hf.space")
6
 
7
 
8
  def predict(image_bytes: bytes, filename: str) -> dict:
 
2
  import os
3
 
4
  #BACKEND_URL = "http://localhost:8000"
5
+ BACKEND_URL = os.getenv("BACKEND_URL", "https://huggingface.co/spaces/dcorcoran/Pokemon_Card_Image_Processor_API")
6
 
7
 
8
  def predict(image_bytes: bytes, filename: str) -> dict:
requirements.txt CHANGED
@@ -1,4 +1,3 @@
1
  streamlit
2
  requests
3
- pillow
4
- os
 
1
  streamlit
2
  requests
3
+ pillow