Skip to content
Merged
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
79a9fe1
Bump github/codeql-action from 3 to 4
dependabot[bot] Jul 8, 2026
90bcb40
Bump actions/upload-artifact from 4 to 7
dependabot[bot] Jul 8, 2026
b836266
Bump actions/setup-python from 5 to 6
dependabot[bot] Jul 8, 2026
f2e3f46
Bump actions/download-artifact from 4 to 8
dependabot[bot] Jul 8, 2026
1948b67
Bump actions/checkout from 4 to 7
dependabot[bot] Jul 8, 2026
557dbb6
Update httpx requirement from >=0.27.0 to >=0.28.1
dependabot[bot] Jul 8, 2026
6833bfd
Update uvicorn requirement from >=0.24.0 to >=0.51.0
dependabot[bot] Jul 8, 2026
7362c0e
Update fastapi requirement from >=0.104.1 to >=0.139.0
dependabot[bot] Jul 8, 2026
1f6aec9
Merge pull request #28 from sharfuddin18/Sam
sharfuddin18 Jul 8, 2026
e9a4cd0
Merge branch 'main' into dependabot/pip/httpx-gte-0.28.1
sharfuddin18 Jul 8, 2026
9976698
Merge pull request #25 from sharfuddin18/dependabot/pip/httpx-gte-0.28.1
sharfuddin18 Jul 8, 2026
0cc77f6
Update python-dotenv requirement from >=1.0.0 to >=1.2.2
dependabot[bot] Jul 8, 2026
7ebdc94
Merge pull request #24 from sharfuddin18/dependabot/pip/fastapi-gte-0…
sharfuddin18 Jul 8, 2026
46419f4
Merge pull request #23 from sharfuddin18/dependabot/pip/python-dotenv…
sharfuddin18 Jul 8, 2026
c219f8c
Merge branch 'main' into dependabot/pip/uvicorn-gte-0.51.0
sharfuddin18 Jul 8, 2026
3865116
Merge pull request #22 from sharfuddin18/dependabot/pip/uvicorn-gte-0…
sharfuddin18 Jul 8, 2026
dbc2f74
Merge pull request #21 from sharfuddin18/dependabot/github_actions/ac…
sharfuddin18 Jul 8, 2026
1b6f122
Merge pull request #20 from sharfuddin18/dependabot/github_actions/ac…
sharfuddin18 Jul 8, 2026
309f404
Merge pull request #19 from sharfuddin18/dependabot/github_actions/ac…
sharfuddin18 Jul 8, 2026
85f7e10
Merge pull request #17 from sharfuddin18/dependabot/github_actions/gi…
sharfuddin18 Jul 8, 2026
c592e32
Merge pull request #18 from sharfuddin18/dependabot/github_actions/ac…
sharfuddin18 Jul 8, 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
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7

# Add any setup steps before running the `github/codeql-action/init` action.
# This includes steps like installing compilers or runtimes (`actions/setup-node`
Expand All @@ -67,7 +67,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
Expand Down Expand Up @@ -95,6 +95,6 @@ jobs:
exit 1

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{matrix.language}}"
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
python-version: ["3.10", "3.11"]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.x"

Expand All @@ -33,7 +33,7 @@ jobs:
python -m build

- name: Upload distributions
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: release-dists
path: dist/
Expand All @@ -59,7 +59,7 @@ jobs:

steps:
- name: Retrieve release distributions
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: release-dists
path: dist/
Expand Down
6 changes: 3 additions & 3 deletions backend/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
fastapi>=0.104.1
fastapi>=0.139.0
uvicorn[standard]>=0.24.0
pydantic>=2.13.4
pydantic-settings>=2.1.0
ollama>=0.2.0
openai>=1.0.0
httpx>=0.27.0
python-dotenv>=1.0.0
httpx>=0.28.1
python-dotenv>=1.2.2
tenacity>=9.1.4
sentence-transformers>=5.6.0
faiss-cpu>=1.14.3
Expand Down
Loading