CoolFace
Apppublic

mnds18/agentic-ts-forecasting-system

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
index.md119 linesDownload Raw Back to docs
1<!DOCTYPE html>2<html lang="en">3 4<head>5  <meta charset="UTF-8">6  <meta name="viewport" content="width=device-width, initial-scale=1.0">7  <meta name="theme-color" content="#F63366">8  <link rel="icon" href="https://streamlit.io/images/brand/streamlit-logo-primary-colormark-darktext.png">9  <title>Agentic TS Forecasting System</title>10  <style>11    body {12      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen;13      line-height: 1.6;14      margin: 0;15      padding: 2rem;16      background-color: #f9f9fb;17      color: #1c1e21;18      transition: background-color 0.3s, color 0.3s;19    }20    header {21      background-color: #fff;22      padding: 1rem 2rem;23      border-bottom: 1px solid #eaeaea;24    }25    header img {26      height: 60px;27    }28    .badges img {29      margin-right: 0.5rem;30    }31    h1 {32      color: #F63366;33    }34    .theme-toggle {35      margin-top: 1rem;36    }37    .dark-theme {38      background-color: #121212;39      color: #f1f1f1;40    }41    .footer {42      margin-top: 3rem;43      font-size: 0.9rem;44      color: #777;45    }46    .contact {47      margin-top: 1rem;48    }49  </style>50</head>51 52<body>53  <header>54    <img src="https://github.com/mnds18/agentic-ts-forecasting-system/assets/your-image-id/banner.png" alt="Agentic AI Banner">55  </header>56 57  <main>58    <h1>Agentic Time Series Forecasting System</h1>59 60    <p>61      <strong>An enterprise-ready, multi-agent GenAI system for forecasting time series data.</strong>62      Built with LangChain-style architecture, Streamlit, Docker, Flask API, and Hugging Face Spaces.63    </p>64 65    <div class="badges">66      <img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="MIT License">67      <img src="https://github.com/mnds18/agentic-ts-forecasting-system/actions/workflows/python-app.yml/badge.svg" alt="CI Status">68      <img src="https://img.shields.io/badge/Streamlit-Dashboard-orange?logo=streamlit" alt="Streamlit">69      <img src="https://img.shields.io/badge/Spaces-HuggingFace-blue?logo=huggingface" alt="HF Spaces">70    </div>71 72    <div class="theme-toggle">73      <label>74        <input type="checkbox" id="themeToggle"> ๐ŸŒ— Toggle Dark Mode75      </label>76    </div>77 78    <h2>Live Apps</h2>79    <ul>80      <li>๐Ÿ“Š <a href="https://mnds18-agentic-ts-forecasting-system.streamlit.app">Streamlit Forecasting Dashboard</a></li>81      <li>๐Ÿฆ™ <a href="https://huggingface.co/spaces/mnds18/agentic-ts-forecasting-system">Hugging Face Space</a></li>82    </ul>83 84    <h2>Quick Links</h2>85    <ul>86      <li><a href="../README.md">๐Ÿ” README Overview</a></li>87      <li><a href="../WIKI.md">๐Ÿ“˜ Architecture Wiki</a></li>88      <li><a href="../CONTRIBUTING.md">๐Ÿค Contribution Guide</a></li>89    </ul>90 91    <h2>How to Use</h2>92    <p>93      Clone the repo, run the pipeline via <code>agentic_ts_forecasting_system.py</code>, and launch the dashboard with Streamlit.94    </p>95 96    <h2>About</h2>97    <p>98      Created by <strong>Mrig Debsarma</strong>, this system demonstrates how autonomous agents can manage business tasks like forecasting, documentation, peer review, and deployment โ€” all orchestrated in Python.99    </p>100 101    <div class="contact">102      ๐Ÿ“ซ Contact: <a href="mailto:mrig.debsarma@gmail.com">mrig.debsarma@gmail.com</a>103    </div>104 105    <div class="footer">106      &copy; 2025 Agentic AI Project โ€” All rights reserved.107    </div>108  </main>109 110  <script>111    const toggle = document.getElementById('themeToggle');112    toggle.addEventListener('change', () => {113      document.body.classList.toggle('dark-theme');114    });115  </script>116</body>117 118</html>119