Skip to content

Commit cd41dce

Browse files
committed
INTERPRETER_HOST INTERPRETER_POST
1 parent c2692ef commit cd41dce

File tree

3 files changed

+846
-811
lines changed

3 files changed

+846
-811
lines changed

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
<img alt="local_explorer" src="https://github.com/OpenInterpreter/open-interpreter/assets/63927363/d941c3b4-b5ad-4642-992c-40edf31e2e7a">
1919

2020
<br>
21-
<br>
22-
<p align="center">
23-
This week we launched <strong>Local III</strong>, which introduces the Local Explorer via <strong><code>--local</code></strong>. <a href="https://changes.openinterpreter.com/log/local-iii">Read On →</a>
2421
</p>
2522
<br>
2623

interpreter/core/async_core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -975,8 +975,8 @@ async def validate_api_key(request: Request, call_next):
975975
)
976976

977977
self.app.include_router(router)
978-
h = host or os.getenv("HOST", Server.DEFAULT_HOST)
979-
p = port or int(os.getenv("PORT", Server.DEFAULT_PORT))
978+
h = host or os.getenv("INTERPRETER_HOST", Server.DEFAULT_HOST)
979+
p = port or int(os.getenv("INTERPRETER_PORT", Server.DEFAULT_PORT))
980980
self.config = uvicorn.Config(app=self.app, host=h, port=p)
981981
self.uvicorn_server = uvicorn.Server(self.config)
982982

0 commit comments

Comments
 (0)