We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bdb8aa commit 960715aCopy full SHA for 960715a
README.md
@@ -33,7 +33,7 @@ pip install vllm-judge[dev]
33
from vllm_judge import Judge
34
35
# Initialize with vLLM url
36
-judge = Judge.from_url("http://localhost:8000")
+judge = Judge.from_url("http://vllm-server:8000")
37
38
# Simple evaluation
39
result = await judge.evaluate(
@@ -67,7 +67,7 @@ result = await judge.evaluate(
67
Run Judge as a REST API:
68
69
```bash
70
-vllm-judge serve --base-url http://localhost:8000 --port 9090 --host localhost
+vllm-judge serve --base-url http://vllm-server:8000 --port 9090 --host localhost
71
```
72
73
Then use the HTTP API:
0 commit comments