Spaces:
Sleeping
Sleeping
File size: 865 Bytes
5c50bbf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# Contributing to Speak Your Mind FastAPI
Thank you for your interest in contributing!
## How to Contribute
1. **Fork** the repository.
2. **Clone** your fork:
```bash
git clone https://huggingface.co/spaces/ADK09/speak-your-mind-fastapi
cd speak-your-mind-fastapi
```
3. **Create a new branch** for your feature or fix:
```bash
git checkout -b feature-name
```
4. **Make changes** and commit:
```bash
git commit -m "Add feature XYZ"
```
5. **Push to your branch** and create a **pull request**.
## Guidelines
- Follow **PEP8** coding standards.
- Write **clear commit messages**.
- Keep PRs **small and focused**.
- **Do not modify the model itself**, as we are only using `cardiffnlp/twitter-roberta-base-emotion-latest`.
## Running Tests
Before submitting a pull request, run:
```bash
pytest test_app.py
```
Happy coding!
``` |