Skip to content

Commit f727451

Browse files
authored
feat: init v1 client format (#16)
* feat: init v1 * guide * updates * chore: tests * fix: tests * cleanup * format * chore: remove api key * wip * fix: trace scorer * reapply gitignore * chore: format * fix: implement custom scorer * fix: remove derailment * chore: dont throw on prompt scorer get * cleanup: no model * judgment client -> judgeval * chore: initialize true default
1 parent 6f9c9fe commit f727451

File tree

71 files changed

+3828
-337
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+3828
-337
lines changed

.cursor/rules

Lines changed: 0 additions & 227 deletions
This file was deleted.

.github/workflows/test-instrumentation-openai.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,13 @@ jobs:
2727
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
2828
restore-keys: ${{ runner.os }}-m2
2929

30+
- name: Run Tests
31+
run: |
32+
cd instrumentation/judgeval-instrumentation-openai && mvn -B test
33+
3034
- name: Test Install
3135
run: |
32-
mvn -B -Dgpg.skip=true -pl instrumentation/judgeval-instrumentation-openai -am clean install
36+
cd instrumentation/judgeval-instrumentation-openai && mvn -B -Dgpg.skip=true clean install
3337
3438
- name: Verify Build Artifacts
3539
run: |

.github/workflows/test-judgeval-java.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,13 @@ jobs:
2727
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
2828
restore-keys: ${{ runner.os }}-m2
2929

30+
- name: Run Tests
31+
run: |
32+
cd judgeval-java && mvn -B test
33+
3034
- name: Test Install
3135
run: |
32-
mvn -B -Dgpg.skip=true -pl judgeval-java -am clean install
36+
cd judgeval-java && mvn -B -Dgpg.skip=true clean install
3337
3438
- name: Verify Build Artifacts
3539
run: |

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,3 +160,6 @@ $RECYCLE.BIN/
160160

161161
.env
162162
.env*
163+
164+
165+
.idea

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/workspace.xml

Lines changed: 0 additions & 66 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
22
"java.configuration.updateBuildConfiguration": "automatic",
3+
"java.import.maven.enabled": true,
4+
"java.compile.nullAnalysis.mode": "automatic",
35
"java.format.settings.url": ".vscode/java-formatter.xml"
46
}

0 commit comments

Comments
 (0)