lanna_lalala;- commited on
Commit ·
f490f18
1
Parent(s): 78103f7
added readme,requirements
Browse files- README.md +16 -0
- requirements.txt +34 -0
README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Frontend
|
| 3 |
+
emoji: 🚀
|
| 4 |
+
colorFrom: red
|
| 5 |
+
colorTo: red
|
| 6 |
+
sdk: docker
|
| 7 |
+
app_port: 8501
|
| 8 |
+
tags:
|
| 9 |
+
- streamlit
|
| 10 |
+
pinned: false
|
| 11 |
+
app_file: app.py
|
| 12 |
+
short_description: This is the frontend to a personal project
|
| 13 |
+
license: mit
|
| 14 |
+
---
|
| 15 |
+
# FinED-Frontend
|
| 16 |
+
This was created to be a learning web platform for the Jamaican youth to understand financial literacy and numeracy
|
requirements.txt
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ---- Core UI ----
|
| 2 |
+
streamlit==1.36.0
|
| 3 |
+
|
| 4 |
+
# ---- Agent Orchestration / LLM Stack ----
|
| 5 |
+
langgraph
|
| 6 |
+
langchain
|
| 7 |
+
langchain-community
|
| 8 |
+
langchain-openai
|
| 9 |
+
openai>=1.40.0
|
| 10 |
+
|
| 11 |
+
# ---- Database (TiDB via MySQL protocol) ----
|
| 12 |
+
SQLAlchemy==2.0.31
|
| 13 |
+
PyMySQL==1.1.1
|
| 14 |
+
cryptography>=42.0.8
|
| 15 |
+
certifi>=2024.6.2 # SSL CA bundle for TiDB
|
| 16 |
+
|
| 17 |
+
# ---- Serialization / Hashing (LangGraph deps) ----
|
| 18 |
+
ormsgpack==1.7.0
|
| 19 |
+
xxhash==3.4.1
|
| 20 |
+
|
| 21 |
+
# ---- Pydantic v2 line (required by langchain-openai/openai) ----
|
| 22 |
+
pydantic>=2.7.4,<3.0
|
| 23 |
+
pydantic-core>=2.18.4,<3.0
|
| 24 |
+
|
| 25 |
+
# ---- Utilities ----
|
| 26 |
+
python-dotenv==1.0.1
|
| 27 |
+
tenacity>=8.2.3
|
| 28 |
+
requests>=2.32.0
|
| 29 |
+
markdownify>=0.12.1
|
| 30 |
+
|
| 31 |
+
# ---- Search (optional tool for your agent) ----
|
| 32 |
+
duckduckgo-search==6.3.5
|
| 33 |
+
bcrypt
|
| 34 |
+
plotly
|