forked from LostRuins/koboldcpp
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/concedo'
- Loading branch information
Showing
187 changed files
with
167,113 additions
and
151,187 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
name: Create New Issue | ||
about: Please describe the issue in detail | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the Issue** | ||
A clear and detailed description of what the issue is, and how to duplicate it (if applicable). | ||
|
||
**Additional Information:** | ||
Please provide as much relevant information about your setup as possible, such as the Operating System, CPU, GPU, KoboldCpp Version, and relevant logs (helpful to include the launch params from the terminal output, flags and crash logs) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Python Type-Check | ||
|
||
on: | ||
push: | ||
paths: | ||
- '.github/workflows/python-type-check.yml' | ||
- '**.py' | ||
- '**/requirements*.txt' | ||
pull_request: | ||
paths: | ||
- '.github/workflows/python-type-check.yml' | ||
- '**.py' | ||
- '**/requirements*.txt' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
python-type-check: | ||
runs-on: ubuntu-latest | ||
name: pyright type-check | ||
steps: | ||
- name: Check out source repository | ||
uses: actions/checkout@v4 | ||
- name: Set up Python environment | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
- name: Install Python dependencies | ||
# TODO: use a venv | ||
run: pip install -r requirements/requirements-all.txt | ||
- name: Type-check with Pyright | ||
uses: jakebailey/pyright-action@v2 | ||
with: | ||
version: 1.1.370 | ||
level: warning | ||
warnings: true |
Oops, something went wrong.