-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Demo Course Recommendation Chatbot (not production-ready, for RC only) (
- Loading branch information
Showing
46 changed files
with
2,691 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Use the provided base image | ||
FROM ghcr.io/berriai/litellm:main-latest | ||
|
||
# Set the working directory to /app | ||
WORKDIR /app | ||
|
||
|
||
# Make sure your docker/entrypoint.sh is executable | ||
RUN chmod +x ./docker/entrypoint.sh | ||
|
||
# Expose the necessary port | ||
EXPOSE 4000/tcp | ||
|
||
# Override the CMD instruction with your desired command and arguments | ||
# WARNING: FOR PROD DO NOT USE `--detailed_debug` it slows down response times, instead use the following CMD | ||
# CMD ["--port", "4000", "--config", "config.yaml"] | ||
|
||
CMD ["--port", "4000", "--config", "litellm_config.yml"] |
Empty file.
Oops, something went wrong.