Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ These use the latest TinyFish SDK and are deployed with live demos you can try r
| [logistics-sentry](./logistics-sentry) | Port congestion and carrier-risk tracking |
| [tenders-finder](./tenders-finder) | Singapore government tender discovery across multiple portals |
| [finsight](./finsight) | Vietnamese B2B market intel — leasing, competitor pricing, SME loans, SBV regulatory briefs with source preflight |
| [monai](./monai) | Vietnam F&B trend intelligence — menu gaps, forecasts, regional compare, supplier discovery ([live demo](https://mon-ai-alpha.vercel.app/)) |

### Education & Discovery

Expand Down
12 changes: 12 additions & 0 deletions monai/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Get your API key at https://agent.tinyfish.ai/api-keys
TINYFISH_API_KEY=
# Optional search locale (used by the official TinyFish Python SDK)
# TINYFISH_SEARCH_LOCATION=VN
# TINYFISH_SEARCH_LANGUAGE=vi

# Optional — richer AI synthesis when set; otherwise routes use live TinyFish SDK search/fetch data
OPENAI_API_KEY=

ALLOWED_ORIGINS=http://localhost:5173,http://127.0.0.1:5173
# Production example (comma-separated, no trailing slashes):
# ALLOWED_ORIGINS=https://mon-ai-alpha.vercel.app
15 changes: 15 additions & 0 deletions monai/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.env
.env.*
!.env.example
__pycache__/
*.py[cod]
*.egg-info/
.venv/
venv/
.pytest_cache/
.mypy_cache/

# Ad-hoc local testing / scratch output (scripts/smoke_test.py stays tracked)
_test_*.py
*_out.json
trends_out.json
1 change: 1 addition & 0 deletions monai/.python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.12.8
Loading