Spaces:
Running
Running
add github link and paper link
Browse files
app.py
CHANGED
@@ -140,7 +140,25 @@ def main():
|
|
140 |
|
141 |
workspace_dir = get_user_workspace()
|
142 |
|
143 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
|
145 |
# Sidebar for configurations
|
146 |
with st.sidebar:
|
|
|
140 |
|
141 |
workspace_dir = get_user_workspace()
|
142 |
|
143 |
+
st.markdown(
|
144 |
+
"""
|
145 |
+
<div style="background-color: #f0f2f6; padding: 20px; border-radius: 10px; margin-bottom: 25px">
|
146 |
+
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px">
|
147 |
+
<h1 style="margin: 0;">SPO | Self-Supervised Prompt Optimization 🤖</h1>
|
148 |
+
</div>
|
149 |
+
<div style="display: flex; gap: 20px; align-items: center">
|
150 |
+
<a href="https://arxiv.org/pdf/2502.06855" target="_blank" style="text-decoration: none;">
|
151 |
+
<img src="https://img.shields.io/badge/Paper-PDF-red.svg" alt="Paper">
|
152 |
+
</a>
|
153 |
+
<a href="https://github.com/geekan/MetaGPT/blob/main/examples/spo/README.md" target="_blank" style="text-decoration: none;">
|
154 |
+
<img src="https://img.shields.io/badge/GitHub-Repository-blue.svg" alt="GitHub">
|
155 |
+
</a>
|
156 |
+
<span style="color: #666;">A framework for self-supervised prompt optimization</span>
|
157 |
+
</div>
|
158 |
+
</div>
|
159 |
+
""",
|
160 |
+
unsafe_allow_html=True
|
161 |
+
)
|
162 |
|
163 |
# Sidebar for configurations
|
164 |
with st.sidebar:
|