-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add README.md and requirements.txt to guide developers
- Loading branch information
Showing
5 changed files
with
49 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Basic Judge | ||
A simple plugin that asks a local Llama to judge a prompt. | ||
|
||
## Get Started | ||
Run the app: | ||
|
||
``` | ||
git clone [email protected]:LLMGuardian/BasicJudge.git | ||
pip install -r requirements.txt | ||
python src/app.py | ||
``` | ||
|
||
Run the tests: | ||
|
||
```PYTHONPATH=src pytest tests -v``` | ||
|
||
|
||
## Contribution | ||
Don't forget to add tests to cover your code and format them first! | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
black==24.10.0 | ||
blinker==1.8.2 | ||
certifi==2024.8.30 | ||
charset-normalizer==3.4.0 | ||
click==8.1.7 | ||
Flask==3.0.3 | ||
idna==3.10 | ||
isort==5.13.2 | ||
itsdangerous==2.2.0 | ||
Jinja2==3.1.4 | ||
MarkupSafe==3.0.2 | ||
mypy-extensions==1.0.0 | ||
packaging==24.1 | ||
pathspec==0.12.1 | ||
platformdirs==4.3.6 | ||
requests==2.32.3 | ||
tomli==2.0.2 | ||
typing_extensions==4.12.2 | ||
urllib3==2.2.3 | ||
Werkzeug==3.0.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters