From e1ed261954b70cc7d4698cd95dd880b3f3e245b3 Mon Sep 17 00:00:00 2001 From: Marius Ciepluch <11855163+norandom@users.noreply.github.com> Date: Sun, 3 Mar 2024 19:01:20 +0100 Subject: [PATCH 1/3] Update Readme.md --- Readme.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Readme.md b/Readme.md index 26675ab..6a134ff 100644 --- a/Readme.md +++ b/Readme.md @@ -1,6 +1,10 @@ # Don't read this +[Writeup](https://because-security.atlassian.net/wiki/spaces/LML/pages/73630269/LangChain+GPT-4+Embeddings+and+sqlite-vss+as+a+vector+db) + +Follow the sub-pages for more. + ## Local install w conda ``` From c0da40a9d33a7f12691440401b4c931a856d15d9 Mon Sep 17 00:00:00 2001 From: Marius Ciepluch <11855163+norandom@users.noreply.github.com> Date: Fri, 8 Mar 2024 09:54:23 +0100 Subject: [PATCH 2/3] Create code_quality.yml.yml --- .github/workflows/code_quality.yml.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/code_quality.yml.yml diff --git a/.github/workflows/code_quality.yml.yml b/.github/workflows/code_quality.yml.yml new file mode 100644 index 0000000..6807c3c --- /dev/null +++ b/.github/workflows/code_quality.yml.yml @@ -0,0 +1,25 @@ +name: Qodana +on: + workflow_dispatch: + pull_request: + push: + branches: # Specify your branches here + - main # The 'main' branch + - 'releases/*' # The release branches + +jobs: + qodana: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + checks: write + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit + fetch-depth: 0 # a full history is required for pull request analysis + - name: 'Qodana Scan' + uses: JetBrains/qodana-action@v2023.3 + env: + QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} From c192ae1f6fe9c966653eeeba012af2bf39e51338 Mon Sep 17 00:00:00 2001 From: Marius Ciepluch <11855163+norandom@users.noreply.github.com> Date: Fri, 8 Mar 2024 09:04:10 +0000 Subject: [PATCH 3/3] sandbox --- sandbox.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 sandbox.py diff --git a/sandbox.py b/sandbox.py new file mode 100644 index 0000000..c0cad44 --- /dev/null +++ b/sandbox.py @@ -0,0 +1 @@ +print("hi") \ No newline at end of file