Skip to content

Commit 2751057

Browse files
committed
Archived Interpreter Classic
1 parent bd6441a commit 2751057

File tree

297 files changed

+5773
-5659
lines changed

Some content is hidden

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

297 files changed

+5773
-5659
lines changed

Dockerfile

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
1-
###########################################################################################
2-
# This Dockerfile runs an LMC-compatible websocket server at / on port 8000. #
3-
# To learn more about LMC, visit https://docs.openinterpreter.com/protocols/lmc-messages. #
4-
###########################################################################################
5-
61
FROM python:3.11.8
72

83
# Set environment variables
94
# ENV OPENAI_API_KEY ...
105

11-
ENV HOST 0.0.0.0
6+
ENV INTERPRETER_HOST 0.0.0.0
127
# ^ Sets the server host to 0.0.0.0, Required for the server to be accessible outside the container
138

149
# Copy required files into container
@@ -20,8 +15,7 @@ COPY poetry.lock pyproject.toml README.md ./
2015
# Expose port 8000
2116
EXPOSE 8000
2217

23-
# Install server dependencies
24-
RUN pip install ".[server]"
18+
RUN pip install "."
2519

2620
# Start the server
27-
ENTRYPOINT ["interpreter", "--server"]
21+
ENTRYPOINT ["interpreter", "--serve"]

archive/bash copy.py

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

archive/bash sorta working.py

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

0 commit comments

Comments
 (0)