Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2025 Knovel Engineering
Copyright (c) 2025 Anonymous

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A comprehensive framework for evaluating the safety of Large Language Models (LL

```bash
# Clone the repository
git clone git@github.com:knoveleng/redeval.git
git clone git@github.com:anonymous/redeval.git
cd redeval

# Install dependencies
Expand Down Expand Up @@ -382,7 +382,7 @@ Environment and configuration management.

1. **Fork and Clone**
```bash
git clone https://github.com/knoveleng/redeval.git
git clone https://github.com/anonymous/redeval.git
cd redeval
```

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "0.1.0"
description = "RedBench: A Universal Dataset for Comprehensive Red Teaming of Large Language Models"
readme = "README.md"
authors = [
{name = "Knovel Engineering Lab", email = "andrew.dang@knoveleng.com"}
{name = "Anonymous", email = "anonymous@anonymous.com"}
]
license = {text = "MIT"}
requires-python = ">=3.8"
Expand All @@ -33,8 +33,8 @@ dependencies = [
]

[project.urls]
"Bug Reports" = "https://github.com/knoveleng/redbench/issues"
"Source" = "https://github.com/knoveleng/redbench"
"Bug Reports" = "https://github.com/anonymous/redbench/issues"
"Source" = "https://github.com/anonymous/redbench"

[project.optional-dependencies]
dev = [
Expand Down
2 changes: 1 addition & 1 deletion recipes/attack/base-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
log_dir: ./logs/attack/

# Dataset
dataset_id: "knoveleng/redbench"
dataset_id: "anonymous/redbench"
subdatasets: ["HarmBench"]

# Methods
Expand Down
2 changes: 1 addition & 1 deletion recipes/attack/base-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
log_dir: ./logs/attack/

# Dataset
dataset_id: "knoveleng/redbench"
dataset_id: "anonymous/redbench"
subdatasets: ["HarmBench"]

# Methods
Expand Down
2 changes: 1 addition & 1 deletion recipes/attack/methods.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
log_dir: ./logs/attack/

# Dataset
dataset_id: "knoveleng/redbench"
dataset_id: "anonymous/redbench"
subdatasets: ["HarmBench"]

# Methods
Expand Down
2 changes: 1 addition & 1 deletion recipes/refuse/base-close.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base configuration
dataset_id: knoveleng/redbench
dataset_id: anonymous/redbench
subdatasets: ["CoCoNot", "SGXSTest", "XSTest", "ORBench"]

# Logs
Expand Down
2 changes: 1 addition & 1 deletion recipes/refuse/base-open.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base configuration
dataset_id: knoveleng/redbench
dataset_id: anonymous/redbench
subdatasets: ["CoCoNot", "SGXSTest", "XSTest", "ORBench"]

# Logs
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
NAME = "redeval"
VERSION = "0.1.0"
DESCRIPTION = "Redbench: A Universal Dataset for Comprehensive Red Teaming of Large Language Models"
AUTHOR = "Knovel Engineering Lab"
AUTHOR_EMAIL = "andrew.dang@knoveleng.com"
URL = "https://github.com/knoveleng/redbench"
AUTHOR = "Anonymous"
AUTHOR_EMAIL = "anonymous@anonymous.com"
URL = "https://github.com/anonymous/redbench"
LICENSE = "MIT"

# Define package dependencies
Expand Down