Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/concedo'
Browse files Browse the repository at this point in the history
  • Loading branch information
YellowRoseCx committed Jul 15, 2024
2 parents fa2cf0d + 1a6855f commit 317d3b0
Show file tree
Hide file tree
Showing 187 changed files with 167,113 additions and 151,187 deletions.
26 changes: 0 additions & 26 deletions .devops/llama-cli-intel.Dockerfile

This file was deleted.

31 changes: 0 additions & 31 deletions .devops/llama-server-intel.Dockerfile

This file was deleted.

14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/create-new-issue.md
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)
7 changes: 0 additions & 7 deletions .github/pull_request_template.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Koboldcpp Windows Full AVX1 Binaries
name: Koboldcpp Windows Full OldCPU Binaries

on: workflow_dispatch
env:
Expand Down Expand Up @@ -68,8 +68,7 @@ jobs:
- name: Package PyInstallers
id: make_pyinstaller
run: |
./make_pyinstaller.bat
./make_pyinstaller_cuda.bat
./make_pyinstaller_cuda_oldcpu.bat
- name: Save artifact
uses: actions/upload-artifact@v3
Expand Down
38 changes: 38 additions & 0 deletions .github/workflows/python-type-check.yml
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
Loading

0 comments on commit 317d3b0

Please sign in to comment.