anishabhatnagar commited on
Commit
0dc29d1
·
1 Parent(s): 291985c

first commit

Browse files
Files changed (3) hide show
  1. README.md +1 -1
  2. app.py +11 -0
  3. requirements.txt +1 -0
README.md CHANGED
@@ -10,4 +10,4 @@ pinned: false
10
  short_description: Steganography Demo for IARPA HIATUS project
11
  ---
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
10
  short_description: Steganography Demo for IARPA HIATUS project
11
  ---
12
 
13
+ This is a public wrapper Space for the Steganography project.
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import gradio as gr
3
+
4
+ PRIVATE_SPACE = "spaces/steganography-project/steganography-private"
5
+
6
+ HF_TOKEN = os.environ.get("HF_TOKEN")
7
+
8
+ demo = gr.Interface.load(PRIVATE_SPACE, api_key=HF_TOKEN)
9
+
10
+ if __name__ == "__main__":
11
+ demo.queue().launch()
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ gradio>=4.40.0