Skip to content

Commit becdd4e

Browse files
committed
Updated README
1 parent cd139b8 commit becdd4e

4 files changed

Lines changed: 7 additions & 11 deletions

File tree

.github/workflows/integrate.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ jobs:
1313
id: trufflehog
1414
uses: trufflesecurity/trufflehog@main
1515
continue-on-error: false
16-
with:
17-
head: HEAD
18-
extra_args: --debug
1916
qa:
2017
name: Quality Assurance
2118
runs-on: ubuntu-latest
@@ -28,7 +25,7 @@ jobs:
2825
python-version: 3.12
2926
- name: Install Python dependencies
3027
run: python -m pip install black
31-
- name: Run Python black
28+
- name: Check code formatting
3229
run: black --diff --color --check .
3330
sca:
3431
name: Software Composition Analysis
@@ -56,5 +53,5 @@ jobs:
5653
steps:
5754
- name: Clone the repository
5855
uses: actions/checkout@v4
59-
- name: Do a SAST scan
56+
- name: Perform a SAST scan
6057
run: semgrep scan --config auto

.github/workflows/publish.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ jobs:
77
pypi:
88
name: Publish to PyPI
99
runs-on: ubuntu-latest
10-
environment:
11-
name: pypi
12-
url: https://pypi.org/p/pySunshower
1310
permissions:
1411
id-token: write
12+
actions: read
13+
contents: write
1514
steps:
1615
- uses: actions/checkout@v4
1716
- name: Install Python

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
## Overview
1111
Not all AI agents are created equal. In the design phase of system development, choosing the right harness and model is critical. `pySunshower` automates this decision-making process by running trials in parallel and using an LLM to score the results.
1212

13-
![diagram](diagram.png)
13+
![diagram](./diagram.png)
1414

1515
## Features
1616
* **Declarative**: Define your entire experiment (teams, models, harnesses, and metrics) in YAML

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "pySunshower"
3-
version = "0.0.2"
4-
description = "pySunshower is a Python library for evaluating AI agents in a declarative way."
3+
version = "0.0.3"
4+
description = "Declarative and Distributed Benchmarking for AI Agents."
55
readme = "README.md"
66
requires-python = ">=3.12"
77

0 commit comments

Comments
 (0)