ZeroR3 commited on
Commit
16bce8b
·
1 Parent(s): 6f8abcc

fix: links iframe-safe — switch markdown links to HTML <a target=_blank>; footer uses gr.HTML for raw anchor support

Browse files
Files changed (1) hide show
  1. app.py +23 -17
app.py CHANGED
@@ -51,8 +51,8 @@ HEADER_MD = f"""
51
  Ingest a git repository (up to 256K tokens, FP8) on a single GPU and
52
  reason across the whole codebase with multi-step tool use.
53
 
54
- > 📦 GitHub: [SRKRZ23/repomind](https://github.com/SRKRZ23/repomind) · MIT
55
- > 🏆 Built for the [AMD Developer Hackathon 2026](https://lablab.ai/ai-hackathons/amd-developer)
56
  > 🤗 HF Special Prize candidate · 🛡 Conservative claim discipline applied
57
 
58
  ### Why AMD MI300X (verified 2026-05-05 on real hardware)
@@ -217,23 +217,29 @@ with gr.Blocks(
217
  "| Largest repo tested | **pytorch/vision (1.3M tokens)** |\n"
218
  "| Tuning attempt: AITER backend | regression — 137/144 cells broken under FP8 KV cache; default Triton stays production-safe |\n"
219
  "| Cost | $1.99/hr cloud, $45.75/1M completion tokens |\n\n"
220
- "Full evidence pack — JSON results, plots, raw model outputs — "
221
- "is at [github.com/SRKRZ23/repomind/tree/main/benchmarks/2026-05-05-mi300x-stress-test]"
222
- "(https://github.com/SRKRZ23/repomind/tree/main/benchmarks/2026-05-05-mi300x-stress-test). "
223
- "Extended PHASE 1+2 narrative + AITER A/B in the [extended/SUMMARY.md]"
224
- "(https://github.com/SRKRZ23/repomind/tree/main/benchmarks/2026-05-05-mi300x-stress-test/extended)."
225
  )
226
 
227
- gr.Markdown(
228
- "---\n"
229
- "**Author:** Sardor Razikov — Tashkent 🇺🇿\n\n"
230
- "[GitHub](https://github.com/SRKRZ23/repomind) · "
231
- "[LinkedIn](https://www.linkedin.com/in/sardor-razikov-569a5327b) · "
232
- "[X / Twitter](https://x.com/SardorRazi99093) · "
233
- "[Zenodo (ECB)](https://doi.org/10.5281/zenodo.19791329)\n\n"
234
- "📧 razikovsardor1@gmail.com · razikovs777@gmail.com\n\n"
235
- "*If the MI300X memory-architecture story resonates, "
236
- "**a like on this Space helps with the Hugging Face Special Prize judging.** 🤗*"
 
 
 
 
 
 
 
237
  )
238
 
239
 
 
51
  Ingest a git repository (up to 256K tokens, FP8) on a single GPU and
52
  reason across the whole codebase with multi-step tool use.
53
 
54
+ > 📦 GitHub: <a href="https://github.com/SRKRZ23/repomind" target="_blank" rel="noopener noreferrer">SRKRZ23/repomind</a> · MIT
55
+ > 🏆 Built for the <a href="https://lablab.ai/ai-hackathons/amd-developer" target="_blank" rel="noopener noreferrer">AMD Developer Hackathon 2026</a>
56
  > 🤗 HF Special Prize candidate · 🛡 Conservative claim discipline applied
57
 
58
  ### Why AMD MI300X (verified 2026-05-05 on real hardware)
 
217
  "| Largest repo tested | **pytorch/vision (1.3M tokens)** |\n"
218
  "| Tuning attempt: AITER backend | regression — 137/144 cells broken under FP8 KV cache; default Triton stays production-safe |\n"
219
  "| Cost | $1.99/hr cloud, $45.75/1M completion tokens |\n\n"
220
+ "Full evidence pack — JSON results, plots, raw model outputs — is at "
221
+ '<a href="https://github.com/SRKRZ23/repomind/tree/main/benchmarks/2026-05-05-mi300x-stress-test" target="_blank" rel="noopener noreferrer">github.com/SRKRZ23/repomind/tree/main/benchmarks/2026-05-05-mi300x-stress-test</a>. '
222
+ "Extended PHASE 1+2 narrative + AITER A/B in the "
223
+ '<a href="https://github.com/SRKRZ23/repomind/tree/main/benchmarks/2026-05-05-mi300x-stress-test/extended" target="_blank" rel="noopener noreferrer">extended/SUMMARY.md</a>.'
 
224
  )
225
 
226
+ gr.HTML(
227
+ """
228
+ <hr/>
229
+ <p><strong>Author:</strong> Sardor Razikov — Tashkent 🇺🇿</p>
230
+ <p>
231
+ <a href="https://github.com/SRKRZ23/repomind" target="_blank" rel="noopener noreferrer">GitHub</a> ·
232
+ <a href="https://www.linkedin.com/in/sardor-razikov-569a5327b" target="_blank" rel="noopener noreferrer">LinkedIn</a> ·
233
+ <a href="https://x.com/SardorRazi99093" target="_blank" rel="noopener noreferrer">X / Twitter</a> ·
234
+ <a href="https://doi.org/10.5281/zenodo.19791329" target="_blank" rel="noopener noreferrer">Zenodo (ECB)</a>
235
+ </p>
236
+ <p>📧
237
+ <a href="mailto:razikovsardor1@gmail.com">razikovsardor1@gmail.com</a> ·
238
+ <a href="mailto:razikovs777@gmail.com">razikovs777@gmail.com</a>
239
+ </p>
240
+ <p><em>If the MI300X memory-architecture story resonates,
241
+ <strong>a like on this Space helps with the Hugging Face Special Prize judging.</strong> 🤗</em></p>
242
+ """
243
  )
244
 
245