Upload meta.py
Browse files
meta.py
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
HEADER_INFO = """""".strip()
|
2 |
+
SIDEBAR_INFO = """
|
3 |
+
<div class="contributors font-body text-bold">
|
4 |
+
<a class="contributor comma" href="https://www.linkedin.com/in/mishtert/">Mishtert T</a>
|
5 |
+
</div>
|
6 |
+
"""
|
7 |
+
|
8 |
+
|
9 |
+
CONCEPT_INFO = """
|
10 |
+
<div class="contributors font-body text-bold">
|
11 |
+
<h2 class="font-title">Tracer Data Flow </h2>
|
12 |
+
<span class="d-block extra-info">Domain Agnostic Concept</span>
|
13 |
+
</div>
|
14 |
+
"""
|
15 |
+
|
16 |
+
|
17 |
+
CHEF_INFO = """
|
18 |
+
<h2 class="font-title">Welcome to Tracer! </h2>
|
19 |
+
<p class="strong font-body">
|
20 |
+
<span class="d-block extra-info">(your aide to help you find the specific answer in myriad of textual content in seconds)</span>
|
21 |
+
</p>
|
22 |
+
""".strip()
|
23 |
+
PROMPT_BOX = "Add custom ingredients here (separated by `,`): "
|
24 |
+
STORY = """<div class="story-box font-body"> <p> Hello everyone 👋, I am <strong>Tracer!</strong>.
|
25 |
+
|
26 |
+
Tracer helps you to find the information that you look within seconds on a large text that would take you minutes, hours for you to go
|
27 |
+
through.
|
28 |
+
|
29 |
+
Tracer can be customized to specific needs looking only for specific information if required and build
|
30 |
+
generative text on the answer
|
31 |
+
|
32 |
+
</p>
|
33 |
+
|
34 |
+
</div>
|
35 |
+
""".strip()
|