From 170f4b32ce86f90bbadbfb0ae3473a4a024a85a9 Mon Sep 17 00:00:00 2001 From: hahuyhoang411 Date: Thu, 24 Oct 2024 00:30:40 +0200 Subject: [PATCH 1/3] init --- .github/ISSUE_TEMPLATE/bug-report.yml | 47 +++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 0000000..2a8f92f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,47 @@ +name: GitHub Action Bug Report +description: Report issues with GitHub Actions workflow +title: "[ACTION BUG]: " +labels: ["bug", "github-actions"] +body: + - type: markdown + attributes: + value: | + Thanks for reporting an issue with our GitHub Action! This will help us improve the workflow. + + - type: textarea + id: error_output + attributes: + label: Error Output + description: Please provide the GitHub Actions error output + render: shell + validations: + required: true + + - type: textarea + id: mode_name + attributes: + label: Model Name + description: Which model are you converting? + placeholder: Describe the model and its release date + validations: + required: true + + - type: input + id: llama_issue_ref + attributes: + label: Related llama.cpp Issue/PR + description: Find related llama.cpp issue or PR to the model you are converting + placeholder: "https://github.com/ggerganov/llama.cpp/issues/XXX" + validations: + required: false + + - type: textarea + id: additional_context + attributes: + label: Additional Context + description: Add any other context about the problem here + placeholder: | + - Custom build flags used + - Modified parameters + - System specifications + - Any other relevant information \ No newline at end of file From 89c1428d9236522be2f5cbe90530a1ebc64f46f2 Mon Sep 17 00:00:00 2001 From: hahuyhoang411 Date: Thu, 24 Oct 2024 11:16:16 +0200 Subject: [PATCH 2/3] update --- .github/ISSUE_TEMPLATE/bug-report.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 2a8f92f..0578bbe 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -6,7 +6,7 @@ body: - type: markdown attributes: value: | - Thanks for reporting an issue with our GitHub Action! This will help us improve the workflow. + Thanks for reporting an issue with our GitHub Action! - type: textarea id: error_output @@ -17,6 +17,15 @@ body: validations: required: true + - type: input + id: action_issue_url + attributes: + label: Coresponding Action Issue + description: Link to the issue in the action repository + placeholder: "https://github.com/XXX" + validations: + required: true + - type: textarea id: mode_name attributes: From 9ecd3c2df43b057fbf2d64d6313244a098536447 Mon Sep 17 00:00:00 2001 From: hahuyhoang411 Date: Thu, 24 Oct 2024 11:24:24 +0200 Subject: [PATCH 3/3] init --- .github/ISSUE_TEMPLATE/new-model.yml | 78 ++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/new-model.yml diff --git a/.github/ISSUE_TEMPLATE/new-model.yml b/.github/ISSUE_TEMPLATE/new-model.yml new file mode 100644 index 0000000..bed0b22 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/new-model.yml @@ -0,0 +1,78 @@ +name: "New Model" +description: "Request a new model to be converted" +title: "feat: [MODEL_NAME]" +labels: ["type: model request", "new model"] +body: + - type: markdown + attributes: + value: | + Thanks for submitting a model request! + + - type: input + id: model_name + attributes: + label: Model Name + description: The name of the model you want to be added + placeholder: "e.g., homebrewltd/mini-Ichigo-llama3.2-3B-s-instruct" + validations: + required: true + + - type: input + id: model_source + attributes: + label: Model Source + description: Link to the model (HuggingFace) + placeholder: "https://huggingface.co/XXX" + validations: + required: true + + - type: input + id: model_repo + attributes: + label: Model Cortexso HuggingFace Repo + description: Link to the model (HuggingFace) + placeholder: "https://huggingface.co/XXX" + validations: + required: true + + - type: textarea + id: model_description + attributes: + label: Model Description + description: Brief description of the model and why it should be added + placeholder: | + - Why would it be valuable to include? + validations: + required: true + + - type: checkboxes + attributes: + label: "Requested Formats" + description: "Which model formats to be converted into?" + options: + - label: GGUF (llama.cpp) + - label: TensorRT (TensorRT-LLM) + - label: ONNX (Onnx Runtime) + + - type: textarea + id: additional_info + attributes: + label: Additional Information + description: Any other relevant information about the model + placeholder: | + - Special requirements or dependencies + - Known limitations or issues + - Benchmark results (if available) + - Other relevant details + + - type: checkboxes + id: confirmation + attributes: + label: Confirmation + options: + - label: I have created model.yml and metadata.yml files on cortex.so HugginFace repo + required: true + - label: I have run the model through the model conversion pipeline + required: true + - label: I have tested the model + required: true \ No newline at end of file