MartinT commited on
Commit
2b4d75c
1 Parent(s): f844256

feat: Init.

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +5 -1
  2. .gitignore +1 -0
  3. Dockerfile +18 -0
  4. examples/.DS_Store +0 -0
  5. examples/.gitignore +1 -0
  6. examples/.python-version +1 -0
  7. examples/__init__.py +0 -0
  8. examples/__pycache__/__init__.cpython-37.pyc +0 -0
  9. examples/__pycache__/__init__.cpython-39.pyc +0 -0
  10. examples/__pycache__/audio_annotator.cpython-39.pyc +0 -0
  11. examples/__pycache__/button.cpython-39.pyc +0 -0
  12. examples/__pycache__/chatbot.cpython-38.pyc +0 -0
  13. examples/__pycache__/chatbot.cpython-39.pyc +0 -0
  14. examples/__pycache__/chatbot_stream.cpython-39.pyc +0 -0
  15. examples/__pycache__/choice_group.cpython-39.pyc +0 -0
  16. examples/__pycache__/color_picker.cpython-39.pyc +0 -0
  17. examples/__pycache__/combobox.cpython-37.pyc +0 -0
  18. examples/__pycache__/combobox.cpython-39.pyc +0 -0
  19. examples/__pycache__/copyable_text.cpython-39.pyc +0 -0
  20. examples/__pycache__/counter_broadcast.cpython-39.pyc +0 -0
  21. examples/__pycache__/counter_multicast.cpython-39.pyc +0 -0
  22. examples/__pycache__/counter_unicast.cpython-39.pyc +0 -0
  23. examples/__pycache__/demo.cpython-39.pyc +0 -0
  24. examples/__pycache__/dropdown.cpython-37.pyc +0 -0
  25. examples/__pycache__/dropdown.cpython-39.pyc +0 -0
  26. examples/__pycache__/file_stream.cpython-39.pyc +0 -0
  27. examples/__pycache__/file_upload.cpython-37.pyc +0 -0
  28. examples/__pycache__/file_upload.cpython-39.pyc +0 -0
  29. examples/__pycache__/file_upload_compact.cpython-39.pyc +0 -0
  30. examples/__pycache__/form_menu.cpython-39.pyc +0 -0
  31. examples/__pycache__/form_visibility.cpython-39.pyc +0 -0
  32. examples/__pycache__/graphics_path.cpython-39.pyc +0 -0
  33. examples/__pycache__/hash_routing.cpython-39.pyc +0 -0
  34. examples/__pycache__/header.cpython-39.pyc +0 -0
  35. examples/__pycache__/http_client.cpython-39.pyc +0 -0
  36. examples/__pycache__/image_annotator.cpython-37.pyc +0 -0
  37. examples/__pycache__/image_annotator.cpython-39.pyc +0 -0
  38. examples/__pycache__/image_popup.cpython-39.pyc +0 -0
  39. examples/__pycache__/inline.cpython-39.pyc +0 -0
  40. examples/__pycache__/issue_tracker.cpython-39.pyc +0 -0
  41. examples/__pycache__/link.cpython-39.pyc +0 -0
  42. examples/__pycache__/markdown_submit_text.cpython-39.pyc +0 -0
  43. examples/__pycache__/menu.cpython-37.pyc +0 -0
  44. examples/__pycache__/menu.cpython-39.pyc +0 -0
  45. examples/__pycache__/meta_dialog.cpython-39.pyc +0 -0
  46. examples/__pycache__/meta_dialog_closable.cpython-39.pyc +0 -0
  47. examples/__pycache__/meta_notification_bar.cpython-39.pyc +0 -0
  48. examples/__pycache__/meta_notification_bar_closable.cpython-39.pyc +0 -0
  49. examples/__pycache__/meta_theme.cpython-39.pyc +0 -0
  50. examples/__pycache__/nav.cpython-39.pyc +0 -0
.gitattributes CHANGED
@@ -27,8 +27,12 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
  *.tar.* filter=lfs diff=lfs merge=lfs -text
28
  *.tflite filter=lfs diff=lfs merge=lfs -text
29
  *.tgz filter=lfs diff=lfs merge=lfs -text
30
- *.wasm filter=lfs diff=lfs merge=lfs -text
31
  *.xz filter=lfs diff=lfs merge=lfs -text
32
  *.zip filter=lfs diff=lfs merge=lfs -text
33
  *.zst filter=lfs diff=lfs merge=lfs -text
34
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
27
  *.tar.* filter=lfs diff=lfs merge=lfs -text
28
  *.tflite filter=lfs diff=lfs merge=lfs -text
29
  *.tgz filter=lfs diff=lfs merge=lfs -text
 
30
  *.xz filter=lfs diff=lfs merge=lfs -text
31
  *.zip filter=lfs diff=lfs merge=lfs -text
32
  *.zst filter=lfs diff=lfs merge=lfs -text
33
  *tfevents* filter=lfs diff=lfs merge=lfs -text
34
+ *.whl filter=lfs diff=lfs merge=lfs -text
35
+ *.data filter=lfs diff=lfs merge=lfs -text
36
+ *.asm.wasm filter=lfs diff=lfs merge=lfs -text
37
+ *.wasm filter=lfs diff=lfs merge=lfs -text
38
+ *asm.wasm filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ venv
Dockerfile ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
2
+ # you will also find guides on how best to write your Dockerfile
3
+
4
+ FROM python:3.9
5
+
6
+ WORKDIR /code
7
+
8
+ COPY . .
9
+
10
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
11
+
12
+
13
+ # Change the port number of our Wave app to 7860
14
+ # which is default in Hugging Face Spaces.
15
+ ENV H2O_WAVE_LISTEN=":7860"
16
+ ENV H2O_WAVE_ADDRESS='http://127.0.0.1:7860'
17
+
18
+ CMD ["wave", "run", "examples.tour", "--no-reload"]
examples/.DS_Store ADDED
Binary file (6.15 kB). View file
 
