diff --git a/README.md b/README.md index a23e355d..22cf4f1f 100644 --- a/README.md +++ b/README.md @@ -23,10 +23,11 @@ Dreadnode Strikes SDK
-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. diff --git a/dreadnode/api/client.py b/dreadnode/api/client.py index 674f8c1f..1f512c4c 100644 --- a/dreadnode/api/client.py +++ b/dreadnode/api/client.py @@ -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()]