Skip to content

Commit

Permalink
Release v2.1.0
Browse files Browse the repository at this point in the history
* Update version according to Release v2.1.0
  • Loading branch information
RomiconEZ authored Feb 5, 2025
1 parent af60896 commit d439156
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.1
current_version = 2.1.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ Red Teaming python-framework for testing chatbots and LLM-systems
[![Downloads](https://pepy.tech/badge/llamator)](https://pepy.tech/project/llamator)
[![Downloads](https://pepy.tech/badge/llamator/month)](https://pepy.tech/project/llamator)
[![GitHub Repo stars](https://img.shields.io/github/stars/RomiconEZ/llamator)](https://github.com/RomiconEZ/llamator/stargazers)
[![Docker](https://img.shields.io/badge/dockerfile-gray.svg?logo=docker)](https://github.com/RomiconEZ/llamator/blob/release/docker)

## Install 🚀

```bash
pip install llamator==2.0.1
pip install llamator==2.1.0
```

## Documentation 📚
Expand Down
2 changes: 1 addition & 1 deletion docs/howtos.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
## Installation Guide

```bash
pip install llamator==2.0.1
pip install llamator==2.1.0
```

## Usage Guide (using LM Studio)
Expand Down
2 changes: 1 addition & 1 deletion src/llamator/__version__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Version information."""

# fmt: off
__version__ = '2.0.1' # noqa
__version__ = '2.1.0' # noqa
# fmt: on
4 changes: 3 additions & 1 deletion src/llamator/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,9 @@ def start_testing(
if enable_reports:
report_language = validate_language(report_language)
csv_folder_name = "csv_report"
print(f"{BRIGHT}{colorama.Fore.RED}DISCLAIMER: Report may contain HARMFUL and OFFENSIVE language, reader discretion is recommended.{RESET}")
print(
f"{BRIGHT}{colorama.Fore.RED}DISCLAIMER: Report may contain HARMFUL and OFFENSIVE language, reader discretion is recommended.{RESET}"
)
create_attack_report_from_artifacts(
artifacts_dir=artifacts_run_path, csv_folder_name=csv_folder_name, report_file_name="attacks_report.xlsx"
)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_local_llamator.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def test_openai_client():
Type of model
"""
load_dotenv()

import llamator.client.specific_chat_clients
import llamator.main

Expand Down

0 comments on commit d439156

Please sign in to comment.