Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
edb2139
docs: add comprehensive code review and AI-focused action plan
Apr 1, 2026
6ac5c5e
feat: add AI-powered scenario simulation engine with 5 core what-if a…
Apr 1, 2026
e6d866b
branding: rename ScenarioSimulator to AurorAI across codebase
Apr 1, 2026
64c4ab4
branding: rename AURA AI to AURORA everywhere
Apr 1, 2026
43026e7
feat: replace Anthropic with Groq API for free AURORA
Apr 1, 2026
3113afa
fix: update Groq model from deprecated Mixtral to Llama 3.1 70B
Apr 1, 2026
a4c62a3
feat: integrate Groq API for AURORA scenario simulations
Apr 1, 2026
8b48ccc
feat: add visualization service for AURORA scenario prognoses
Apr 1, 2026
6a0faa4
fix: correct Plotly Indicator properties in gauge charts
Apr 1, 2026
2786981
refactor: replace generic 'AI' labels with 'AURORA' engine name
Apr 1, 2026
805012e
docs: add comprehensive AURORA project analysis & architecture docume…
Apr 1, 2026
57f0f20
docs: fix naming consistency (AURA = tool, AURORA = AI engine)
Apr 1, 2026
6906e54
feat: add custom query mode to AURORA scenarios
Apr 1, 2026
8a381c0
fix: improve JSON parsing robustness for custom queries
Apr 1, 2026
e9cc783
refactor: drastically simplify custom query mode for reliability
Apr 1, 2026
8bda8ff
Merge pull request #1 from kumarcr711-cloud/aurora-refactoring
Tushar-R-Tyagi Apr 3, 2026
733c55f
added komponent editing feature and removed headcount error
Apr 6, 2026
8be56b7
Merge pull request #2 from kumarcr711-cloud/aurora-refactoring
Tushar-R-Tyagi Apr 6, 2026
3a6e82d
Updated AI and Action plan
Apr 7, 2026
2bfa26a
Merge pull request #3 from kumarcr711-cloud/aurora-refactoring
Tushar-R-Tyagi Apr 7, 2026
e0ba871
Revise README for AURA project details and structure
Tushar-R-Tyagi Apr 21, 2026
282ed99
revise tests and requirements
Apr 21, 2026
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
28 changes: 28 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Tests

on:
push:
branches:
- main
pull_request:

jobs:
unit-tests:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt

- name: Run unit tests
run: pytest -q tests
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
__pycache__/
*.pyc
database/*.db
.env
3 changes: 1 addition & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{
"python-envs.defaultEnvManager": "ms-python.python:system",
"python-envs.pythonProjects": []
"python-envs.defaultEnvManager": "ms-python.python:system"
}
Loading
Loading