Skip to content
Merged
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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ Dreadnode Strikes SDK

</br>

Strikes is an platform for building, experimenting with, and evaluating AI security agent code.
Strikes is a platform for building, experimenting with, and evaluating AI security agent code.

- **Experiment + Tasking + Observability** in a single place that's lightweight and scales.
- **Track your data** with parameters, inputs, and outputs all connected to your tasks.
- **Log your artifacts** — data, models, files, and folders — to track data of your Dreadnode runs, enabling easy reuse and reproducibility.
- **Measure everything** with metrics throughout your code and anywhere you need them.
- **Scale your code** from a single run to thousands.

Expand Down
5 changes: 0 additions & 5 deletions dreadnode/api/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,6 @@ def request(

return response

# This currently won't work with API keys
# def get_user(self) -> UserResponse:
# response = self.request("GET", "/user")
# return UserResponse(**response.json())

def list_projects(self) -> list[Project]:
response = self.request("GET", "/strikes/projects")
return [Project(**project) for project in response.json()]
Expand Down
Loading