azlaan428 commited on
Commit
f149ede
Β·
1 Parent(s): 5099255

docs: update STATUS.md with UI changes and environment details

Browse files
Files changed (1) hide show
  1. STATUS.md +21 -12
STATUS.md CHANGED
@@ -1,7 +1,6 @@
1
  # ARIA Project Status
2
 
3
  ## What Was Built
4
-
5
  Multi-agent pipeline in agent/agent.py with 4 stages:
6
  1. Query Architect: generates 5 MeSH-optimised PubMed queries via Groq
7
  2. Literature Scout: fetches all queries sequentially with rate limiting
@@ -20,6 +19,13 @@ Additional features completed:
20
  - Signature: Azlaan Mohammad 2026 in footer
21
  - run.sh: clean restart script
22
 
 
 
 
 
 
 
 
23
  ## Tech Stack
24
  - LLM: Groq LLaMA-3.1-8B-Instant
25
  - Agent Framework: LangGraph + LangChain
@@ -27,21 +33,24 @@ Additional features completed:
27
  - Web Framework: Flask with SSE streaming
28
  - PDF: ReportLab
29
  - Frontend: HTML, CSS, vanilla JS
 
30
 
31
  ## API Endpoints
32
- - GET / β€” main UI
33
- - GET /stream β€” SSE pipeline stream
34
- - POST /query β€” standard pipeline (fallback)
35
- - POST /score β€” confidence scoring
36
- - POST /predict β€” predictive model
37
  - POST /selective-review β€” focused literature review from selected papers
38
- - POST /extract-table β€” evidence comparison table
39
- - POST /export-pdf β€” PDF report download
40
- - GET /sessions β€” load query history
41
- - POST /sessions/save β€” save completed query
42
 
43
- ## Groq API Key
44
- Stored in ~/.bashrc as GROQ_API_KEY environment variable
 
 
45
 
46
  ## What Remains Before May 10
47
  1. Concept document for lablab.ai submission
 
1
  # ARIA Project Status
2
 
3
  ## What Was Built
 
4
  Multi-agent pipeline in agent/agent.py with 4 stages:
5
  1. Query Architect: generates 5 MeSH-optimised PubMed queries via Groq
6
  2. Literature Scout: fetches all queries sequentially with rate limiting
 
19
  - Signature: Azlaan Mohammad 2026 in footer
20
  - run.sh: clean restart script
21
 
22
+ ## UI Updates (Apr 29 2026)
23
+ - Rebranded color scheme: ARIA Cyan (#00f5ff) replacing teal accent
24
+ - New fonts: Inter (sans) + JetBrains Mono replacing IBM Plex
25
+ - Animated hexagonal SVG logo with "A" monogram in header
26
+ - Animated gradient mesh background replacing flat grid
27
+ - Light/dark mode toggle
28
+
29
  ## Tech Stack
30
  - LLM: Groq LLaMA-3.1-8B-Instant
31
  - Agent Framework: LangGraph + LangChain
 
33
  - Web Framework: Flask with SSE streaming
34
  - PDF: ReportLab
35
  - Frontend: HTML, CSS, vanilla JS
36
+ - Runtime: Ubuntu 26.04, Python 3.14, CUDA (RTX 3060 12GB)
37
 
38
  ## API Endpoints
39
+ - GET / β€” main UI
40
+ - GET /stream β€” SSE pipeline stream
41
+ - POST /query β€” standard pipeline (fallback)
42
+ - POST /score β€” confidence scoring
43
+ - POST /predict β€” predictive model
44
  - POST /selective-review β€” focused literature review from selected papers
45
+ - POST /extract-table β€” evidence comparison table
46
+ - POST /export-pdf β€” PDF report download
47
+ - GET /sessions β€” load query history
48
+ - POST /sessions/save β€” save completed query
49
 
50
+ ## Environment
51
+ - GROQ_API_KEY stored in ~/.bashrc
52
+ - Python venv at ./venv
53
+ - Start server: source venv/bin/activate && python app.py
54
 
55
  ## What Remains Before May 10
56
  1. Concept document for lablab.ai submission