Files
All-in-one-Financial-Analysis/.agent/infra.yaml
T
whitesmoke-sketch e5b6500ff2 docs: Add AI agent documentation and navigation hub
- Create  directory for AI coding agents and new developers
- Add  as the main navigation hub and entrypoint
- Add project context files: , , , , ,
- Add development guidelines and architecture decisions: ,  (including 429 error handling and 10-year DCF logic)
2026-02-14 22:51:03 +09:00

28 lines
923 B
YAML

infrastructure:
environment:
language: "Python 3.9+"
framework: "Streamlit >= 1.28.0"
external_apis:
- name: "Google Gemini API"
library: "google-generativeai >= 0.8.0"
usage: "MD&A 인사이트 도출, 리스크 분석, 산업 전망 리포트 생성"
auth: "API Key (GOOGLE_API_KEY)"
- name: "SEC EDGAR API"
library: "sec-edgar-downloader >= 5.0.0"
usage: "최신 10-K 공시 원문(HTML) 다운로드"
auth: "User-Agent Email (SEC_EDGAR_EMAIL)"
- name: "Yahoo Finance API"
library: ["yfinance >= 0.2.40", "yahooquery >= 2.2.0"]
usage: "티커 검색, 재무제표, 현금흐름, 주식수, 경쟁사 멀티플 추출"
auth: "None Required"
data_processing:
- name: "Pandas"
version: ">= 2.0.0"
- name: "BeautifulSoup4 / lxml"
version: ">= 4.12.0 / 4.9.0"
- name: "Plotly"
version: ">= 5.18.0"