Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
e64c92f
refactor: implement heuristic skill extraction and RAG-based code mat…
MalakHisham121 May 16, 2026
66b9bb1
feat: integrate vector DB semantic search for candidate ranking, impl…
MalakHisham121 May 16, 2026
8b0cdd3
Merge pull request #13 from MalakHisham121/AI/DL
MalakHisham121 May 17, 2026
44b5a83
solved CORS problem in risk api
SamaAshrafAhmed May 18, 2026
4bdd763
refactor: remove redundant Process module in favor of centralized Rev…
MalakHisham121 May 26, 2026
e5cff69
Merge pull request #16 from MalakHisham121/AI/DL
MalakHisham121 May 28, 2026
9a34cfd
feat: implement modular helper functions and Pydantic models to unify…
MalakHisham121 Jun 7, 2026
0e8f2cb
feat: add API unit tests and evaluation metrics, and update OLLAMA mo…
MalakHisham121 Jun 8, 2026
5f69be6
Merge pull request #17 from MalakHisham121/AI/DL
MalakHisham121 Jun 8, 2026
0b4daac
modified readme
Salma884 Jun 10, 2026
b21c746
modified readme
Salma884 Jun 10, 2026
8c95a5e
Fixed CORS Issue
SamaAshrafAhmed Jun 12, 2026
eb8619b
Added PR Summarizer Agent
Salma884 Jun 14, 2026
82f807c
Integrated PR Summarizer with BE
Salma884 Jun 15, 2026
b5502ca
edited Readme
Salma884 Jun 20, 2026
1b2a69b
refactor: implement AI-based commit filtering and optimize skill extr…
MalakHisham121 Jun 22, 2026
7bf5950
Merge branch 'AI/DL' of https://github.com/MalakHisham121/Codience in…
MalakHisham121 Jun 22, 2026
7990a3a
feat: introduce LLM-as-a-judge evaluator agent to validate and refine…
MalakHisham121 Jun 22, 2026
8d55d16
test: add integration, unit, and API test suites for reviewer recomme…
MalakHisham121 Jun 26, 2026
7db29c3
chore: migrate reviewer testing report from CSV to Excel format
MalakHisham121 Jun 28, 2026
2e0f806
Merge pull request #24 from MalakHisham121/AI/DL
MalakHisham121 Jun 28, 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
34 changes: 29 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,32 @@
# Dependencies
node_modules/
.venv/
dist/
build/

# Environment
.env
Risk/Model/
.venv
my_vector_db
.env
__pycache__/

# IDEs
.idea/
.vscode/
.DS_Store

# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.pytest_cache/
.coverage
htmlcov/
.ipynb_checkpoints/

# Vector Databases & Data
my_vector_db/
commit_vector_db/
commit_vector_db_nomic/
*.sqlite3

# Models
Risk/Model/
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"snyk.advanced.autoSelectOrganization": true
"snyk.advanced.autoSelectOrganization": true,
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python"
}
Loading