diff --git a/CHANGES.rst b/CHANGES.rst
index 0f02297..52cf7b3 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,8 @@
+Version 1.3.0
+-------------
+- Chat feature for text analysis.
+
+
Version 1.2.0
-------------
- Support for all Penn POS tags
diff --git a/README.rst b/README.rst
index 4d98530..e49fbe8 100644
--- a/README.rst
+++ b/README.rst
@@ -89,15 +89,23 @@ of interest where we endeavor to find them in order to shed light into our data.
Wordview offers several anomaly and outlier detection functions.
-
Cluster Analysis
****************
Clustering can be used to identify different groups of documents with similar information, in an unsupervised fashion.
Despite it's ability to provide valuable insights into your data, you do not need labeled data for clustering.
+
+Chat with Wordview
+******************
+Worldview integrates GPT-3.5-Turbo to enable the users to interact with their data and get insights from it via Natural Language.
+
+.. image:: sphinx-docs/figs/chat.png
+ :width: 100%
+ :align: center
+
Utilities
-#########
+*********
Wordview offers a number of utility functions that you can use for common pre and post processing tasks in NLP.
Contributing
diff --git a/docs/.doctrees/api.doctree b/docs/.doctrees/api.doctree
index 530bba3..f1eb332 100644
Binary files a/docs/.doctrees/api.doctree and b/docs/.doctrees/api.doctree differ
diff --git a/docs/.doctrees/chat.doctree b/docs/.doctrees/chat.doctree
new file mode 100644
index 0000000..e9aeb9f
Binary files /dev/null and b/docs/.doctrees/chat.doctree differ
diff --git a/docs/.doctrees/contributing.doctree b/docs/.doctrees/contributing.doctree
index e916706..447b711 100644
Binary files a/docs/.doctrees/contributing.doctree and b/docs/.doctrees/contributing.doctree differ
diff --git a/docs/_images/chat.png b/docs/_images/chat.png
new file mode 100644
index 0000000..99b5c13
Binary files /dev/null and b/docs/_images/chat.png differ
diff --git a/docs/_sources/chat.rst.txt b/docs/_sources/chat.rst.txt
new file mode 100644
index 0000000..435e2dc
--- /dev/null
+++ b/docs/_sources/chat.rst.txt
@@ -0,0 +1,32 @@
+Chat with Wordview
+##################
+
+Worldview integrates GPT-3.5-Turbo to enable the users to interact with their data and get insights from it via Natural Language.
+See examples of chatting with different components of Wordview below.
+
+
+Chat with TextStatsPlots
+~~~~~~~~~~~~~~~~~~~~~~~~
+
+After allowing Wordview to process and analyze your corpus, you can
+call the `chat` method to interact with the data and get insights from it via Natural Language.
+
+.. code:: python
+
+ import json
+
+ import pandas as pd
+
+ from wordview.text_analysis import TextStatsPlots
+ imdb_df = pd.read_csv("data/IMDB_Dataset_sample_5k.csv")
+ with open("wordview/chat/secrets/openai_api_key.json", "r") as f:
+ credentials = json.load(f)
+
+ tsp = TextStatsPlots(df=imdb_df, text_column="review")
+ tsp.chat(api_key=credentials.get("openai_api_key"))
+
+The chat UI is available under http://127.0.0.1:5000/
+
+|chat|
+
+.. |chat| image:: ../figs/chat.png
\ No newline at end of file
diff --git a/docs/api.html b/docs/api.html
index 0f8d8ed..911bf9b 100644
--- a/docs/api.html
+++ b/docs/api.html
@@ -73,6 +73,8 @@
Text Analysis