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 6fefd56 commit adbb1e1Copy full SHA for adbb1e1
README.md
@@ -24,7 +24,7 @@ Then right away you can start LangEvals as a server with:
24
langevals-server
25
```
26
27
-And navigate to `http://localhost:8000/` to try out the evaluators.
+And navigate to `http://localhost:5562/` to try out the evaluators.
28
29
Alternatively, you can use it as a library as the examples below show.
30
langevals/server.py
@@ -143,7 +143,7 @@ def main():
143
import gunicorn.app.base
144
145
host = "0.0.0.0"
146
- port = int(os.getenv("PORT", 8000))
+ port = int(os.getenv("PORT", 5562))
147
workers = get_cpu_count()
148
149
class StandaloneApplication(gunicorn.app.base.BaseApplication):
0 commit comments