Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| projects = [ | |
| { | |
| "name": "AI Transfer Pricing Engine V2", | |
| "desc": "AI-driven arm’s length benchmarking and risk scoring.", | |
| "link": "https://huggingface.co/spaces/YOUR_LINK" | |
| }, | |
| { | |
| "name": "AI Transfer Pricing Engine", | |
| "desc": "Transfer pricing benchmarking and compliance engine.", | |
| "link": "#" | |
| }, | |
| { | |
| "name": "Deep Agentic Supply Chain AI", | |
| "desc": "AI system for forecasting and optimization.", | |
| "link": "#" | |
| } | |
| ] | |
| def show_projects(): | |
| html = "" | |
| for p in projects: | |
| html += f""" | |
| <div style="border:1px solid #ddd; padding:15px; margin:10px; border-radius:10px;"> | |
| <h3>{p['name']}</h3> | |
| <p>{p['desc']}</p> | |
| <a href="{p['link']}" target="_blank">View Project</a> | |
| </div> | |
| """ | |
| return html | |
| with gr.Blocks() as demo: | |
| gr.Markdown("# 🚀 YESBEE4AI PROJECT DASHBOARD") | |
| gr.Markdown("AI Finance Solutions | Deep Agents | CFO Intelligence") | |
| gr.HTML(show_projects()) | |
| demo.launch() |