Skip to content

refactor: get rid of Langchain for document chunking and querying the Vector Database #16

refactor: get rid of Langchain for document chunking and querying the Vector Database

refactor: get rid of Langchain for document chunking and querying the Vector Database #16

Workflow file for this run

name: Lint and format
on: [pull_request]
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Changed files
id: changed_files
uses: jitterbit/get-changed-files@v1
- uses: pre-commit/[email protected]
with:
extra_args: --files ${{ steps.changed_files.outputs.all }}