examples/.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ *.html
examples/.python-version ADDED
@@ -0,0 +1 @@
 
 
1
+ 3.8.10
examples/__init__.py ADDED
File without changes
examples/__pycache__/__init__.cpython-37.pyc ADDED
Binary file (163 Bytes). View file
 
examples/__pycache__/__init__.cpython-39.pyc ADDED
Binary file (171 Bytes). View file
 
examples/__pycache__/audio_annotator.cpython-39.pyc ADDED
Binary file (1.19 kB). View file
 
examples/__pycache__/button.cpython-39.pyc ADDED
Binary file (2.47 kB). View file
 
examples/__pycache__/chatbot.cpython-38.pyc ADDED
Binary file (828 Bytes). View file
 
examples/__pycache__/chatbot.cpython-39.pyc ADDED
Binary file (828 Bytes). View file
 
examples/__pycache__/chatbot_stream.cpython-39.pyc ADDED
Binary file (1.14 kB). View file
 
examples/__pycache__/choice_group.cpython-39.pyc ADDED
Binary file (999 Bytes). View file
 
examples/__pycache__/color_picker.cpython-39.pyc ADDED
Binary file (748 Bytes). View file
 
examples/__pycache__/combobox.cpython-37.pyc ADDED
Binary file (1.33 kB). View file
 
examples/__pycache__/combobox.cpython-39.pyc ADDED
Binary file (1.41 kB). View file
 
examples/__pycache__/copyable_text.cpython-39.pyc ADDED
Binary file (860 Bytes). View file
 
examples/__pycache__/counter_broadcast.cpython-39.pyc ADDED
Binary file (726 Bytes). View file
 
examples/__pycache__/counter_multicast.cpython-39.pyc ADDED
Binary file (727 Bytes). View file
 
examples/__pycache__/counter_unicast.cpython-39.pyc ADDED
Binary file (682 Bytes). View file
 
examples/__pycache__/demo.cpython-39.pyc ADDED
Binary file (1.93 kB). View file
 
examples/__pycache__/dropdown.cpython-37.pyc ADDED
Binary file (1.73 kB). View file
 
examples/__pycache__/dropdown.cpython-39.pyc ADDED
Binary file (1.44 kB). View file
 
examples/__pycache__/file_stream.cpython-39.pyc ADDED
Binary file (1.65 kB). View file
 
examples/__pycache__/file_upload.cpython-37.pyc ADDED
Binary file (691 Bytes). View file
 
examples/__pycache__/file_upload.cpython-39.pyc ADDED
Binary file (779 Bytes). View file
 
examples/__pycache__/file_upload_compact.cpython-39.pyc ADDED
Binary file (923 Bytes). View file
 
examples/__pycache__/form_menu.cpython-39.pyc ADDED
Binary file (1.56 kB). View file
 
examples/__pycache__/form_visibility.cpython-39.pyc ADDED
Binary file (1.23 kB). View file
 
examples/__pycache__/graphics_path.cpython-39.pyc ADDED
Binary file (1.54 kB). View file
 
examples/__pycache__/hash_routing.cpython-39.pyc ADDED
Binary file (988 Bytes). View file
 
examples/__pycache__/header.cpython-39.pyc ADDED
Binary file (662 Bytes). View file
 
examples/__pycache__/http_client.cpython-39.pyc ADDED
Binary file (876 Bytes). View file
 
examples/__pycache__/image_annotator.cpython-37.pyc ADDED
Binary file (1.05 kB). View file
 
examples/__pycache__/image_annotator.cpython-39.pyc ADDED
Binary file (1.34 kB). View file
 
examples/__pycache__/image_popup.cpython-39.pyc ADDED
Binary file (445 Bytes). View file
 
examples/__pycache__/inline.cpython-39.pyc ADDED
Binary file (1.5 kB). View file
 
examples/__pycache__/issue_tracker.cpython-39.pyc ADDED
Binary file (3.82 kB). View file
 
examples/__pycache__/link.cpython-39.pyc ADDED
Binary file (986 Bytes). View file
 
examples/__pycache__/markdown_submit_text.cpython-39.pyc ADDED
Binary file (803 Bytes). View file
 
examples/__pycache__/menu.cpython-37.pyc ADDED
Binary file (1.14 kB). View file
 
examples/__pycache__/menu.cpython-39.pyc ADDED
Binary file (1.13 kB). View file
 
examples/__pycache__/meta_dialog.cpython-39.pyc ADDED
Binary file (1.17 kB). View file
 
examples/__pycache__/meta_dialog_closable.cpython-39.pyc ADDED
Binary file (893 Bytes). View file
 
examples/__pycache__/meta_notification_bar.cpython-39.pyc ADDED
Binary file (1.64 kB). View file
 
examples/__pycache__/meta_notification_bar_closable.cpython-39.pyc ADDED
Binary file (1.14 kB). View file
 
examples/__pycache__/meta_theme.cpython-39.pyc ADDED
Binary file (1.46 kB). View file
 
examples/__pycache__/nav.cpython-39.pyc ADDED
Binary file (1.98 kB). View file