Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 67e20a8

Browse files
committed
Merge branch 'dev' into feat/installer-windows
2 parents 25cab6a + 8c5fe88 commit 67e20a8

32 files changed

+1226
-357
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 38 deletions
This file was deleted.
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: "\U0001F41B Bug Report"
2+
description: "If something isn't working as expected \U0001F914"
3+
labels: [ "type: bug" ]
4+
title: 'bug: [DESCRIPTION]'
5+
6+
body:
7+
- type: input
8+
validations:
9+
required: true
10+
attributes:
11+
label: "Cortex version"
12+
description: "**Tip:** The version is in the app's bottom right corner"
13+
14+
- type: textarea
15+
validations:
16+
required: true
17+
attributes:
18+
label: "Describe the Bug"
19+
description: "A clear & concise description of the bug"
20+
21+
- type: textarea
22+
attributes:
23+
label: "Steps to Reproduce"
24+
description: |
25+
Please list out steps to reproduce the issue
26+
placeholder: |
27+
1. Go to '...'
28+
2. Click on '...'
29+
30+
- type: textarea
31+
attributes:
32+
label: "Screenshots / Logs"
33+
description: |
34+
You can find logs in: ~/cortex/logs
35+
36+
- type: checkboxes
37+
attributes:
38+
label: "What is your OS?"
39+
options:
40+
- label: MacOS
41+
- label: Windows
42+
- label: Linux
43+
44+
- type: checkboxes
45+
attributes:
46+
label: "What engine are you running?"
47+
options:
48+
- label: cortex.llamacpp (default)
49+
- label: cortex.tensorrt-llm (Nvidia GPUs)
50+
- label: cortex.onnx (NPUs, DirectML)

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## To encourage contributors to use issue templates, we don't allow blank issues
2+
blank_issues_enabled: true
3+
4+
contact_links:
5+
- name: "\1F4AC Cortex Discussions"
6+
url: "https://github.com/orgs/janhq/discussions/categories/q-a"
7+
about: "Get help, discuss features & roadmap, and share your projects"

.github/ISSUE_TEMPLATE/discussion-thread.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/epic-request.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,10 @@ assignees: ''
88
---
99

1010
**Problem**
11-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
1211

13-
**Success Criteria**
14-
A clear and concise description of what you want to happen.
1512

16-
**Sub Issues**
13+
**Success Criteria**
1714
-
1815

19-
**Additional context**
20-
Add any other context or screenshots about the epic request here.
16+
**Tasklist**
17+
- [ ]

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 17 deletions
This file was deleted.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: "\U0001F680 Feature Request"
2+
description: "Suggest an idea for this project \U0001F63B!"
3+
title: 'idea: [DESCRIPTION]'
4+
body:
5+
- type: textarea
6+
validations:
7+
required: true
8+
attributes:
9+
label: "Problem Statement"
10+
description: "Describe the problem you're facing"
11+
placeholder: |
12+
I'm always frustrated when ...
13+
14+
- type: textarea
15+
validations:
16+
required: true
17+
attributes:
18+
label: "Feature Idea"
19+
description: "Describe what you want instead. Examples are welcome!"
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: "\U0001F929 Model Request"
2+
description: "Request a new model to be compiled"
3+
title: 'feat: [DESCRIPTION]'
4+
labels: 'type: model request'
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: "**Tip:** Download any model with `cortex pull HUGGINGFACE_MODEL_ID`. Use this form for unsupported models only."
9+
- type: textarea
10+
validations:
11+
required: true
12+
attributes:
13+
label: "Model Requests"
14+
description: "If applicable, include the source URL, licenses, and any other relevant information"
15+
- type: checkboxes
16+
attributes:
17+
label: "Which formats?"
18+
options:
19+
- label: GGUF (llama.cpp)
20+
- label: TensorRT (TensorRT-LLM)
21+
- label: ONNX (Onnx Runtime)
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
name: build-windows-x64
2+
on:
3+
workflow_call:
4+
inputs:
5+
ref:
6+
required: true
7+
type: string
8+
default: 'refs/heads/main'
9+
public_provider:
10+
required: true
11+
type: string
12+
default: none
13+
description: 'none: build only, github: build and publish to github, aws s3: build and publish to aws s3'
14+
new_version:
15+
required: true
16+
type: string
17+
default: ''
18+
upload_url:
19+
required: true
20+
type: string
21+
default: ''
22+
runs-on:
23+
required: false
24+
type: string
25+
default: 'windows-cuda-12-0'
26+
description: 'The runner to use for this job'
27+
cmake-flags:
28+
required: false
29+
type: string
30+
default: ''
31+
description: 'The cmake flags to use for this job'
32+
build-deps-cmake-flags:
33+
required: false
34+
type: string
35+
default: ''
36+
description: 'The cmake flags to use for this job'
37+
ccache-dir:
38+
required: false
39+
type: string
40+
default: 'C:\Users\ContainerAdministrator\AppData\Local\ccache'
41+
description: 'The ccache directory to use for this job'
42+
channel:
43+
required: true
44+
type: string
45+
default: 'nightly'
46+
description: 'The channel to use for this job'
47+
secrets:
48+
MINIO_BUCKET_NAME:
49+
required: false
50+
MINIO_ENDPOINT:
51+
required: false
52+
MINIO_ACCESS_KEY_ID:
53+
required: false
54+
MINIO_SECRET_ACCESS_KEY:
55+
required: false
56+
MINIO_REGION:
57+
required: false
58+
DEVELOPER_ID:
59+
required: false
60+
AZURE_KEY_VAULT_URI:
61+
required: false
62+
AZURE_CLIENT_ID:
63+
required: false
64+
AZURE_TENANT_ID:
65+
required: false
66+
AZURE_CLIENT_SECRET:
67+
required: false
68+
AZURE_CERT_NAME:
69+
required: false
70+
DELTA_AWS_S3_BUCKET_NAME:
71+
required: false
72+
DELTA_AWS_ACCESS_KEY_ID:
73+
required: false
74+
DELTA_AWS_SECRET_ACCESS_KEY:
75+
required: false
76+
DELTA_AWS_REGION:
77+
required: false

0 commit comments

Comments
 (0)