From 992686cc8354b2b22f8d3b58cc3272e1083159c7 Mon Sep 17 00:00:00 2001 From: Titusz Pan Date: Tue, 13 Aug 2024 19:14:04 +0200 Subject: [PATCH] feat: add main application file to launch demo and update README.md --- README.md | 1 - app.py | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 app.py diff --git a/README.md b/README.md index 6533dfa..007c95c 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ colorFrom: red colorTo: blue sdk: gradio sdk_version: 4.41.0 -app_file: iscc_sct/demo.py pinned: true license: CC-BY-NC-SA-4.0 short_description: Cross Lingual Similarity Preserving Text Simprints diff --git a/app.py b/app.py new file mode 100644 index 0000000..e27a6df --- /dev/null +++ b/app.py @@ -0,0 +1,4 @@ +from iscc_sct.demo import demo + +if __name__ == "__main__": + demo.launch()