Spaces:
Sleeping
Sleeping
| <html lang="ja"> | |
| <head> | |
| <meta charset="utf-8"/> | |
| <meta name="viewport" content="width=device-width,initial-scale=1"/> | |
| <title>IR/PR Co-Pilot Pro</title> | |
| <link rel="stylesheet" href="/static/styles.css"/> | |
| </head> | |
| <body> | |
| <header> | |
| <h1>IR/PR Co-Pilot Pro</h1> | |
| <div class="sub">TDnet/EDINET/決算書→要約・Q&A・PPT自動生成</div> | |
| </header> | |
| <main> | |
| <section class="card"> | |
| <h2>1. EDINET から取込</h2> | |
| <div class="grid"> | |
| <label>EDINETコード | |
| <input id="edinetCode" placeholder="例: E01234"/> | |
| </label> | |
| <label>日付(YYYY-MM-DD) | |
| <input id="edinetDate" placeholder="例: 2024-08-13"/> | |
| </label> | |
| </div> | |
| <button id="btnIngestEdinet">取込を実行</button> | |
| <div id="ingestEdinetResult" class="muted"></div> | |
| </section> | |
| <section class="card"> | |
| <h2>2. PDFをアップロードして取込(APIキー不要)</h2> | |
| <input id="pdfFiles" type="file" accept="application/pdf" multiple/> | |
| <button id="btnIngestUpload">アップロードして取込</button> | |
| <div id="ingestUploadResult" class="muted"></div> | |
| </section> | |
| <section class="card"> | |
| <h2>3. スライド&想定Q&Aを生成</h2> | |
| <label>質問/テーマ(RAG検索クエリ) | |
| <textarea id="query" rows="3">直近決算の要点をまとめて</textarea> | |
| </label> | |
| <button id="btnGenerate">生成する</button> | |
| <div id="generateStatus" class="muted"></div> | |
| <div id="downloadLinks" class="downloads"></div> | |
| </section> | |
| <section class="card"> | |
| <h2>ログ</h2> | |
| <pre id="log"></pre> | |
| </section> | |
| </main> | |
| <footer> | |
| <span>© IR/PR Co-Pilot Pro</span> | |
| </footer> | |
| <script src="/static/app.js"></script> | |
| </body> | |
| </html> | |