Skip to content

Commit

Permalink
Merge pull request #70 from dsba6010-llm-applications/chat-app/change…
Browse files Browse the repository at this point in the history
…-port

Changed port to 8000
  • Loading branch information
neal-logan authored Dec 12, 2024
2 parents 1fc3f1b + e3d365b commit f281f99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions MinuteMate/back/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ WORKDIR /app
COPY . /app
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
EXPOSE 8001
CMD ["uvicorn", "main:app","--host","0.0.0.0","--port","8001"]
EXPOSE 8000
CMD ["uvicorn", "main:app","--host","0.0.0.0","--port","8000"]
2 changes: 1 addition & 1 deletion MinuteMate/front/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def display_chat_messages() -> None:
try:
# Make API call to backend
response = requests.post(
"http://host.docker.internal:8001/process-prompt", # Adjust URL as needed
"http://host.docker.internal:8000/process-prompt", # Adjust URL as needed
json={"user_prompt_text": prompt}
)

Expand Down

0 comments on commit f281f99

Please sign in to comment.