From 1e6737dddcd5c355c1b3bbc1c1385ca6e40c6840 Mon Sep 17 00:00:00 2001 From: Jack Khuu Date: Tue, 2 Jul 2024 21:24:31 -0700 Subject: [PATCH 1/2] Rename TorchChat to Torchchat --- android/Torchchat/app/src/main/res/values/strings.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/Torchchat/app/src/main/res/values/strings.xml b/android/Torchchat/app/src/main/res/values/strings.xml index 08d6b8a79..906b08c90 100644 --- a/android/Torchchat/app/src/main/res/values/strings.xml +++ b/android/Torchchat/app/src/main/res/values/strings.xml @@ -1,3 +1,3 @@ - TorchChat + Torchchat From 8faee500d86bfadee9e2c47f9a1bf3c7aad87372 Mon Sep 17 00:00:00 2001 From: Jack Khuu Date: Tue, 2 Jul 2024 22:04:21 -0700 Subject: [PATCH 2/2] Adding Issue templates --- .github/ISSUE_TEMPLATE/bug-report.yml | 47 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/feature-request.yml | 30 ++++++++++++++ 3 files changed, 78 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature-request.yml diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 000000000..89f88986d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,47 @@ +name: 🐛 Bug Report +description: Create a report to help us reproduce and fix the bug + +body: +- type: markdown + attributes: + value: > + #### Before submitting a bug, please make sure the issue hasn't been already addressed by searching through [the existing and past issues](https://github.com/pytorch/torchchat/issues?q=is%3Aissue+sort%3Acreated-desc+). +- type: textarea + attributes: + label: 🐛 Describe the bug + description: | + Please provide a clear and concise description of what the bug is. + + If relevant, add a minimal example so that we can reproduce the error by running the code. + + If the code is too long (hopefully, it isn't), feel free to put it in a public gist and link it in the issue: https://gist.github.com. + + Please also paste or describe the results you observe instead of the expected results. If you observe an error, please paste the error message including the **full** traceback of the exception. It may be relevant to wrap error messages in ```` ```triple quotes blocks``` ````. + placeholder: | + A clear and concise description of what the bug is. + + ```python + # Sample code to reproduce the problem + ``` + + ``` + The error message you got, with the full traceback. + ``` + validations: + required: true +- type: textarea + attributes: + label: Versions + description: | + Please run the following and paste the output below. + ```sh + wget https://raw.githubusercontent.com/pytorch/pytorch/main/torch/utils/collect_env.py + # For security purposes, please check the contents of collect_env.py before running it. + python collect_env.py + ``` + validations: + required: true +- type: markdown + attributes: + value: > + Thanks for contributing 🎉! diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..2201bf82b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +.github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 000000000..cbab902cb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,30 @@ +name: 🚀 Feature request +description: Submit a proposal/request for a new torchchat feature + +body: +- type: textarea + attributes: + label: 🚀 The feature, motivation and pitch + description: > + A clear and concise description of the feature proposal. Please outline the motivation for the proposal. Is your feature request related to a specific problem? e.g., *"I'm working on X and would like Y to be possible"*. If this is related to another GitHub issue, please link to it here too. + validations: + required: true +- type: textarea + attributes: + label: Alternatives + description: > + A description of alternative solutions or features you've considered, if any. +- type: textarea + attributes: + label: Additional context + description: > + Add any other context or screenshots about the feature request. +- type: textarea + attributes: + label: RFC (Optional) + description: > + Explain the design in enough detail for others to understand the problem, scope, and proposed solution. +- type: markdown + attributes: + value: > + Thanks for contributing 🎉!