diff --git a/app.py b/app.py
index aca557d0f79d9afab0d7e7e0087d471c4323c2df..ef00e2990237fe4cfc3e09154ae2949800ec642d 100644
--- a/app.py
+++ b/app.py
@@ -3,7 +3,7 @@
 import streamlit as st
 from langchain.vectorstores import FAISS
 from langchain.embeddings import OpenAIEmbeddings
-from langchain.chat_models import ChatOpenAI
+from langchain.chat_models import AzureChatOpenAI
 from langchain.prompts import (
     ChatPromptTemplate,
     SystemMessagePromptTemplate,
@@ -72,7 +72,7 @@ st.markdown("""
 
 Brought to you by the Anesthesiology MPOG Steering Committee, Informatics, and Data Science teams
 
-_Not affiliated with MPOG. Uses external resources. Not approved for use with PHI or sensitive data._
+_Not affiliated with MPOG. Not approved for use with PHI._
 
 All submissions are recorded for potential review by the MPOG Steering Committee.
 
@@ -89,7 +89,14 @@ You can trick generative AIs into saying whatever you want. If you succeed in tr
 As always, use your best judgment. An AI can do the wrong thing at the worst time.
 """)
 
-chat = ChatOpenAI(temperature=0, model_name="gpt-3.5-turbo")
+chat = AzureChatOpenAI(
+    openai_api_base="https://nlp-openai-svc.openai.azure.com",
+    openai_api_version="2023-03-15-preview",
+    deployment_name="ChatGPT35Turbo",
+    openai_api_key=OPENAI_API_KEY,
+    openai_api_type = "azure",
+    temperature=0
+)
 # Load vectorstore
 embedding = OpenAIEmbeddings()
 vectordb = FAISS.load_local("faiss_index", embedding)
diff --git a/deploy/Dockerfile b/deploy/Dockerfile
index 7f189316cba8c08cd3553c5fde77fd0cf21ec98d..09b3a78b25340fd3a45f7a03378c27bd47f16eef 100644
--- a/deploy/Dockerfile
+++ b/deploy/Dockerfile
@@ -19,7 +19,7 @@ RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - && \
 # Check if repo has been updated since last build
 ADD "https://gitlab.rc.uab.edu/anes_ai/mpog-helper-openai/commits?per_page=1" latest_commit
 RUN rm -rf latest_commit
-RUN git clone https://gitlab.rc.uab.edu/anes_ai/mpog-helper-openai.git .
+RUN git clone -b feature/azure2 https://gitlab.rc.uab.edu/anes_ai/mpog-helper-openai.git .
 
 #COPY .streamlit/secrets.toml /deploy/.streamlit/