-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
82 lines (67 loc) · 2.15 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import gradio as gr
from demos.generate import demo as demo_generate
from demos.compare import demo as demo_compare
from demos.inspect_ import demo as demo_inspect
from demos.chunker import demo as demo_chunker
custom_css = """
.fixed-height {
height: 240px; /* Fixed height */
object-fit: contain; /* Scale the image to fit within the element */
}
.fixed-height img {
height: 240px; /* Fixed height */
object-fit: contain; /* Scale the image to fit within the element */
}
.modebar-btn {
display: none !important;
}
.small-height {
display: flex; /* Use flexbox layout */
flex-direction: column; /* Arrange children vertically */
justify-content: flex-end; /* Align children to the end (bottom) */
height: 85px; /* Fixed height */
object-fit: contain; /* Scale the content to fit within the element */
}
.bit-matrix-big {
display: flex;
flex-direction: column;
justify-content: flex-end;
height: 150px; /* Fixed height */
object-fit: contain; /* Scale the content to fit within the element */
}
.iscc-unit-sim {
display: flex;
flex-direction: column;
justify-content: flex-end;
height: 240px; /* Fixed height */
object-fit: contain; /* Scale the content to fit within the element */
}
#chunked-text span.label {
text-transform: none !important;
}
.json-holder {
word-wrap: break-word;
white-space: pre-wrap;
}
#examples-a, #examples-b {
height: 140px; /* Fixed height */
object-fit: contain; /* Scale the image to fit within the element */
}
textarea {
font-family: JetBrains Mono;
}
"""
iscc_theme = gr.themes.Default(
font=[gr.themes.GoogleFont("Readex Pro"), "Arial", "sans-serif"],
font_mono=[gr.themes.GoogleFont("JetBrains Mono"), "Courier", "monospace"],
radius_size=gr.themes.sizes.radius_none,
)
demo = gr.TabbedInterface(
title="▶️ ISCC Playground - The DNA of your digital content",
interface_list=[demo_compare, demo_generate, demo_inspect, demo_chunker],
tab_names=["COMPARE", "GENERATE", "INSPECT", "CHUNKER"],
css=custom_css,
# theme=iscc_theme,
)
if __name__ == "__main__":
demo.launch()