Spaces:
Sleeping
Sleeping
Kim Adams commited on
Commit ·
49ebc4e
1
Parent(s): 11e1a60
step 1
Browse files- .gitignore +1 -0
- app.py +78 -4
- requirements.txt +20 -0
- slack_processing/__pycache__/slack_data_prep.cpython-311.pyc +0 -0
- slack_processing/data/slack.json +1237 -0
- slack_processing/data/themes.json +346 -0
- slack_processing/slack_data_prep.py +233 -0
- utilities/__pycache__/api_keys.cpython-311.pyc +0 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
.env
|
app.py
CHANGED
|
@@ -1,7 +1,81 @@
|
|
| 1 |
import gradio as gr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
-
|
| 4 |
-
|
|
|
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
+
import openai, os
|
| 3 |
+
from huggingface_hub import Repository
|
| 4 |
+
from io import BytesIO
|
| 5 |
+
from dotenv import load_dotenv
|
| 6 |
+
from openai.embeddings_utils import get_embedding, cosine_similarity
|
| 7 |
+
from slack_processing.slack_data_prep import FetchSlack, ProcessSlack
|
| 8 |
+
##from ml_to_nl_translation.translation import getTranslations, getJSONDF
|
| 9 |
+
#from lookups.translate_pdf_to_text import PreparePDF
|
| 10 |
+
#from lookups.create_searchable_content import CreateSearchableContent
|
| 11 |
+
from utilities import api_keys
|
| 12 |
+
import PyPDF2
|
| 13 |
|
| 14 |
+
#import pkg_resources
|
| 15 |
+
#pypdf_version = pkg_resources.get_distribution("PyPDF2").version
|
| 16 |
+
#print(f"python-pypdf_version version: {pypdf_version}")
|
| 17 |
|
| 18 |
+
openai.api_key = api_keys.APIKeys().get_key('OPENAI_API_KEY')
|
| 19 |
+
eleven_api_key = api_keys.APIKeys().get_key('ELEVEN_LABS_API_KEY')
|
| 20 |
+
voice_id = api_keys.APIKeys().get_key('VOICE_ID')
|
| 21 |
+
|
| 22 |
+
def FetchSlackJSON():
|
| 23 |
+
result=FetchSlack()
|
| 24 |
+
print("slack result")
|
| 25 |
+
print (result)
|
| 26 |
+
return result
|
| 27 |
+
|
| 28 |
+
def InitProcess():
|
| 29 |
+
result=ProcessSlack()
|
| 30 |
+
print("slack result")
|
| 31 |
+
print (result)
|
| 32 |
+
return result
|
| 33 |
+
|
| 34 |
+
def fetch_json_df():
|
| 35 |
+
#result = getJSONDF()
|
| 36 |
+
print(result)
|
| 37 |
+
return result
|
| 38 |
+
|
| 39 |
+
def fetch_reference():
|
| 40 |
+
#result = PreparePDF()
|
| 41 |
+
print("Result"+result)
|
| 42 |
+
return result
|
| 43 |
+
|
| 44 |
+
def fetch_content():
|
| 45 |
+
# result = CreateSearchableContent()
|
| 46 |
+
return result
|
| 47 |
+
|
| 48 |
+
with gr.Blocks() as ui1:
|
| 49 |
+
with gr.Row():
|
| 50 |
+
b1 = gr.Button("Fetch Slack JSON")
|
| 51 |
+
with gr.Row():
|
| 52 |
+
with gr.Column(scale=1, min_width=600):
|
| 53 |
+
df1 =gr.Dataframe(type="pandas")
|
| 54 |
+
b1.click(FetchSlackJSON,outputs=df1)
|
| 55 |
+
|
| 56 |
+
with gr.Blocks() as ui2:
|
| 57 |
+
with gr.Row():
|
| 58 |
+
b2 = gr.Button("Process & Tag Slack Data")
|
| 59 |
+
with gr.Row():
|
| 60 |
+
with gr.Column(scale=1, min_width=600):
|
| 61 |
+
df2 =gr.Dataframe(type="pandas")
|
| 62 |
+
b2.click(ProcessSlack,outputs=df2)
|
| 63 |
+
|
| 64 |
+
with gr.Blocks() as ui3:
|
| 65 |
+
with gr.Row():
|
| 66 |
+
b3 = gr.Button("Pull Reference")
|
| 67 |
+
with gr.Row():
|
| 68 |
+
with gr.Column(scale=1, min_width=600):
|
| 69 |
+
df3 =gr.HTML()
|
| 70 |
+
b3.click(fetch_reference,outputs=df3)
|
| 71 |
+
|
| 72 |
+
with gr.Blocks() as ui4:
|
| 73 |
+
with gr.Row():
|
| 74 |
+
b4 = gr.Button("Create Searchable Content")
|
| 75 |
+
with gr.Row():
|
| 76 |
+
with gr.Column(scale=1, min_width=600):
|
| 77 |
+
df4 =gr.Dataframe(type="pandas")
|
| 78 |
+
b4.click(fetch_content,outputs=df4)
|
| 79 |
+
|
| 80 |
+
demo = gr.TabbedInterface([ui1,ui2,ui3,ui4], ("Fetch Slack", "Process & Tag", "Sort Topics by People","Create Embeddings"))
|
| 81 |
+
demo.launch()
|
requirements.txt
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pip>=21.3
|
| 2 |
+
requests==2.31.0
|
| 3 |
+
pylance==0.5.10
|
| 4 |
+
pandas==2.0.3
|
| 5 |
+
numpy==1.25.2
|
| 6 |
+
matplot==0.1.9
|
| 7 |
+
tenacity==8.2.2
|
| 8 |
+
scikit-learn==1.2.2
|
| 9 |
+
plotly.express==0.4.1
|
| 10 |
+
openai==0.27.8
|
| 11 |
+
openapi-schema-pydantic==1.2.4
|
| 12 |
+
gradio==3.39.0
|
| 13 |
+
gradio_client==0.3.0
|
| 14 |
+
GitPython==3.1.31
|
| 15 |
+
elevenlabs==0.2.18
|
| 16 |
+
python-dotenv==1.0.0
|
| 17 |
+
nltk==3.8.1
|
| 18 |
+
bs4==0.0.1
|
| 19 |
+
lxml==4.9.3
|
| 20 |
+
PyPDF2==3.0.1
|
slack_processing/__pycache__/slack_data_prep.cpython-311.pyc
ADDED
|
Binary file (13.4 kB). View file
|
|
|
slack_processing/data/slack.json
ADDED
|
@@ -0,0 +1,1237 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"id":45,
|
| 4 |
+
"person": "DataNinja",
|
| 5 |
+
"datetime": "2023-07-11 9:21 AM",
|
| 6 |
+
"message": "#greenshirts #nomemoneeded IMG_6103",
|
| 7 |
+
"reactions": [
|
| 8 |
+
{
|
| 9 |
+
"emoji": ":greenteam:",
|
| 10 |
+
"count": 8
|
| 11 |
+
},
|
| 12 |
+
{
|
| 13 |
+
"emoji": ":twinsparrot:",
|
| 14 |
+
"count": 1
|
| 15 |
+
},
|
| 16 |
+
{
|
| 17 |
+
"emoji": ":blueheart:",
|
| 18 |
+
"count": 4
|
| 19 |
+
},
|
| 20 |
+
{
|
| 21 |
+
"emoji": ":green_heart:",
|
| 22 |
+
"count": 3
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
"emoji": ":shirt:",
|
| 26 |
+
"count": 3
|
| 27 |
+
}
|
| 28 |
+
],
|
| 29 |
+
"replies": 5
|
| 30 |
+
},
|
| 31 |
+
{
|
| 32 |
+
"id":1,
|
| 33 |
+
"person": "carlos.salazar",
|
| 34 |
+
"datetime": "2023-06-22 9:47 AM",
|
| 35 |
+
"message": "Ooo.",
|
| 36 |
+
"reactions": [
|
| 37 |
+
{
|
| 38 |
+
"emoji": ":korok:",
|
| 39 |
+
"count": 1
|
| 40 |
+
}
|
| 41 |
+
],
|
| 42 |
+
"replies": 0
|
| 43 |
+
},
|
| 44 |
+
{
|
| 45 |
+
"id":2,
|
| 46 |
+
"person": "Keri W",
|
| 47 |
+
"datetime": "2023-06-22 9:52 AM",
|
| 48 |
+
"message": "IMPORTANT ADDITION: You do NOT need ANY experience or knowledge of D&D to join the one-shot campaign. R2 will walk you through everything you need to know. Don't be shy and join us! (edited)",
|
| 49 |
+
"reactions": [
|
| 50 |
+
{
|
| 51 |
+
"emoji": ":build_heart:",
|
| 52 |
+
"count": 7
|
| 53 |
+
}
|
| 54 |
+
],
|
| 55 |
+
"replies": 0
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"id":3,
|
| 59 |
+
"person": "Brad Merrell",
|
| 60 |
+
"datetime": "2023-06-22 10:14 AM",
|
| 61 |
+
"message": "After the summer, then I will be more available.",
|
| 62 |
+
"reactions": [
|
| 63 |
+
{
|
| 64 |
+
"emoji": ":build:",
|
| 65 |
+
"count": 1
|
| 66 |
+
}],
|
| 67 |
+
"replies": 1
|
| 68 |
+
},
|
| 69 |
+
{
|
| 70 |
+
"id":4,
|
| 71 |
+
"person": "Jay Patel",
|
| 72 |
+
"datetime": "2023-06-22 12:04 PM",
|
| 73 |
+
"message": "@here L&L starting in 5 mins. If you are in the office, Feel free to come to RICE. AI Tutoring: Paving the Way to Better Tomorrows in Education\nhttps://teams.microsoft.com/l/meetup-join/19%3ameeting_MTg2OWRkYzgtYTdmOS00NTk4LWE4MmQ[…]2c%22Oid%22%3a%22bca811aa-1982-4f3b-b602-bca1a89180dc%22%7d",
|
| 74 |
+
"reactions": [
|
| 75 |
+
{
|
| 76 |
+
"emoji": ":ai:",
|
| 77 |
+
"count": 1
|
| 78 |
+
}
|
| 79 |
+
],
|
| 80 |
+
"replies": 0
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"id":5,
|
| 84 |
+
"person": "Manik",
|
| 85 |
+
"datetime": "2023-06-22 2:01 PM",
|
| 86 |
+
"message": "It's @Sam ’s 2 year Slalomversary. Sam, it's been a pleasure to be on a team with you and thanks for everything you do at _build, especially around the ERGs. Congratulations!",
|
| 87 |
+
"reactions": [
|
| 88 |
+
{
|
| 89 |
+
"emoji": ":sam:",
|
| 90 |
+
"count": 9
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"emoji": ":tada:",
|
| 94 |
+
"count": 3
|
| 95 |
+
},
|
| 96 |
+
{
|
| 97 |
+
"emoji": ":thank-you:",
|
| 98 |
+
"count": 1
|
| 99 |
+
},
|
| 100 |
+
{
|
| 101 |
+
"emoji": ":party_blob:",
|
| 102 |
+
"count": 1
|
| 103 |
+
}
|
| 104 |
+
],
|
| 105 |
+
"replies": 10
|
| 106 |
+
},
|
| 107 |
+
{
|
| 108 |
+
"id":6,
|
| 109 |
+
"person": "Naeem",
|
| 110 |
+
"datetime": "2023-06-22 2:02 PM",
|
| 111 |
+
"message": "@Sam happy Slalomversary!",
|
| 112 |
+
"reactions": [
|
| 113 |
+
{
|
| 114 |
+
"emoji": ":thank-you:",
|
| 115 |
+
"count": 1
|
| 116 |
+
}
|
| 117 |
+
],
|
| 118 |
+
"replies": 0
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"id":7,
|
| 122 |
+
"person": "Monika Rudra",
|
| 123 |
+
"datetime": "2023-06-22 2:02 PM",
|
| 124 |
+
"message": "Happy Slalomversary @Sam",
|
| 125 |
+
"reactions": [
|
| 126 |
+
{
|
| 127 |
+
"emoji": ":thank-you:",
|
| 128 |
+
"count": 1
|
| 129 |
+
}
|
| 130 |
+
],
|
| 131 |
+
"replies": 0
|
| 132 |
+
},
|
| 133 |
+
{
|
| 134 |
+
"id":8,
|
| 135 |
+
"person": "ʎןןǝʞ",
|
| 136 |
+
"datetime": "2023-06-22 2:09 PM",
|
| 137 |
+
"message": "Happy Slalomversary, my dear friend! @Sam :hugging_face:",
|
| 138 |
+
"reactions": [
|
| 139 |
+
{
|
| 140 |
+
"emoji": ":thank-you:",
|
| 141 |
+
"count": 1
|
| 142 |
+
},
|
| 143 |
+
{
|
| 144 |
+
"emoji": ":heart:",
|
| 145 |
+
"count": 1
|
| 146 |
+
}
|
| 147 |
+
],
|
| 148 |
+
"replies": 0
|
| 149 |
+
},
|
| 150 |
+
{
|
| 151 |
+
"id":9,
|
| 152 |
+
"person": "David Bernal",
|
| 153 |
+
"datetime": "2023-06-22 2:20 PM",
|
| 154 |
+
"message": "Happy Slalomversary, @Sam! :partyblob:",
|
| 155 |
+
"reactions": [
|
| 156 |
+
{
|
| 157 |
+
"emoji": ":thank-you:",
|
| 158 |
+
"count": 1
|
| 159 |
+
}
|
| 160 |
+
],
|
| 161 |
+
"replies": 0
|
| 162 |
+
},
|
| 163 |
+
{
|
| 164 |
+
"id":10,
|
| 165 |
+
"person": "Doug Bowen",
|
| 166 |
+
"datetime": "2023-06-22 2:37 PM",
|
| 167 |
+
"message": "FYI at 3:30 today, I'll be taking the Arcade machine down for maintenance. It will actually remain down until next Wednesday morning as I work through some marquee configuration. :dealwithit:",
|
| 168 |
+
"reactions": [
|
| 169 |
+
{
|
| 170 |
+
"emoji": ":gameboy:",
|
| 171 |
+
"count": 4
|
| 172 |
+
}
|
| 173 |
+
],
|
| 174 |
+
"replies": 0
|
| 175 |
+
},
|
| 176 |
+
{
|
| 177 |
+
"id":11,
|
| 178 |
+
"person": "John Flaherty",
|
| 179 |
+
"datetime": "2023-06-22 7:36 AM",
|
| 180 |
+
"message": "Thank you to everyone who came into the office yesterday in support of our Build Center tour for Woodside Energy and AWS. Special thanks to @Christy Nolan and @Danny Weldon for their support presenting “how we work” and “what we’re working on”. We’re well positioned to win work with the buyer at Woodside stating “several consulting companies have pitched to me but nobody aligns better with my vision than Slalom does”.",
|
| 181 |
+
"reactions": [
|
| 182 |
+
{
|
| 183 |
+
"emoji": ":build_heart:",
|
| 184 |
+
"count": 30
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"emoji": ":build:",
|
| 188 |
+
"count": 9
|
| 189 |
+
},
|
| 190 |
+
{
|
| 191 |
+
"emoji": ":minion-woohoo:",
|
| 192 |
+
"count": 2
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"emoji": ":yes-nod:",
|
| 196 |
+
"count": 1
|
| 197 |
+
}
|
| 198 |
+
],
|
| 199 |
+
"replies": 0
|
| 200 |
+
},
|
| 201 |
+
{
|
| 202 |
+
"id":12,
|
| 203 |
+
"person": "derreck.stellpflug",
|
| 204 |
+
"datetime": "2023-06-20 2:36 PM",
|
| 205 |
+
"message": ":alert0: :blob-policeangry: :oncoming_police_car: :alert0: Saw :eyes-intensify: :pirate_flag: this the other day :exploding_head: ...someone please forward :mailbox: this to :slalom:lalom :build:uild Legal:judge:",
|
| 206 |
+
"reactions": [
|
| 207 |
+
{
|
| 208 |
+
"emoji": ":cat-scream-rage:",
|
| 209 |
+
"count": 4
|
| 210 |
+
},
|
| 211 |
+
{
|
| 212 |
+
"emoji": ":joy:",
|
| 213 |
+
"count": 3
|
| 214 |
+
},
|
| 215 |
+
{
|
| 216 |
+
"emoji": ":disgruntled-doug:",
|
| 217 |
+
"count": 1
|
| 218 |
+
}
|
| 219 |
+
],
|
| 220 |
+
"replies": 0
|
| 221 |
+
},
|
| 222 |
+
{
|
| 223 |
+
"id":13,
|
| 224 |
+
"person": "Slackbot",
|
| 225 |
+
"datetime": "2023-06-20 4:00 PM",
|
| 226 |
+
"message": "Reminder: Time sheets!",
|
| 227 |
+
"replies": 0
|
| 228 |
+
},
|
| 229 |
+
{
|
| 230 |
+
"id":14,
|
| 231 |
+
"person": "Naeem",
|
| 232 |
+
"datetime": "6:24 PM",
|
| 233 |
+
"message": "Happy Friday",
|
| 234 |
+
"reactions": [
|
| 235 |
+
{
|
| 236 |
+
"emoji": ":cocktail:",
|
| 237 |
+
"count": 6
|
| 238 |
+
},
|
| 239 |
+
{
|
| 240 |
+
"emoji": ":tequila:",
|
| 241 |
+
"count": 4
|
| 242 |
+
},
|
| 243 |
+
{
|
| 244 |
+
"emoji": ":100:",
|
| 245 |
+
"count": 3
|
| 246 |
+
}
|
| 247 |
+
],
|
| 248 |
+
"replies": 0
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"id":15,
|
| 252 |
+
"person": "Steven Murray",
|
| 253 |
+
"datetime": "2023-06-20 8:58 PM",
|
| 254 |
+
"message": "Date night with my wife at the Sugar Land Space Cowboys game.",
|
| 255 |
+
"reactions": [
|
| 256 |
+
{
|
| 257 |
+
"emoji": ":blueheart:",
|
| 258 |
+
"count": 20
|
| 259 |
+
}
|
| 260 |
+
],
|
| 261 |
+
"replies": 0
|
| 262 |
+
},
|
| 263 |
+
{
|
| 264 |
+
"id":16,
|
| 265 |
+
"person": "Naeem",
|
| 266 |
+
"datetime": "2023-06-20 4:58 PM",
|
| 267 |
+
"message": "Happy Father's day to all you _Builder Dads out there!",
|
| 268 |
+
"reactions": [
|
| 269 |
+
{
|
| 270 |
+
"emoji": ":+1:",
|
| 271 |
+
"count": 6
|
| 272 |
+
},
|
| 273 |
+
{
|
| 274 |
+
"emoji": ":man:",
|
| 275 |
+
"count": 2
|
| 276 |
+
},
|
| 277 |
+
{
|
| 278 |
+
"emoji": ":build_heart:",
|
| 279 |
+
"count": 4
|
| 280 |
+
},
|
| 281 |
+
{
|
| 282 |
+
"emoji": ":salute:",
|
| 283 |
+
"count": 1
|
| 284 |
+
}
|
| 285 |
+
],
|
| 286 |
+
"replies": 0
|
| 287 |
+
},
|
| 288 |
+
{
|
| 289 |
+
"id":17,
|
| 290 |
+
"person": "Michelle Francisco",
|
| 291 |
+
"datetime": "9:44 AM",
|
| 292 |
+
"message": "Anyone had any cool gifts/activities for Father’s Day?",
|
| 293 |
+
"reactions": [
|
| 294 |
+
{
|
| 295 |
+
"emoji": ":+1:",
|
| 296 |
+
"count": 1
|
| 297 |
+
}
|
| 298 |
+
],
|
| 299 |
+
"replies": 0
|
| 300 |
+
},
|
| 301 |
+
{
|
| 302 |
+
"id":18,
|
| 303 |
+
"person": "Michelle Francisco",
|
| 304 |
+
"datetime": "2023-07-11 11:12 AM",
|
| 305 |
+
"message": "National Cow Appreciation Day - @julie.lowe how are the cows? :slightly_smiling_face: :cow:",
|
| 306 |
+
"reactions": [
|
| 307 |
+
{
|
| 308 |
+
"emoji": ":cow2:",
|
| 309 |
+
"count": 6
|
| 310 |
+
}
|
| 311 |
+
],
|
| 312 |
+
"replies":7
|
| 313 |
+
},
|
| 314 |
+
{
|
| 315 |
+
"id":19,
|
| 316 |
+
"person": "richard.hand",
|
| 317 |
+
"datetime": "2023-06-20 9:45 AM",
|
| 318 |
+
"message": "I applied sunscreen poorly and have stripes of sunburn....",
|
| 319 |
+
"reactions": [
|
| 320 |
+
{
|
| 321 |
+
"emoji": ":sad-dog-2:",
|
| 322 |
+
"count": 2
|
| 323 |
+
},
|
| 324 |
+
{
|
| 325 |
+
"emoji": ":mario_sun:",
|
| 326 |
+
"count": 3
|
| 327 |
+
},
|
| 328 |
+
{
|
| 329 |
+
"emoji": ":rolling_on_the_floor_laughing:",
|
| 330 |
+
"count": 5
|
| 331 |
+
}
|
| 332 |
+
],
|
| 333 |
+
"replies":0
|
| 334 |
+
},
|
| 335 |
+
{
|
| 336 |
+
"id":20,
|
| 337 |
+
"person": "Mrinalini Shekhawat",
|
| 338 |
+
"datetime": "2023-06-20 9:46 AM",
|
| 339 |
+
"message": "My 3 year old daughter went to GAP and selected a flower print shirt for my husband - Nishank (I have never seen him wear flower print, till yesterday). She also bought candy 'to share'.",
|
| 340 |
+
"reactions": [
|
| 341 |
+
{
|
| 342 |
+
"emoji": ":grinning:",
|
| 343 |
+
"count": 7
|
| 344 |
+
},
|
| 345 |
+
{
|
| 346 |
+
"emoji": ":+1:",
|
| 347 |
+
"count": 1
|
| 348 |
+
},
|
| 349 |
+
{
|
| 350 |
+
"emoji": ":heart:",
|
| 351 |
+
"count": 12
|
| 352 |
+
},
|
| 353 |
+
{
|
| 354 |
+
"emoji": ":flower:",
|
| 355 |
+
"count": 2
|
| 356 |
+
}
|
| 357 |
+
],
|
| 358 |
+
"replies":0
|
| 359 |
+
},
|
| 360 |
+
{
|
| 361 |
+
"id":21,
|
| 362 |
+
"person": "Ahmad Shareef",
|
| 363 |
+
"datetime": "2023-06-20 10:20 AM",
|
| 364 |
+
"message": "@channel Who's going in on Wednesday!? For lunch, We will be having lunch from Bellagreen. If want lunch please drop a :lunch-bag: by EOD today. This will help me determine how much to order! Thank you:build_heart: Options Below , comes with chips and fresh fruit...",
|
| 365 |
+
"reactions": [
|
| 366 |
+
{
|
| 367 |
+
"emoji": ":lunch-bag:",
|
| 368 |
+
"count": 38
|
| 369 |
+
},
|
| 370 |
+
{
|
| 371 |
+
"emoji": ":sob:",
|
| 372 |
+
"count": 1
|
| 373 |
+
}
|
| 374 |
+
],
|
| 375 |
+
"replies":0
|
| 376 |
+
},
|
| 377 |
+
{
|
| 378 |
+
"id":22,
|
| 379 |
+
"person": "Stanley Lee Bertrand",
|
| 380 |
+
"datetime": "2023-06-20 10:29 AM",
|
| 381 |
+
"message": "Hey, what do we do if B.R.A.D. kicks back and error? @Ethan Bowen @Doug Bowen",
|
| 382 |
+
"replies":0,
|
| 383 |
+
"reactions": [
|
| 384 |
+
{
|
| 385 |
+
"emoji": ":parking:",
|
| 386 |
+
"count": 1
|
| 387 |
+
}]
|
| 388 |
+
},
|
| 389 |
+
{
|
| 390 |
+
"id":23,
|
| 391 |
+
"person": "John Flaherty",
|
| 392 |
+
"datetime": "2023-06-20 11:16 AM",
|
| 393 |
+
"message": "@channel Also happening on Wednesday is the Woodside Build Center Tour beginning at 9am. I would like to have as many Builders in the office as possible. Please make every effort to be on-site. Thank you.",
|
| 394 |
+
"reactions": [
|
| 395 |
+
{
|
| 396 |
+
"emoji": ":+1:",
|
| 397 |
+
"count": 13
|
| 398 |
+
},
|
| 399 |
+
{
|
| 400 |
+
"emoji": ":hack4socialgood:",
|
| 401 |
+
"count": 7
|
| 402 |
+
}
|
| 403 |
+
]
|
| 404 |
+
},
|
| 405 |
+
{
|
| 406 |
+
"id":24,
|
| 407 |
+
"person": "Michelle Francisco",
|
| 408 |
+
"datetime": "2023-06-20 11:34 AM",
|
| 409 |
+
"message": "BuildersAssemblesmaller.png",
|
| 410 |
+
"reactions": [
|
| 411 |
+
{
|
| 412 |
+
"emoji": ":hero:",
|
| 413 |
+
"count": 3
|
| 414 |
+
}
|
| 415 |
+
],
|
| 416 |
+
"replies":0
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"id":25,
|
| 420 |
+
"person": "Jordan Lene",
|
| 421 |
+
"datetime": "2023-06-20 12:31 PM",
|
| 422 |
+
"message": "., .,.;’/bcv=hc=bgx[pL;IKQWSDFGHNM,////",
|
| 423 |
+
"reactions": [
|
| 424 |
+
{
|
| 425 |
+
"emoji": ":cat:",
|
| 426 |
+
"count": 3
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"emoji": ":baby:",
|
| 430 |
+
"count": 8
|
| 431 |
+
},
|
| 432 |
+
{
|
| 433 |
+
"emoji": ":cute_tears:",
|
| 434 |
+
"count": 1
|
| 435 |
+
},
|
| 436 |
+
{
|
| 437 |
+
"emoji": ":build_heart:",
|
| 438 |
+
"count": 1
|
| 439 |
+
}
|
| 440 |
+
],
|
| 441 |
+
"replies":0
|
| 442 |
+
},
|
| 443 |
+
{
|
| 444 |
+
"id":26,
|
| 445 |
+
"person": "richard.hand",
|
| 446 |
+
"datetime": "2023-06-20 1:49 PM",
|
| 447 |
+
"message": "how to tell someone sitting behind you chewing ice from a solo cup that it is really on your nerves? - asking for a friend",
|
| 448 |
+
"replies":0
|
| 449 |
+
},
|
| 450 |
+
{
|
| 451 |
+
"id":27,
|
| 452 |
+
"person": "Michelle Francisco",
|
| 453 |
+
"datetime": "2023-07-13 5:23PM",
|
| 454 |
+
"message": "@Doug Bowen what's wrong with the J.O.H.N.?",
|
| 455 |
+
"reactions": [
|
| 456 |
+
{
|
| 457 |
+
"emoji": ":disgruntled-doug:",
|
| 458 |
+
"count": 2
|
| 459 |
+
}
|
| 460 |
+
],
|
| 461 |
+
"replies": 6
|
| 462 |
+
},
|
| 463 |
+
{
|
| 464 |
+
"id":28,
|
| 465 |
+
"person": "Jason Riley",
|
| 466 |
+
"datetime": "2023-07-06 8:38AM",
|
| 467 |
+
"message": "Please wish @Christy Nolan a happy 2 year Slalomversary!",
|
| 468 |
+
"reactions": [
|
| 469 |
+
{
|
| 470 |
+
"emoji": ":celebrate-inclusive:",
|
| 471 |
+
"count": 6
|
| 472 |
+
},
|
| 473 |
+
{
|
| 474 |
+
"emoji": ":tada:",
|
| 475 |
+
"count": 1
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"emoji": ":2-two:",
|
| 479 |
+
"count": 1
|
| 480 |
+
}
|
| 481 |
+
],
|
| 482 |
+
"replies": 13
|
| 483 |
+
},
|
| 484 |
+
{
|
| 485 |
+
"id":29,
|
| 486 |
+
"person": "Alexa De La Garza",
|
| 487 |
+
"datetime": "2023-07-06 8:50AM",
|
| 488 |
+
"message": "@here Good morning everyone! We are having our CCC today in the rice room from 9:00-10:00am!",
|
| 489 |
+
"reactions": [
|
| 490 |
+
{
|
| 491 |
+
"emoji": ":clapping-inclusive:",
|
| 492 |
+
"count": 3
|
| 493 |
+
},
|
| 494 |
+
{
|
| 495 |
+
"emoji": ":coffee:",
|
| 496 |
+
"count": 4
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"emoji": ":bean:",
|
| 500 |
+
"count": 3
|
| 501 |
+
}
|
| 502 |
+
],
|
| 503 |
+
"replies": 0
|
| 504 |
+
},
|
| 505 |
+
{
|
| 506 |
+
"id":30,
|
| 507 |
+
"person": "Richard Hand",
|
| 508 |
+
"datetime": "2023-07-06 9:05AM",
|
| 509 |
+
"message": "Is anyone else getting signed out of their sessions from one day to the next? My Chrome tab that had a sharepoint open, logged me out, my Salesforce link, logged out... Anyone else?",
|
| 510 |
+
"reactions": [
|
| 511 |
+
{
|
| 512 |
+
"emoji": ":sad-face:",
|
| 513 |
+
"count": 1
|
| 514 |
+
}],
|
| 515 |
+
"replies": 0
|
| 516 |
+
},
|
| 517 |
+
{
|
| 518 |
+
"id":31,
|
| 519 |
+
"person": "Michelle Francisco",
|
| 520 |
+
"datetime": "2023-07-06 9:07AM",
|
| 521 |
+
"message": "I am not @Richard Hand",
|
| 522 |
+
"reactions": [
|
| 523 |
+
{
|
| 524 |
+
"emoji": ":build_heart:",
|
| 525 |
+
"count": 1
|
| 526 |
+
}],
|
| 527 |
+
"replies": 0
|
| 528 |
+
},
|
| 529 |
+
{
|
| 530 |
+
"id":32,
|
| 531 |
+
"person": "Inez Escandon",
|
| 532 |
+
"datetime": "2023-07-06 10:18PM",
|
| 533 |
+
"message": "UPDATE: They've been found! Thank you @Alexa De La Garza and @Josh Mascorro :meow_heart: If anyone sees/saw the wine bottles I won from the auction for Target Hunger can you please put them by Melanie’s desk :melting_face: I think I left them by Rice where we were having karaoke or maybe even by the elevators.",
|
| 534 |
+
"reactions": [
|
| 535 |
+
{
|
| 536 |
+
"emoji": ":wine:",
|
| 537 |
+
"count": 1
|
| 538 |
+
}],
|
| 539 |
+
"replies": 0
|
| 540 |
+
},
|
| 541 |
+
{
|
| 542 |
+
"id":33,
|
| 543 |
+
"person": "Ahmad Shareef",
|
| 544 |
+
"datetime": "2023-07-07 12:07 PM",
|
| 545 |
+
"message": "@here :alert-blue:calling all bakers!! Want to show off your skills & take on a challenge to be titled the best baker in the Houston Build Center?? Then enter The Great Build Bake Off!! :chefkiss::blob-birthdaycake::first_place_medal::blobwhee: We are doing Cakes this round:blob-birthdaycake:! Sign up HERE & bring your best slices on Wednesday, June 14th. More deets below :point_down: Please be sure to pre-cut the cake into bite-size, before the judging There will be a People’s Choice and Judges’ Choice as winners You do not need to be present during the judging time to enter. Bakeoff (2).png",
|
| 546 |
+
"reactions": [
|
| 547 |
+
{
|
| 548 |
+
"emoji": ":cake-cowboy:",
|
| 549 |
+
"count": 3
|
| 550 |
+
},
|
| 551 |
+
{
|
| 552 |
+
"emoji": ":blob-birthdaycake:",
|
| 553 |
+
"count": 2
|
| 554 |
+
}
|
| 555 |
+
],
|
| 556 |
+
"replies": 0
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"id":34,
|
| 560 |
+
"person": "Alexa De La Garza",
|
| 561 |
+
"datetime": "2023-07-07 2:25 PM",
|
| 562 |
+
"message": "@here Hello folks! B.R.A.D is working again if anyone in the office needs parking validation :brad-badge::blue_car:",
|
| 563 |
+
"reactions": [
|
| 564 |
+
{
|
| 565 |
+
"emoji": ":brad-bot:",
|
| 566 |
+
"count": 8
|
| 567 |
+
},
|
| 568 |
+
{
|
| 569 |
+
"emoji": ":hack4socialgood:",
|
| 570 |
+
"count": 1
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"emoji": ":brad-badge:",
|
| 574 |
+
"count": 3
|
| 575 |
+
}
|
| 576 |
+
],
|
| 577 |
+
"replies": 0
|
| 578 |
+
},
|
| 579 |
+
{
|
| 580 |
+
"id":35,
|
| 581 |
+
"person": "jmoney",
|
| 582 |
+
"datetime": "2023-07-07 5:39 PM",
|
| 583 |
+
"message": "Severe T storms just hit Northside. High winds, torrential downpour, and the traditional ceremonial power outage.",
|
| 584 |
+
"reactions": [
|
| 585 |
+
{
|
| 586 |
+
"emoji": ":open_mouth:",
|
| 587 |
+
"count": 1
|
| 588 |
+
},
|
| 589 |
+
{
|
| 590 |
+
"emoji": ":yes2:",
|
| 591 |
+
"count": 1
|
| 592 |
+
}
|
| 593 |
+
],
|
| 594 |
+
"replies": 1
|
| 595 |
+
},
|
| 596 |
+
{
|
| 597 |
+
"id":36,
|
| 598 |
+
"person": "Doug Bowen",
|
| 599 |
+
"datetime": "2023-07-07 5:50 PM",
|
| 600 |
+
"message": "Be safe!",
|
| 601 |
+
"reactions": [
|
| 602 |
+
{
|
| 603 |
+
"emoji": ":build:",
|
| 604 |
+
"count": 1
|
| 605 |
+
}],
|
| 606 |
+
"replies": 0
|
| 607 |
+
},
|
| 608 |
+
{
|
| 609 |
+
"id":37,
|
| 610 |
+
"person": "jmoney",
|
| 611 |
+
"datetime": "2023-07-07 6:59 PM",
|
| 612 |
+
"message": "I call this \"lights-out grilled chicken nachos\"",
|
| 613 |
+
"reactions": [
|
| 614 |
+
{
|
| 615 |
+
"emoji": ":blueheart:",
|
| 616 |
+
"count": 7
|
| 617 |
+
},
|
| 618 |
+
{
|
| 619 |
+
"emoji": ":excuse-me-aless:",
|
| 620 |
+
"count": 3
|
| 621 |
+
},
|
| 622 |
+
{
|
| 623 |
+
"emoji": ":+1:",
|
| 624 |
+
"count": 2
|
| 625 |
+
},
|
| 626 |
+
{
|
| 627 |
+
"emoji": ":power-outage:",
|
| 628 |
+
"count": 1
|
| 629 |
+
}
|
| 630 |
+
],
|
| 631 |
+
"replies": 0
|
| 632 |
+
},
|
| 633 |
+
{
|
| 634 |
+
"id":38,
|
| 635 |
+
"person": "Ahmad Shareef",
|
| 636 |
+
"datetime": "2023-07-10 11:18 AM",
|
| 637 |
+
"message": "@here Who's going in on Wednesday!? We will be having Tacos from Velvet Taco. If want lunch please drop a :taco: by EOD today:alert0:. This will help me determine how much to order! Thank you :build_heart: Buffalo Chicken - crisp tenders, house buffalo sauce, danish bleu cheese, ranch crema, carrots, micro celery, flour tortilla Picnic chicken - rotisserie chicken, avocado crema, warm honey-dijon potato salad, crispy chicken skin, cilantro, flour tortilla Mediterranean mushroom - grilled portobello mushrooms, french fries, cucumber, grilled heirloom tomatoes, dill, flour tortilla - Vegan Grilled salmon - napa slaw, citrus lime crema, pickled fresnos, roasted corn pico, avocado crema, micro cilantro, corn tortilla Side: Elote & chips- queso listo, Valentina, citrus lime crema, queso fresco, lime (edited)",
|
| 638 |
+
"reactions": [
|
| 639 |
+
{
|
| 640 |
+
"emoji": ":taco:",
|
| 641 |
+
"count": 42
|
| 642 |
+
},
|
| 643 |
+
{
|
| 644 |
+
"emoji": ":drooling_face:",
|
| 645 |
+
"count": 1
|
| 646 |
+
}
|
| 647 |
+
],
|
| 648 |
+
"replies": 6
|
| 649 |
+
},
|
| 650 |
+
{
|
| 651 |
+
"id":39,
|
| 652 |
+
"person": "Ahmad Shareef",
|
| 653 |
+
"datetime": "2023-07-10 11:24 AM",
|
| 654 |
+
"message": "@here :ai:Hey HOU Build the second Hackathon Subject Matter Expert Series hosted by Carrick Carpenter, Miles Erickson and Etienne Ohl is this Wednesday, June 7th at 10:30am PT. Learn how to cruise quicker and securely with Generative AI! Check out the Hackathon events page.",
|
| 655 |
+
"replies": 0,
|
| 656 |
+
"reactions": [
|
| 657 |
+
{
|
| 658 |
+
"emoji": ":build_heart:",
|
| 659 |
+
"count": 2
|
| 660 |
+
},
|
| 661 |
+
{
|
| 662 |
+
"emoji": ":+1:",
|
| 663 |
+
"count": 2
|
| 664 |
+
}
|
| 665 |
+
]
|
| 666 |
+
},
|
| 667 |
+
{
|
| 668 |
+
"id":40,
|
| 669 |
+
"person": "Robert Hailey",
|
| 670 |
+
"datetime": "2023-07-10 11:38 AM",
|
| 671 |
+
"message": "My notebook indicates there was a lunch-and-learn on robert's rules of order today, but I don't see it on the calendar. Was it cancelled/rescheduled? I don't even see the invite in my email. (edited)",
|
| 672 |
+
"reactions": [
|
| 673 |
+
{
|
| 674 |
+
"emoji": ":question:",
|
| 675 |
+
"count": 1
|
| 676 |
+
}],
|
| 677 |
+
"replies": 2
|
| 678 |
+
},
|
| 679 |
+
{
|
| 680 |
+
"id":41,
|
| 681 |
+
"person": "Linh Ta",
|
| 682 |
+
"datetime": "2023-07-10 11:49 AM",
|
| 683 |
+
"message": "Also happening tomorrow~ Wednesday June 7th at 5pm sharp is BUILD KARAOKE NIGHT!!!! :celebrate::micdrop-boom::dancefloor: @here",
|
| 684 |
+
"reactions": [
|
| 685 |
+
{
|
| 686 |
+
"emoji": ":celebrate-inclusive:",
|
| 687 |
+
"count": 5
|
| 688 |
+
},
|
| 689 |
+
{
|
| 690 |
+
"emoji": ":microphone:",
|
| 691 |
+
"count": 4
|
| 692 |
+
},
|
| 693 |
+
{
|
| 694 |
+
"emoji": ":dancefloor:",
|
| 695 |
+
"count": 1
|
| 696 |
+
}
|
| 697 |
+
],
|
| 698 |
+
"replies": 5
|
| 699 |
+
},
|
| 700 |
+
{
|
| 701 |
+
"id":42,
|
| 702 |
+
"person": "jmoney",
|
| 703 |
+
"datetime": "2023-07-10 9:59 PM",
|
| 704 |
+
"message": "I'll miss WFWW with a cough and a fever :face_with_thermometer:",
|
| 705 |
+
"reactions": [
|
| 706 |
+
{
|
| 707 |
+
"emoji": ":get-well-soon:",
|
| 708 |
+
"count": 3
|
| 709 |
+
}
|
| 710 |
+
],
|
| 711 |
+
"replies": 0
|
| 712 |
+
},
|
| 713 |
+
{
|
| 714 |
+
"id":43,
|
| 715 |
+
"person": "Steven Murray",
|
| 716 |
+
"datetime": "2023-07-10 6:16 AM",
|
| 717 |
+
"message": "BRAD is down this morning.",
|
| 718 |
+
"reactions": [
|
| 719 |
+
{
|
| 720 |
+
"emoji": ":disappointed_relieved:",
|
| 721 |
+
"count": 1
|
| 722 |
+
}
|
| 723 |
+
],
|
| 724 |
+
"replies": 6
|
| 725 |
+
},
|
| 726 |
+
{
|
| 727 |
+
"id":44,
|
| 728 |
+
"person": "Melanie Halbert",
|
| 729 |
+
"datetime": "2023-07-11 8:43 AM",
|
| 730 |
+
"message": "Hey @channel, oddly specific request: If you’re an artistic human who plays Pokémon Go, please come find me when you have a little spare time. I’ve got a fun project for you.",
|
| 731 |
+
"reactions": [
|
| 732 |
+
{
|
| 733 |
+
"emoji": ":pokeball:",
|
| 734 |
+
"count": 5
|
| 735 |
+
}
|
| 736 |
+
],
|
| 737 |
+
"replies": 3
|
| 738 |
+
},
|
| 739 |
+
{
|
| 740 |
+
"id":46,
|
| 741 |
+
"person": "Jane",
|
| 742 |
+
"datetime": "2023-07-11 9:52 AM",
|
| 743 |
+
"message": "replied to a thread: #greenshirts #nomemoneeded Well, we just had to! IMG_8782.JPG.jpg",
|
| 744 |
+
"reactions": [
|
| 745 |
+
{
|
| 746 |
+
"emoji": ":yes-flash:",
|
| 747 |
+
"count": 4
|
| 748 |
+
},
|
| 749 |
+
{
|
| 750 |
+
"emoji": ":pants:",
|
| 751 |
+
"count": 6
|
| 752 |
+
}
|
| 753 |
+
],
|
| 754 |
+
"replies": 0
|
| 755 |
+
},
|
| 756 |
+
{
|
| 757 |
+
"id":47,
|
| 758 |
+
"person": "Doug Bowen",
|
| 759 |
+
"datetime": "2023-07-11 9:54 AM",
|
| 760 |
+
"message": "All thats left is shoes!!",
|
| 761 |
+
"reactions": [
|
| 762 |
+
{
|
| 763 |
+
"emoji": ":build:",
|
| 764 |
+
"count": 1
|
| 765 |
+
}],
|
| 766 |
+
"replies": 0
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"id":48,
|
| 770 |
+
"person": "DataNinja",
|
| 771 |
+
"datetime": "2023-07-11 10:00 AM",
|
| 772 |
+
"message": "Let’s see who is up to the challenge @Doug Bowen",
|
| 773 |
+
"reactions": [
|
| 774 |
+
{
|
| 775 |
+
"emoji": ":build:",
|
| 776 |
+
"count": 1
|
| 777 |
+
}],
|
| 778 |
+
"replies": 0
|
| 779 |
+
},
|
| 780 |
+
{
|
| 781 |
+
"id":49,
|
| 782 |
+
"person": "Doug Bowen",
|
| 783 |
+
"datetime": "2023-07-11 10:12 AM",
|
| 784 |
+
"message": "Just FYI, our arcade machine (JOHN) is open for business! Let me know if you have any requests, concerns, or suggestions. For those asking, we have a digital marquee coming in the next few weeks and we'll be vinyl wrapping the cabinet closer to August (when our UX designer returns from leave) Have fun!",
|
| 785 |
+
"reactions": [
|
| 786 |
+
{
|
| 787 |
+
"emoji": ":build_heart:",
|
| 788 |
+
"count": 17
|
| 789 |
+
},
|
| 790 |
+
{
|
| 791 |
+
"emoji": ":hack4socialgood:",
|
| 792 |
+
"count": 9
|
| 793 |
+
},
|
| 794 |
+
{
|
| 795 |
+
"emoji": ":mario3:",
|
| 796 |
+
"count": 8
|
| 797 |
+
},
|
| 798 |
+
{
|
| 799 |
+
"emoji": ":arcade:",
|
| 800 |
+
"count": 5
|
| 801 |
+
},
|
| 802 |
+
{
|
| 803 |
+
"emoji": ":pacman:",
|
| 804 |
+
"count": 5
|
| 805 |
+
},
|
| 806 |
+
{
|
| 807 |
+
"emoji": ":nice_neon:",
|
| 808 |
+
"count": 3
|
| 809 |
+
}
|
| 810 |
+
],
|
| 811 |
+
"replies": 0
|
| 812 |
+
},
|
| 813 |
+
{
|
| 814 |
+
"id":50,
|
| 815 |
+
"person": "Ahmad Shareef",
|
| 816 |
+
"datetime": "2023-07-17 8:51 AM",
|
| 817 |
+
"message": "@here Hope everyone had a restful 3-day weekend! Who's going in tomorrow!? We will be having Bowls from Genghis Grill. If want lunch please drop a :dumpling: by EOD today:alert0:. This will help me determine how much to order! Thank you :build_heart: Menu: Tofu 4 U Bowl - Tofu with dragon salt, yellow onions, broccoli, roasted bell peppers, roasted sesame garlic sauce, and white rice. Topped with toasted sesame seeds and green onions. Teriyaki Chicken - Chicken, broccoli, green onion, and pineapple in a sweet soy-ginger teriyaki sauce served with white rice. Topped with crunchy chow mein. Bangkok Bowl - Chicken, crushed red pepper, ginger, yellow & green onions, sugar snap peas, red bell peppers, carrots, and Udon noodles with a savory sauce. Topped with toasted sesame seeds and green onions. Supreme Fried Rice Bowl - Steak, chicken, and shrimp with fried rice (w/ yellow & green onions, red bell peppers, carrots, & egg).",
|
| 818 |
+
"reactions": [
|
| 819 |
+
{
|
| 820 |
+
"emoji": ":dumpling:",
|
| 821 |
+
"count": 34
|
| 822 |
+
},
|
| 823 |
+
{
|
| 824 |
+
"emoji": ":hearts:",
|
| 825 |
+
"count": 2
|
| 826 |
+
}
|
| 827 |
+
],
|
| 828 |
+
"replies": 12
|
| 829 |
+
},
|
| 830 |
+
{
|
| 831 |
+
"id":51,
|
| 832 |
+
"person": "Phillip Nguyen",
|
| 833 |
+
"datetime": "2023-07-12 8:53 AM",
|
| 834 |
+
"message": "I’ll take a Bangkok bowl!",
|
| 835 |
+
"reactions": [
|
| 836 |
+
{
|
| 837 |
+
"emoji": ":bowl:",
|
| 838 |
+
"count": 1
|
| 839 |
+
}
|
| 840 |
+
],
|
| 841 |
+
"replies": 0
|
| 842 |
+
},
|
| 843 |
+
{
|
| 844 |
+
"id":52,
|
| 845 |
+
"person": "Blake Bryce",
|
| 846 |
+
"datetime": "2023-07-12 9:02 AM",
|
| 847 |
+
"message": "Happy 6 year anniversary to the formation of Houston :_b: QE :celebrate-all: @Logan Le @Blake Bryce @King Khan",
|
| 848 |
+
"reactions": [
|
| 849 |
+
{
|
| 850 |
+
"emoji": ":clapping-inclusive:",
|
| 851 |
+
"count": 19
|
| 852 |
+
},
|
| 853 |
+
{
|
| 854 |
+
"emoji": ":_build_qe:",
|
| 855 |
+
"count": 11
|
| 856 |
+
},
|
| 857 |
+
{
|
| 858 |
+
"emoji": ":blake:",
|
| 859 |
+
"count": 5
|
| 860 |
+
},
|
| 861 |
+
{
|
| 862 |
+
"emoji": ":loganle:",
|
| 863 |
+
"count": 5
|
| 864 |
+
},
|
| 865 |
+
{
|
| 866 |
+
"emoji": ":salman:",
|
| 867 |
+
"count": 5
|
| 868 |
+
},
|
| 869 |
+
{
|
| 870 |
+
"emoji": ":build4:",
|
| 871 |
+
"count": 2
|
| 872 |
+
}
|
| 873 |
+
],
|
| 874 |
+
"replies": 0
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"id":53,
|
| 878 |
+
"person": "Michelle Francisco",
|
| 879 |
+
"datetime": "2023-07-12 10:28 AM",
|
| 880 |
+
"message": "Hey hey hey Houston! Hope you all had a relaxing and enjoyable 3-day weekend. Partners 4 Good will be building Worthy Bags Friday June 2 from 12-1pm 12:30-1:30pm. If you are interested in helping, reply here and I’ll forward you the invite. Also, feel free to just stop by and help out. Hope to see you Friday! (edited)",
|
| 881 |
+
"reactions": [
|
| 882 |
+
{
|
| 883 |
+
"emoji": ":heart:",
|
| 884 |
+
"count": 3
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"emoji": ":build_heart:",
|
| 888 |
+
"count": 1
|
| 889 |
+
}
|
| 890 |
+
],
|
| 891 |
+
"replies": 2
|
| 892 |
+
},
|
| 893 |
+
{
|
| 894 |
+
"id":54,
|
| 895 |
+
"person": "Ahmad Shareef",
|
| 896 |
+
"datetime": "2023-07-12 11:16 AM",
|
| 897 |
+
"message": "@here a quick note, the first session of the Hackathon Subject Matter Expert Series with Bethany Mudd and Chris Samuels is tomorrow, May 31st at 10:30am PT. Learn how to reimagine the art of the possible with Generative AI:ai:. You can join by using the add to calendar function from the Hackathon events page.",
|
| 898 |
+
"replies": 0,
|
| 899 |
+
"reactions": [
|
| 900 |
+
{
|
| 901 |
+
"emoji": ":build_heart:",
|
| 902 |
+
"count": 5
|
| 903 |
+
}]
|
| 904 |
+
},
|
| 905 |
+
{
|
| 906 |
+
"id":55,
|
| 907 |
+
"person": "Ahmad Shareef",
|
| 908 |
+
"datetime": "2023-07-12 11:54 AM",
|
| 909 |
+
"message": "@here Hey everyone! If you are currently at the Slalom office and drive a white Mercedes SUV (license plate OKPAKO), please move it immediately as it is parked in a reserved spot on Level 3 and will be towed if not moved by 1pm. giphy (4).gif",
|
| 910 |
+
"replies": 0,
|
| 911 |
+
"reactions": [
|
| 912 |
+
{
|
| 913 |
+
"emoji": ":no_mouth:",
|
| 914 |
+
"count": 1
|
| 915 |
+
}
|
| 916 |
+
]
|
| 917 |
+
},
|
| 918 |
+
{
|
| 919 |
+
"id":56,
|
| 920 |
+
"person": "derreck.stellpflug",
|
| 921 |
+
"datetime": "2023-07-12 12:07 PM",
|
| 922 |
+
"message": ":alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0: :derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0: :alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0: I'M BACK :terminator: :derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0: :alert0::derreck_5_aws::alert0: :derreck_5_aws::ampersand: Can happily :happy-fox: :speaking_head_in_silhouette: Reeeport :bangbang: :alert0: :derreck_5_aws::alert0::derreck_5_aws::alert0: :alert0::derreck_5_aws: That the wrong :sadblob: has FINALLY been righted :face_exhaling: :derreck_5_aws::alert0::derreck_5_aws::alert0: :alert0::derreck_5_aws: I'VE RECEIVED :mailbox: MY SPECIALICZAR MEDALION :promptitude: :derreck_5_aws::alert0: :alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0: :derreck_5_aws::alert0::derreck_5_aws::alert0::derreck_5_aws::alert0: IMG_3492.heic",
|
| 923 |
+
"reactions": [
|
| 924 |
+
{
|
| 925 |
+
"emoji": ":hack4socialgood:",
|
| 926 |
+
"count": 9
|
| 927 |
+
},
|
| 928 |
+
{
|
| 929 |
+
"emoji": ":star2:",
|
| 930 |
+
"count": 8
|
| 931 |
+
},
|
| 932 |
+
{
|
| 933 |
+
"emoji": ":whoa-keanu:",
|
| 934 |
+
"count": 5
|
| 935 |
+
},
|
| 936 |
+
{
|
| 937 |
+
"emoji": ":firey-fire:",
|
| 938 |
+
"count": 9
|
| 939 |
+
},
|
| 940 |
+
{
|
| 941 |
+
"emoji": ":celebrate:",
|
| 942 |
+
"count": 5
|
| 943 |
+
},
|
| 944 |
+
{
|
| 945 |
+
"emoji": ":aws:",
|
| 946 |
+
"count": 6
|
| 947 |
+
},
|
| 948 |
+
{
|
| 949 |
+
"emoji": ":rainbow:",
|
| 950 |
+
"count": 2
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"emoji": ":joy:",
|
| 954 |
+
"count": 3
|
| 955 |
+
},
|
| 956 |
+
{
|
| 957 |
+
"emoji": ":tada:",
|
| 958 |
+
"count": 2
|
| 959 |
+
},
|
| 960 |
+
{
|
| 961 |
+
"emoji": ":raised_hands:",
|
| 962 |
+
"count": 2
|
| 963 |
+
},
|
| 964 |
+
{
|
| 965 |
+
"emoji": ":100:",
|
| 966 |
+
"count": 1
|
| 967 |
+
},
|
| 968 |
+
{
|
| 969 |
+
"emoji": ":derreck:",
|
| 970 |
+
"count": 6
|
| 971 |
+
},
|
| 972 |
+
{
|
| 973 |
+
"emoji": ":alert-blue:",
|
| 974 |
+
"count": 2
|
| 975 |
+
},
|
| 976 |
+
{
|
| 977 |
+
"emoji": ":sparkles:",
|
| 978 |
+
"count": 2
|
| 979 |
+
},
|
| 980 |
+
{
|
| 981 |
+
"emoji": ":heart:",
|
| 982 |
+
"count": 2
|
| 983 |
+
},
|
| 984 |
+
{
|
| 985 |
+
"emoji": ":build:",
|
| 986 |
+
"count": 2
|
| 987 |
+
},
|
| 988 |
+
{
|
| 989 |
+
"emoji": ":dumbfounded-doug:",
|
| 990 |
+
"count": 3
|
| 991 |
+
}
|
| 992 |
+
],
|
| 993 |
+
"replies": 0
|
| 994 |
+
},
|
| 995 |
+
{
|
| 996 |
+
"id":57,
|
| 997 |
+
"person": "Ethan Bowen",
|
| 998 |
+
"datetime": "2023-07-12 2:22 PM",
|
| 999 |
+
"message": "Hello fellow builders, :brad-badge: BRAD :brad-badge: will be down for the rest of the month as he undergoes an external rework and final physical build. Please ask the Ops team to validate your ticket in the mean time. Thanks everyone!",
|
| 1000 |
+
"replies": 1,
|
| 1001 |
+
"reactions": [
|
| 1002 |
+
{
|
| 1003 |
+
"emoji": ":build_heart:",
|
| 1004 |
+
"count": 1
|
| 1005 |
+
}
|
| 1006 |
+
]
|
| 1007 |
+
},
|
| 1008 |
+
{
|
| 1009 |
+
"id":58,
|
| 1010 |
+
"person": "Linh Ta",
|
| 1011 |
+
"datetime": "2023-07-12 3:35 PM",
|
| 1012 |
+
"message": "Hi there - a few of us are meeting at RA Sushi for an impromptu happy hour! :cheers::kawaii-sushi: Join us - it's BYOD (Buy Your Own Drink)! :blob-wink:",
|
| 1013 |
+
"replies": 9,
|
| 1014 |
+
"reactions": [
|
| 1015 |
+
{
|
| 1016 |
+
"emoji": ":blobwhee:",
|
| 1017 |
+
"count": 1
|
| 1018 |
+
},
|
| 1019 |
+
{
|
| 1020 |
+
"emoji": "+3",
|
| 1021 |
+
"count": 1
|
| 1022 |
+
}
|
| 1023 |
+
]
|
| 1024 |
+
},
|
| 1025 |
+
{
|
| 1026 |
+
"id":59,
|
| 1027 |
+
"person": "Jane",
|
| 1028 |
+
"datetime": "2023-07-13 9:52 AM",
|
| 1029 |
+
"message": "Tell me this isn’t relatable :joy: https://youtu.be/BKorP55Aqvg",
|
| 1030 |
+
"replies": 6,
|
| 1031 |
+
"reactions": [
|
| 1032 |
+
{
|
| 1033 |
+
"emoji": ":laughing:",
|
| 1034 |
+
"count": 3
|
| 1035 |
+
},
|
| 1036 |
+
{
|
| 1037 |
+
"emoji": ":yes2:",
|
| 1038 |
+
"count": 1
|
| 1039 |
+
}
|
| 1040 |
+
]
|
| 1041 |
+
},
|
| 1042 |
+
{
|
| 1043 |
+
"id":60,
|
| 1044 |
+
"person": "Stefano",
|
| 1045 |
+
"datetime": "2023-07-13 9:53 AM",
|
| 1046 |
+
"message": "replied to a thread: Tell me this isn’t relatable :joy:… A classic, alongside this one: https://www.youtube.com/watch?v=y8OnoxKotPQ",
|
| 1047 |
+
"replies": 0,
|
| 1048 |
+
"reactions": [
|
| 1049 |
+
{
|
| 1050 |
+
"emoji": ":mindblown:",
|
| 1051 |
+
"count": 2
|
| 1052 |
+
}
|
| 1053 |
+
]
|
| 1054 |
+
},
|
| 1055 |
+
{
|
| 1056 |
+
"id":61,
|
| 1057 |
+
"person": "John Flaherty",
|
| 1058 |
+
"datetime": "2023-07-13 10:24 AM",
|
| 1059 |
+
"message": "Happy 713 Day! image.png image.png",
|
| 1060 |
+
"replies": 0,
|
| 1061 |
+
"reactions": [
|
| 1062 |
+
{
|
| 1063 |
+
"emoji": ":seven:",
|
| 1064 |
+
"count": 15
|
| 1065 |
+
},
|
| 1066 |
+
{
|
| 1067 |
+
"emoji": ":one:",
|
| 1068 |
+
"count": 15
|
| 1069 |
+
},
|
| 1070 |
+
{
|
| 1071 |
+
"emoji": ":three:",
|
| 1072 |
+
"count": 15
|
| 1073 |
+
},
|
| 1074 |
+
{
|
| 1075 |
+
"emoji": ":+1:",
|
| 1076 |
+
"count": 1
|
| 1077 |
+
}
|
| 1078 |
+
]
|
| 1079 |
+
},
|
| 1080 |
+
{
|
| 1081 |
+
"id":62,
|
| 1082 |
+
"person": "Chase",
|
| 1083 |
+
"datetime": "2023-07-13 10:26 AM",
|
| 1084 |
+
"message": "HTOWN TIL WE DROWN",
|
| 1085 |
+
"replies": 1,
|
| 1086 |
+
"reactions": [
|
| 1087 |
+
{
|
| 1088 |
+
"emoji": ":rolling_on_the_floor_laughing:",
|
| 1089 |
+
"count": 9
|
| 1090 |
+
},
|
| 1091 |
+
{
|
| 1092 |
+
"emoji": ":100:",
|
| 1093 |
+
"count": 4
|
| 1094 |
+
},
|
| 1095 |
+
{
|
| 1096 |
+
"emoji": ":gold-star:",
|
| 1097 |
+
"count": 2
|
| 1098 |
+
},
|
| 1099 |
+
{
|
| 1100 |
+
"emoji": ":grimacing:",
|
| 1101 |
+
"count": 1
|
| 1102 |
+
}
|
| 1103 |
+
]
|
| 1104 |
+
},
|
| 1105 |
+
{
|
| 1106 |
+
"id":63,
|
| 1107 |
+
"person": "Chase",
|
| 1108 |
+
"datetime": "2023-07-13 10:36 AM",
|
| 1109 |
+
"message": "trill (896 kB) https://media4.giphy.com/media/x0vDHDAkAxS3S/giphy.gif?cid=6104955e484j64k7mgl4ober5tdsyqegtkuaok7gl1i14eta&ep=v1_gifs_translate&rid=giphy.gif&ct=g",
|
| 1110 |
+
"replies": 0,
|
| 1111 |
+
"reactions": [
|
| 1112 |
+
{
|
| 1113 |
+
"emoji": ":this:",
|
| 1114 |
+
"count": 3
|
| 1115 |
+
}
|
| 1116 |
+
]
|
| 1117 |
+
},
|
| 1118 |
+
{
|
| 1119 |
+
"id":64,
|
| 1120 |
+
"person": "Michelle Francisco",
|
| 1121 |
+
"datetime": "10:38 AM",
|
| 1122 |
+
"message": "Happy birthday @Ray Lopez! H-Town and Prime days are Ray’s Day. balloons.jpeg balloons.jpeg",
|
| 1123 |
+
"replies": 23,
|
| 1124 |
+
"reactions": [
|
| 1125 |
+
{
|
| 1126 |
+
"emoji": "balloon",
|
| 1127 |
+
"count": 1
|
| 1128 |
+
}
|
| 1129 |
+
]
|
| 1130 |
+
},
|
| 1131 |
+
{
|
| 1132 |
+
"id":65,
|
| 1133 |
+
"person": "Keri W",
|
| 1134 |
+
"datetime": "2023-07-13 3:14 PM",
|
| 1135 |
+
"message": "Hey Houston fam!:flamingo-dance: Love community theater? :performing_arts: Enjoy supporting local arts? Check out Theatre Southwest's Festival of Originals (FOO)! :tada: Theatre Southwest is a hidden gem :gem: just a hop, skip, and jump from the Build Center. In a single show, catch 5 short original works by different playwrights, each with a different director and cast. FOO runs weekends from July 28 to August 12 :spiral_calendar_pad: More info and tickets are available at the TSW website. Don't miss out!",
|
| 1136 |
+
"replies": 3,
|
| 1137 |
+
"reactions": [
|
| 1138 |
+
{
|
| 1139 |
+
"emoji": ":build_heart:",
|
| 1140 |
+
"count": 5
|
| 1141 |
+
},
|
| 1142 |
+
{
|
| 1143 |
+
"emoji": ":performing_arts:",
|
| 1144 |
+
"count": 3
|
| 1145 |
+
}
|
| 1146 |
+
]
|
| 1147 |
+
},
|
| 1148 |
+
{
|
| 1149 |
+
"id":66,
|
| 1150 |
+
"person": "Michelle Francisco",
|
| 1151 |
+
"datetime": "2023-07-13 4:04 PM",
|
| 1152 |
+
"message": "Next Friday - Bring Your Kids to Work Day Have your kiddos ever wondered what you do all day at work or wanted to see the office? Get ready for a fun time that will surely leave them wide-eyed with wonder and brimming with excitement! It’s time to mark your calendars for our. Kindly fill out the RSVP link here by July 14th. Here are some additional things to know: Kid Age Range 6 -16 Parents must be involved during this time frame (this is not a babysitting event) Have some fun!",
|
| 1153 |
+
"replies": 0,
|
| 1154 |
+
"reactions": [
|
| 1155 |
+
{
|
| 1156 |
+
"emoji": ":build_heart:",
|
| 1157 |
+
"count": 5
|
| 1158 |
+
}]
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"id":67,
|
| 1162 |
+
"person": "Doug Bowen",
|
| 1163 |
+
"datetime": "2023-07-11 10:12 AM",
|
| 1164 |
+
"message": "I love subway. I'm going to order 10 footlongs for the team. Please drop a :subway: if you want to join in. I'll be ordering at 11:30. Thanks",
|
| 1165 |
+
"reactions": [
|
| 1166 |
+
{
|
| 1167 |
+
"emoji": ":subway:",
|
| 1168 |
+
"count": 3
|
| 1169 |
+
}
|
| 1170 |
+
],
|
| 1171 |
+
"replies": 0
|
| 1172 |
+
},
|
| 1173 |
+
{
|
| 1174 |
+
"id":68,
|
| 1175 |
+
"person": "Srijaya Suresh",
|
| 1176 |
+
"datetime": "2023-07-11 10:12 AM",
|
| 1177 |
+
"message": "Is it time for Blake to take the Milk Challenge?!?",
|
| 1178 |
+
"reactions": [
|
| 1179 |
+
{
|
| 1180 |
+
"emoji": ":milk:",
|
| 1181 |
+
"count": 3
|
| 1182 |
+
}
|
| 1183 |
+
],
|
| 1184 |
+
"replies": 0
|
| 1185 |
+
},
|
| 1186 |
+
{
|
| 1187 |
+
"id":69,
|
| 1188 |
+
"person": "Srijaya Suresh",
|
| 1189 |
+
"datetime": "2023-07-14 10:12 AM",
|
| 1190 |
+
"message": "Hey Blake, Got milk?!?",
|
| 1191 |
+
"reactions": [
|
| 1192 |
+
{
|
| 1193 |
+
"emoji": ":milk:",
|
| 1194 |
+
"count": 3
|
| 1195 |
+
}
|
| 1196 |
+
],
|
| 1197 |
+
"replies": 0
|
| 1198 |
+
}, {
|
| 1199 |
+
"id":70,
|
| 1200 |
+
"person": "Michelle Francisco",
|
| 1201 |
+
"datetime": "2023-07-14 10:12 AM",
|
| 1202 |
+
"message": "Did someone say MILK? @BlakeBryce?!?",
|
| 1203 |
+
"reactions": [
|
| 1204 |
+
{
|
| 1205 |
+
"emoji": ":milk:",
|
| 1206 |
+
"count": 3
|
| 1207 |
+
}
|
| 1208 |
+
],
|
| 1209 |
+
"replies": 0
|
| 1210 |
+
},
|
| 1211 |
+
{
|
| 1212 |
+
"id":71,
|
| 1213 |
+
"person": "Blake Bryce",
|
| 1214 |
+
"datetime": "2023-07-14 10:12 AM",
|
| 1215 |
+
"message": "Never drank milk.",
|
| 1216 |
+
"reactions": [
|
| 1217 |
+
{
|
| 1218 |
+
"emoji": ":milk:",
|
| 1219 |
+
"count": 2
|
| 1220 |
+
}
|
| 1221 |
+
],
|
| 1222 |
+
"replies": 0
|
| 1223 |
+
},
|
| 1224 |
+
{
|
| 1225 |
+
"id":72,
|
| 1226 |
+
"person": "Kim Adams",
|
| 1227 |
+
"datetime": "2023-07-14 10:12 AM",
|
| 1228 |
+
"message": "Blake should drink milk.",
|
| 1229 |
+
"reactions": [
|
| 1230 |
+
{
|
| 1231 |
+
"emoji": ":milk:",
|
| 1232 |
+
"count": 2
|
| 1233 |
+
}
|
| 1234 |
+
],
|
| 1235 |
+
"replies": 0
|
| 1236 |
+
}
|
| 1237 |
+
]
|
slack_processing/data/themes.json
ADDED
|
@@ -0,0 +1,346 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"theme": "D&D Campaign",
|
| 4 |
+
"modifier": 0.0,
|
| 5 |
+
"message": "IMPORTANT ADDITION You do NOT need ANY experience or knowledge of D&D to join the one-shot campaign. R2 will walk you through everything you need to know. Don't be shy and join us! (edited)",
|
| 6 |
+
"person": "Keri W",
|
| 7 |
+
"postId": 2,
|
| 8 |
+
"themeSimilarity": 1.0
|
| 9 |
+
},
|
| 10 |
+
{
|
| 11 |
+
"theme": "Availability",
|
| 12 |
+
"modifier": 1.0,
|
| 13 |
+
"message": "After the summer then I will be more available.",
|
| 14 |
+
"person": "Brad Merrell",
|
| 15 |
+
"postId": 3,
|
| 16 |
+
"themeSimilarity": 1.0
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"theme": "Meeting",
|
| 20 |
+
"modifier": 0.0,
|
| 21 |
+
"message": "@here L&L starting in 5 mins. If you are in the office Feel free to come to RICE. AI Tutoring Paving the Way to Better Tomorrows in Education\nhttps//teams.microsoft.com/l/meetup-join/19%3ameeting_MTg2OWRkYzgtYTdmOS00NTk4LWE4MmQ[\u2026]2c%22Oid%22%3a%22bca811aa-1982-4f3b-b602-bca1a89180dc%22%7d",
|
| 22 |
+
"person": "Jay Patel",
|
| 23 |
+
"postId": 4,
|
| 24 |
+
"themeSimilarity": 1.0
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"theme": "Celebration",
|
| 28 |
+
"modifier": 10.0,
|
| 29 |
+
"message": "It's @Sam \u2019s 2 year Slalomversary. Sam it's been a pleasure to be on a team with you and thanks for everything you do at _build especially around the ERGs. Congratulations!",
|
| 30 |
+
"person": "Manik",
|
| 31 |
+
"postId": 5,
|
| 32 |
+
"themeSimilarity": 1.0
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"theme": "Celebration",
|
| 36 |
+
"modifier": 0.0,
|
| 37 |
+
"message": "Happy Slalomversary my dear friend! @Sam hugging_face",
|
| 38 |
+
"person": "\u028e\u05df\u05df\u01dd\u029e",
|
| 39 |
+
"postId": 8,
|
| 40 |
+
"themeSimilarity": 1.0
|
| 41 |
+
},
|
| 42 |
+
{
|
| 43 |
+
"theme": "Maintenance",
|
| 44 |
+
"modifier": 0.0,
|
| 45 |
+
"message": "FYI at 330 today I'll be taking the Arcade machine down for maintenance. It will actually remain down until next Wednesday morning as I work through some marquee configuration. dealwithit",
|
| 46 |
+
"person": "Doug Bowen",
|
| 47 |
+
"postId": 10,
|
| 48 |
+
"themeSimilarity": 1.0
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"theme": "Appreciation",
|
| 52 |
+
"modifier": 0.0,
|
| 53 |
+
"message": "Thank you to everyone who came into the office yesterday in support of our Build Center tour for Woodside Energy and AWS. Special thanks to @Christy Nolan and @Danny Weldon for their support presenting \u201chow we work\u201d and \u201cwhat we\u2019re working on\u201d. We\u2019re well positioned to win work with the buyer at Woodside stating \u201cseveral consulting companies have pitched to me but nobody aligns better with my vision than Slalom does\u201d.",
|
| 54 |
+
"person": "John Flaherty",
|
| 55 |
+
"postId": 11,
|
| 56 |
+
"themeSimilarity": 1.0
|
| 57 |
+
},
|
| 58 |
+
{
|
| 59 |
+
"theme": "Time Sheets",
|
| 60 |
+
"modifier": 0.0,
|
| 61 |
+
"message": "Reminder Time sheets!",
|
| 62 |
+
"person": "Slackbot",
|
| 63 |
+
"postId": 13,
|
| 64 |
+
"themeSimilarity": 1.0
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"theme": "Date Night",
|
| 68 |
+
"modifier": 0.0,
|
| 69 |
+
"message": "Date night with my wife at the Sugar Land Space Cowboys game.",
|
| 70 |
+
"person": "Steven Murray",
|
| 71 |
+
"postId": 15,
|
| 72 |
+
"themeSimilarity": 1.0
|
| 73 |
+
},
|
| 74 |
+
{
|
| 75 |
+
"theme": "Father'S Day",
|
| 76 |
+
"modifier": 0.0,
|
| 77 |
+
"message": "Happy Father's day to all you _Builder Dads out there!",
|
| 78 |
+
"person": "Naeem",
|
| 79 |
+
"postId": 16,
|
| 80 |
+
"themeSimilarity": 1.0
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"theme": "Cow Appreciation",
|
| 84 |
+
"modifier": 7.0,
|
| 85 |
+
"message": "National Cow Appreciation Day - @julie.lowe how are the cows? slightly_smiling_face cow",
|
| 86 |
+
"person": "Michelle Francisco",
|
| 87 |
+
"postId": 18,
|
| 88 |
+
"themeSimilarity": 1.0
|
| 89 |
+
},
|
| 90 |
+
{
|
| 91 |
+
"theme": "Sunburn",
|
| 92 |
+
"modifier": 0.0,
|
| 93 |
+
"message": "I applied sunscreen poorly and have stripes of sunburn....",
|
| 94 |
+
"person": "richard.hand",
|
| 95 |
+
"postId": 19,
|
| 96 |
+
"themeSimilarity": 1.0
|
| 97 |
+
},
|
| 98 |
+
{
|
| 99 |
+
"theme": "Gift",
|
| 100 |
+
"modifier": 0.0,
|
| 101 |
+
"message": "My 3 year old daughter went to GAP and selected a flower print shirt for my husband - Nishank (I have never seen him wear flower print till yesterday). She also bought candy 'to share'.",
|
| 102 |
+
"person": "Mrinalini Shekhawat",
|
| 103 |
+
"postId": 20,
|
| 104 |
+
"themeSimilarity": 1.0
|
| 105 |
+
},
|
| 106 |
+
{
|
| 107 |
+
"theme": "Lunch Order",
|
| 108 |
+
"modifier": 0.0,
|
| 109 |
+
"message": "@channel Who's going in on Wednesday!? For lunch We will be having lunch from Bellagreen. If want lunch please drop a lunch-bag by EOD today. This will help me determine how much to order! Thank youbuild_heart Options Below comes with chips and fresh fruit...",
|
| 110 |
+
"person": "Ahmad Shareef",
|
| 111 |
+
"postId": 21,
|
| 112 |
+
"themeSimilarity": 1.0
|
| 113 |
+
},
|
| 114 |
+
{
|
| 115 |
+
"theme": "Build Center",
|
| 116 |
+
"modifier": NaN,
|
| 117 |
+
"message": "@channel Also happening on Wednesday is the Woodside Build Center Tour beginning at 9am. I would like to have as many Builders in the office as possible. Please make every effort to be on-site. Thank you.",
|
| 118 |
+
"person": "John Flaherty",
|
| 119 |
+
"postId": 23,
|
| 120 |
+
"themeSimilarity": 1.0
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"theme": "Etiquette",
|
| 124 |
+
"modifier": 0.0,
|
| 125 |
+
"message": "how to tell someone sitting behind you chewing ice from a solo cup that it is really on your nerves? - asking for a friend",
|
| 126 |
+
"person": "richard.hand",
|
| 127 |
+
"postId": 26,
|
| 128 |
+
"themeSimilarity": 1.0
|
| 129 |
+
},
|
| 130 |
+
{
|
| 131 |
+
"theme": "Meeting",
|
| 132 |
+
"modifier": 0.0,
|
| 133 |
+
"message": "@here Good morning everyone! We are having our CCC today in the rice room from 900-1000am!",
|
| 134 |
+
"person": "Alexa De La Garza",
|
| 135 |
+
"postId": 29,
|
| 136 |
+
"themeSimilarity": 1.0
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"theme": "Technical Issue",
|
| 140 |
+
"modifier": 0.0,
|
| 141 |
+
"message": "Is anyone else getting signed out of their sessions from one day to the next? My Chrome tab that had a sharepoint open logged me out my Salesforce link logged out... Anyone else?",
|
| 142 |
+
"person": "Richard Hand",
|
| 143 |
+
"postId": 30,
|
| 144 |
+
"themeSimilarity": 1.0
|
| 145 |
+
},
|
| 146 |
+
{
|
| 147 |
+
"theme": "Found",
|
| 148 |
+
"modifier": 0.0,
|
| 149 |
+
"message": "UPDATE They've been found! Thank you @Alexa De La Garza and @Josh Mascorro meow_heart If anyone sees/saw the wine bottles I won from the auction for Target Hunger can you please put them by Melanie\u2019s desk melting_face I think I left them by Rice where we were having karaoke or maybe even by the elevators.",
|
| 150 |
+
"person": "Inez Escandon",
|
| 151 |
+
"postId": 32,
|
| 152 |
+
"themeSimilarity": 1.0
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"theme": "Bake Off",
|
| 156 |
+
"modifier": 0.0,
|
| 157 |
+
"message": "@here alert-bluecalling all bakers!! Want to show off your skills & take on a challenge to be titled the best baker in the Houston Build Center?? Then enter The Great Build Bake Off!! chefkissblob-birthdaycakefirst_place_medalblobwhee We are doing Cakes this roundblob-birthdaycake! Sign up HERE & bring your best slices on Wednesday June 14th. More deets below point_down Please be sure to pre-cut the cake into bite-size before the judging There will be a People\u2019s Choice and Judges\u2019 Choice as winners You do not need to be present during the judging time to enter. Bakeoff (2).png",
|
| 158 |
+
"person": "Ahmad Shareef",
|
| 159 |
+
"postId": 33,
|
| 160 |
+
"themeSimilarity": 1.0
|
| 161 |
+
},
|
| 162 |
+
{
|
| 163 |
+
"theme": "Parking Validation",
|
| 164 |
+
"modifier": 0.0,
|
| 165 |
+
"message": "@here Hello folks! B.R.A.D is working again if anyone in the office needs parking validation brad-badgeblue_car",
|
| 166 |
+
"person": "Alexa De La Garza",
|
| 167 |
+
"postId": 34,
|
| 168 |
+
"themeSimilarity": 1.0
|
| 169 |
+
},
|
| 170 |
+
{
|
| 171 |
+
"theme": "Severe Storms",
|
| 172 |
+
"modifier": 1.0,
|
| 173 |
+
"message": "Severe T storms just hit Northside. High winds torrential downpour and the traditional ceremonial power outage.",
|
| 174 |
+
"person": "jmoney",
|
| 175 |
+
"postId": 35,
|
| 176 |
+
"themeSimilarity": 1.0
|
| 177 |
+
},
|
| 178 |
+
{
|
| 179 |
+
"theme": "Safety",
|
| 180 |
+
"modifier": 0.0,
|
| 181 |
+
"message": "Be safe!",
|
| 182 |
+
"person": "Doug Bowen",
|
| 183 |
+
"postId": 36,
|
| 184 |
+
"themeSimilarity": 1.0
|
| 185 |
+
},
|
| 186 |
+
{
|
| 187 |
+
"theme": "Recipe",
|
| 188 |
+
"modifier": 0.0,
|
| 189 |
+
"message": "I call this \"lights-out grilled chicken nachos\"",
|
| 190 |
+
"person": "jmoney",
|
| 191 |
+
"postId": 37,
|
| 192 |
+
"themeSimilarity": 1.0
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"theme": "Lunch Order",
|
| 196 |
+
"modifier": 6.0,
|
| 197 |
+
"message": "@here Who's going in on Wednesday!? We will be having Tacos from Velvet Taco. If want lunch please drop a taco by EOD todayalert0. This will help me determine how much to order! Thank you build_heart Buffalo Chicken - crisp tenders house buffalo sauce danish bleu cheese ranch crema carrots micro celery flour tortilla Picnic chicken - rotisserie chicken avocado crema warm honey-dijon potato salad crispy chicken skin cilantro flour tortilla Mediterranean mushroom - grilled portobello mushrooms french fries cucumber grilled heirloom tomatoes dill flour tortilla - Vegan Grilled salmon - napa slaw citrus lime crema pickled fresnos roasted corn pico avocado crema micro cilantro corn tortilla Side Elote & chips- queso listo Valentina citrus lime crema queso fresco lime (edited)",
|
| 198 |
+
"person": "Ahmad Shareef",
|
| 199 |
+
"postId": 38,
|
| 200 |
+
"themeSimilarity": 1.0
|
| 201 |
+
},
|
| 202 |
+
{
|
| 203 |
+
"theme": "Hackathon",
|
| 204 |
+
"modifier": 0.0,
|
| 205 |
+
"message": "@here aiHey HOU Build the second Hackathon Subject Matter Expert Series hosted by Carrick Carpenter Miles Erickson and Etienne Ohl is this Wednesday June 7th at 1030am PT. Learn how to cruise quicker and securely with Generative AI! Check out the Hackathon events page.",
|
| 206 |
+
"person": "Ahmad Shareef",
|
| 207 |
+
"postId": 39,
|
| 208 |
+
"themeSimilarity": 1.0
|
| 209 |
+
},
|
| 210 |
+
{
|
| 211 |
+
"theme": "Karaoke Night",
|
| 212 |
+
"modifier": 5.0,
|
| 213 |
+
"message": "Also happening tomorrow~ Wednesday June 7th at 5pm sharp is BUILD KARAOKE NIGHT!!!! celebratemicdrop-boomdancefloor @here",
|
| 214 |
+
"person": "Linh Ta",
|
| 215 |
+
"postId": 41,
|
| 216 |
+
"themeSimilarity": 1.0
|
| 217 |
+
},
|
| 218 |
+
{
|
| 219 |
+
"theme": "Art Project",
|
| 220 |
+
"modifier": 3.0,
|
| 221 |
+
"message": "Hey @channel oddly specific request If you\u2019re an artistic human who plays Pok\u00e9mon Go please come find me when you have a little spare time. I\u2019ve got a fun project for you.",
|
| 222 |
+
"person": "Melanie Halbert",
|
| 223 |
+
"postId": 44,
|
| 224 |
+
"themeSimilarity": 1.0
|
| 225 |
+
},
|
| 226 |
+
{
|
| 227 |
+
"theme": "Shoes",
|
| 228 |
+
"modifier": 0.0,
|
| 229 |
+
"message": "All thats left is shoes!!",
|
| 230 |
+
"person": "Doug Bowen",
|
| 231 |
+
"postId": 47,
|
| 232 |
+
"themeSimilarity": 1.0
|
| 233 |
+
},
|
| 234 |
+
{
|
| 235 |
+
"theme": "Arcade Machine",
|
| 236 |
+
"modifier": 0.0,
|
| 237 |
+
"message": "Just FYI our arcade machine (JOHN) is open for business! Let me know if you have any requests concerns or suggestions. For those asking we have a digital marquee coming in the next few weeks and we'll be vinyl wrapping the cabinet closer to August (when our UX designer returns from leave) Have fun!",
|
| 238 |
+
"person": "Doug Bowen",
|
| 239 |
+
"postId": 49,
|
| 240 |
+
"themeSimilarity": 1.0
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"theme": "Lunch Order",
|
| 244 |
+
"modifier": 12.0,
|
| 245 |
+
"message": "@here Hope everyone had a restful 3-day weekend! Who's going in tomorrow!? We will be having Bowls from Genghis Grill. If want lunch please drop a dumpling by EOD todayalert0. This will help me determine how much to order! Thank you build_heart Menu Tofu 4 U Bowl - Tofu with dragon salt yellow onions broccoli roasted bell peppers roasted sesame garlic sauce and white rice. Topped with toasted sesame seeds and green onions. Teriyaki Chicken - Chicken broccoli green onion and pineapple in a sweet soy-ginger teriyaki sauce served with white rice. Topped with crunchy chow mein. Bangkok Bowl - Chicken crushed red pepper ginger yellow & green onions sugar snap peas red bell peppers carrots and Udon noodles with a savory sauce. Topped with toasted sesame seeds and green onions. Supreme Fried Rice Bowl - Steak chicken and shrimp with fried rice (w/ yellow & green onions red bell peppers carrots & egg).",
|
| 246 |
+
"person": "Ahmad Shareef",
|
| 247 |
+
"postId": 50,
|
| 248 |
+
"themeSimilarity": 1.0
|
| 249 |
+
},
|
| 250 |
+
{
|
| 251 |
+
"theme": "Food",
|
| 252 |
+
"modifier": 0.0,
|
| 253 |
+
"message": "I\u2019ll take a Bangkok bowl!",
|
| 254 |
+
"person": "Phillip Nguyen",
|
| 255 |
+
"postId": 51,
|
| 256 |
+
"themeSimilarity": 1.0
|
| 257 |
+
},
|
| 258 |
+
{
|
| 259 |
+
"theme": "Anniversary",
|
| 260 |
+
"modifier": 0.0,
|
| 261 |
+
"message": "Happy 6 year anniversary to the formation of Houston _b QE celebrate-all @Logan Le @Blake Bryce @King Khan",
|
| 262 |
+
"person": "Blake Bryce",
|
| 263 |
+
"postId": 52,
|
| 264 |
+
"themeSimilarity": 1.0
|
| 265 |
+
},
|
| 266 |
+
{
|
| 267 |
+
"theme": "Volunteer Opportunity",
|
| 268 |
+
"modifier": 2.0,
|
| 269 |
+
"message": "Hey hey hey Houston! Hope you all had a relaxing and enjoyable 3-day weekend. Partners 4 Good will be building Worthy Bags Friday June 2 from 12-1pm 1230-130pm. If you are interested in helping reply here and I\u2019ll forward you the invite. Also feel free to just stop by and help out. Hope to see you Friday! (edited)",
|
| 270 |
+
"person": "Michelle Francisco",
|
| 271 |
+
"postId": 53,
|
| 272 |
+
"themeSimilarity": 1.0
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"theme": "Hackathon",
|
| 276 |
+
"modifier": 0.0,
|
| 277 |
+
"message": "@here a quick note the first session of the Hackathon Subject Matter Expert Series with Bethany Mudd and Chris Samuels is tomorrow May 31st at 1030am PT. Learn how to reimagine the art of the possible with Generative AIai. You can join by using the add to calendar function from the Hackathon events page.",
|
| 278 |
+
"person": "Ahmad Shareef",
|
| 279 |
+
"postId": 54,
|
| 280 |
+
"themeSimilarity": 1.0
|
| 281 |
+
},
|
| 282 |
+
{
|
| 283 |
+
"theme": "Parking Issue",
|
| 284 |
+
"modifier": 0.0,
|
| 285 |
+
"message": "@here Hey everyone! If you are currently at the Slalom office and drive a white Mercedes SUV (license plate OKPAKO) please move it immediately as it is parked in a reserved spot on Level 3 and will be towed if not moved by 1pm. giphy (4).gif",
|
| 286 |
+
"person": "Ahmad Shareef",
|
| 287 |
+
"postId": 55,
|
| 288 |
+
"themeSimilarity": 1.0
|
| 289 |
+
},
|
| 290 |
+
{
|
| 291 |
+
"theme": "Maintenance",
|
| 292 |
+
"modifier": 1.0,
|
| 293 |
+
"message": "Hello fellow builders brad-badge BRAD brad-badge will be down for the rest of the month as he undergoes an external rework and final physical build. Please ask the Ops team to validate your ticket in the mean time. Thanks everyone!",
|
| 294 |
+
"person": "Ethan Bowen",
|
| 295 |
+
"postId": 57,
|
| 296 |
+
"themeSimilarity": 1.0
|
| 297 |
+
},
|
| 298 |
+
{
|
| 299 |
+
"theme": "Happy Hour",
|
| 300 |
+
"modifier": 9.0,
|
| 301 |
+
"message": "Hi there - a few of us are meeting at RA Sushi for an impromptu happy hour! cheerskawaii-sushi Join us - it's BYOD (Buy Your Own Drink)! blob-wink",
|
| 302 |
+
"person": "Linh Ta",
|
| 303 |
+
"postId": 58,
|
| 304 |
+
"themeSimilarity": 1.0
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"theme": "713 Day",
|
| 308 |
+
"modifier": 0.0,
|
| 309 |
+
"message": "Happy 713 Day! image.png image.png",
|
| 310 |
+
"person": "John Flaherty",
|
| 311 |
+
"postId": 61,
|
| 312 |
+
"themeSimilarity": 1.0
|
| 313 |
+
},
|
| 314 |
+
{
|
| 315 |
+
"theme": "Birthday",
|
| 316 |
+
"modifier": 23.0,
|
| 317 |
+
"message": "Happy birthday @Ray Lopez! H-Town and Prime days are Ray\u2019s Day. balloons.jpeg balloons.jpeg",
|
| 318 |
+
"person": "Michelle Francisco",
|
| 319 |
+
"postId": 64,
|
| 320 |
+
"themeSimilarity": 1.0
|
| 321 |
+
},
|
| 322 |
+
{
|
| 323 |
+
"theme": "Theatre Southwest'S",
|
| 324 |
+
"modifier": 3.0,
|
| 325 |
+
"message": "Hey Houston fam!flamingo-dance Love community theater? performing_arts Enjoy supporting local arts? Check out Theatre Southwest's Festival of Originals (FOO)! tada Theatre Southwest is a hidden gem gem just a hop skip and jump from the Build Center. In a single show catch 5 short original works by different playwrights each with a different director and cast. FOO runs weekends from July 28 to August 12 spiral_calendar_pad More info and tickets are available at the TSW website. Don't miss out!",
|
| 326 |
+
"person": "Keri W",
|
| 327 |
+
"postId": 65,
|
| 328 |
+
"themeSimilarity": 1.0
|
| 329 |
+
},
|
| 330 |
+
{
|
| 331 |
+
"theme": "Bring Your",
|
| 332 |
+
"modifier": 0.0,
|
| 333 |
+
"message": "Next Friday - Bring Your Kids to Work Day Have your kiddos ever wondered what you do all day at work or wanted to see the office? Get ready for a fun time that will surely leave them wide-eyed with wonder and brimming with excitement! It\u2019s time to mark your calendars for our. Kindly fill out the RSVP link here by July 14th. Here are some additional things to know Kid Age Range 6 -16 Parents must be involved during this time frame (this is not a babysitting event) Have some fun!",
|
| 334 |
+
"person": "Michelle Francisco",
|
| 335 |
+
"postId": 66,
|
| 336 |
+
"themeSimilarity": 1.0
|
| 337 |
+
},
|
| 338 |
+
{
|
| 339 |
+
"theme": "Subway Order",
|
| 340 |
+
"modifier": 0.0,
|
| 341 |
+
"message": "I love subway. I'm going to order 10 footlongs for the team. Please drop a subway if you want to join in. I'll be ordering at 1130. Thanks",
|
| 342 |
+
"person": "Doug Bowen",
|
| 343 |
+
"postId": 67,
|
| 344 |
+
"themeSimilarity": 1.0
|
| 345 |
+
}
|
| 346 |
+
]
|
slack_processing/slack_data_prep.py
ADDED
|
@@ -0,0 +1,233 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import pandas as pd
|
| 2 |
+
import numpy as np
|
| 3 |
+
import openai, os, tiktoken, json
|
| 4 |
+
import importlib.util
|
| 5 |
+
from openai.embeddings_utils import cosine_similarity, get_embedding
|
| 6 |
+
from sklearn.metrics import classification_report, PrecisionRecallDisplay
|
| 7 |
+
from collections import Counter
|
| 8 |
+
from nltk.corpus import wordnet
|
| 9 |
+
from nltk.tokenize import word_tokenize
|
| 10 |
+
from utilities import api_keys
|
| 11 |
+
|
| 12 |
+
#import pkg_resources
|
| 13 |
+
#dotenv_version = pkg_resources.get_distribution("nltk").version
|
| 14 |
+
#print(f"wordnet version: {dotenv_version}")
|
| 15 |
+
|
| 16 |
+
openai.api_key = api_keys.APIKeys().get_key('OPENAI_API_KEY')
|
| 17 |
+
|
| 18 |
+
# Set embedding model parameters
|
| 19 |
+
pd.set_option('display.max_rows', None)
|
| 20 |
+
pd.set_option('display.max_columns', None)
|
| 21 |
+
|
| 22 |
+
SAMPLE_SIZE = 500
|
| 23 |
+
MAX_TOKENS = 8000
|
| 24 |
+
TOPIC_TOKENS = 100
|
| 25 |
+
EMBEDDING_MODEL = "text-embedding-ada-002"
|
| 26 |
+
EMBEDDING_ENCODING = "cl100k_base"
|
| 27 |
+
|
| 28 |
+
INPUT_DATAPATH = "slack_processing/data/slack.json"
|
| 29 |
+
OUTPUT_THEME_PATH = "slack_processing/data/themes.json"
|
| 30 |
+
OUTPUT_THEME_EMBEDDINGS_PATH = "slack_processing/data/slack_with_theme_embeddings.json"
|
| 31 |
+
|
| 32 |
+
df=pd.DataFrame()
|
| 33 |
+
themes = []
|
| 34 |
+
|
| 35 |
+
# Set up the initial reference topics
|
| 36 |
+
reference_topics = set([
|
| 37 |
+
"Slalomversary",
|
| 38 |
+
"Birthday",
|
| 39 |
+
"Achievement",
|
| 40 |
+
"Teamwork",
|
| 41 |
+
"Innovation"
|
| 42 |
+
])
|
| 43 |
+
|
| 44 |
+
class Theme:
|
| 45 |
+
def __init__(self, theme, modifier, person, postId, similarity, message):
|
| 46 |
+
self.theme = theme
|
| 47 |
+
self.modifier = modifier
|
| 48 |
+
self.message=message
|
| 49 |
+
self.person=person
|
| 50 |
+
self.postId=postId
|
| 51 |
+
#self.topReaction=topReaction
|
| 52 |
+
self.themeSimilarity=similarity
|
| 53 |
+
|
| 54 |
+
def to_dict(self):
|
| 55 |
+
return {
|
| 56 |
+
'theme': self.theme,
|
| 57 |
+
'modifier': self.modifier,
|
| 58 |
+
'message': self.message,
|
| 59 |
+
'person': self.person,
|
| 60 |
+
'postId': self.postId,
|
| 61 |
+
#'topReaction': self.topReaction,
|
| 62 |
+
'themeSimilarity': self.themeSimilarity
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
def ProcessReactions(reactions,id):
|
| 66 |
+
highestcount=0
|
| 67 |
+
highestcount_reaction=""
|
| 68 |
+
if not isinstance(reactions, list):
|
| 69 |
+
return ""
|
| 70 |
+
else:
|
| 71 |
+
for reaction in reactions:
|
| 72 |
+
stripped_reaction = reaction['emoji'].strip(':')
|
| 73 |
+
if reaction['count'] > highestcount:
|
| 74 |
+
highestcount = reaction['count']
|
| 75 |
+
highestcount_reaction = stripped_reaction
|
| 76 |
+
print("returning highestcount_reaction:", highestcount_reaction)
|
| 77 |
+
return highestcount_reaction
|
| 78 |
+
|
| 79 |
+
def CleanMessage(message):
|
| 80 |
+
custom_punctuation = ':,'
|
| 81 |
+
translator = str.maketrans('', '', custom_punctuation)
|
| 82 |
+
return message.translate(translator)
|
| 83 |
+
|
| 84 |
+
def TruncateToTwoWords(topic):
|
| 85 |
+
words = topic.split()
|
| 86 |
+
truncated_topic = " ".join(words[:2])
|
| 87 |
+
return truncated_topic.title()
|
| 88 |
+
|
| 89 |
+
def WriteThemes(themes):
|
| 90 |
+
themes_dict = [theme for theme in themes]
|
| 91 |
+
with open(OUTPUT_THEME_PATH, "w") as json_file:
|
| 92 |
+
json.dump(themes_dict, json_file, indent=4)
|
| 93 |
+
print(f"Themes saved to {OUTPUT_THEME_PATH}")
|
| 94 |
+
|
| 95 |
+
# Update the process_message function
|
| 96 |
+
def ProcessMessage(message, replies, person, id):
|
| 97 |
+
message = CleanMessage(message)
|
| 98 |
+
completion = openai.ChatCompletion.create(
|
| 99 |
+
model="gpt-3.5-turbo",
|
| 100 |
+
messages=[
|
| 101 |
+
{"role": "system", "content": "Summarize the message in 1-2 words. If you can't summarize, return topic, holiday, key activity or thing. Otherwise return Unknown"},
|
| 102 |
+
{"role": "user", "content": message},
|
| 103 |
+
],
|
| 104 |
+
max_tokens=TOPIC_TOKENS,
|
| 105 |
+
n=7,
|
| 106 |
+
temperature=0.2,
|
| 107 |
+
stop=None
|
| 108 |
+
)
|
| 109 |
+
generated_topics = list(set(TruncateToTwoWords(topic) for choice in completion.choices for topic in choice.message.content.strip().split("\n")))
|
| 110 |
+
#if reaction is not None:
|
| 111 |
+
# generated_topics.append(reaction.title())
|
| 112 |
+
print("Generated topics:", generated_topics)
|
| 113 |
+
|
| 114 |
+
# Compute semantic similarity between generated topics and existing reference topics
|
| 115 |
+
similarity_scores = []
|
| 116 |
+
generated_topics_indices = []
|
| 117 |
+
counter=0
|
| 118 |
+
exact_match=False
|
| 119 |
+
most_similar_topic = "Unknown"
|
| 120 |
+
for generated_topic in generated_topics:
|
| 121 |
+
print("Generated topic:", generated_topic)
|
| 122 |
+
if generated_topic != "Unknown":
|
| 123 |
+
generated_topics_indices.append(counter)
|
| 124 |
+
generated_tokens = word_tokenize(generated_topic)
|
| 125 |
+
generated_tokens_str = " ".join(generated_tokens)
|
| 126 |
+
topic_similarities = []
|
| 127 |
+
for reference_topic in reference_topics:
|
| 128 |
+
print(" Reference topic:", reference_topic)
|
| 129 |
+
reference_tokens = word_tokenize(reference_topic)
|
| 130 |
+
reference_tokens_str = " ".join(reference_tokens)
|
| 131 |
+
similarity_score, exact_match = compute_similarity(generated_tokens_str, reference_tokens_str)
|
| 132 |
+
if exact_match:
|
| 133 |
+
print(' *Exact match found, reference topic:', reference_topic)
|
| 134 |
+
most_similar_topic = reference_topic
|
| 135 |
+
most_similar_score = 1.0
|
| 136 |
+
break
|
| 137 |
+
topic_similarities.append(similarity_score)
|
| 138 |
+
if exact_match:
|
| 139 |
+
break
|
| 140 |
+
similarity_scores.append(topic_similarities)
|
| 141 |
+
counter+=1
|
| 142 |
+
|
| 143 |
+
print("Similarity scores:", similarity_scores)
|
| 144 |
+
if len(similarity_scores) > 0 and not exact_match:
|
| 145 |
+
most_similar_score=0
|
| 146 |
+
# Aggregate the similarity scores for each generated topic
|
| 147 |
+
similarity_scores = np.array(similarity_scores)
|
| 148 |
+
aggregated_scores = np.sum(similarity_scores, axis=1)
|
| 149 |
+
# Find the index of the topic with the highest aggregated score
|
| 150 |
+
most_similar_index = np.argmax(aggregated_scores)
|
| 151 |
+
most_similar_topic_index = generated_topics_indices[most_similar_index]
|
| 152 |
+
most_similar_topic = generated_topics[most_similar_topic_index]
|
| 153 |
+
most_similar_score=similarity_scores[most_similar_index]
|
| 154 |
+
print("Most similar topic:", most_similar_topic, "with score:", most_similar_score)
|
| 155 |
+
|
| 156 |
+
if most_similar_topic != "Unknown":
|
| 157 |
+
if most_similar_topic not in reference_topics:
|
| 158 |
+
reference_topics.add(most_similar_topic)
|
| 159 |
+
most_similar_score=1.0
|
| 160 |
+
|
| 161 |
+
#print(f"{id} From message:'{message}' to theme: {most_similar_topic}")
|
| 162 |
+
theme_obj = Theme(theme=most_similar_topic, modifier=replies, person=person, postId=id, message=message, similarity=most_similar_score)
|
| 163 |
+
themes.append(theme_obj.to_dict())
|
| 164 |
+
#print(f"ThemeObj - id: {id}, theme:{theme_obj.theme}, modifier:{theme_obj.modifier}, person:{theme_obj.person}, topReaction:{theme_obj.topReaction}, message:{theme_obj.message}, similarity:{theme_obj.themeSimilarity}")
|
| 165 |
+
return themes
|
| 166 |
+
|
| 167 |
+
def compute_similarity(tokens1, tokens2):
|
| 168 |
+
if set(word_tokenize(tokens1.lower())) == set(word_tokenize(tokens2.lower())):
|
| 169 |
+
return 1.0, True
|
| 170 |
+
tokens1 = word_tokenize(tokens1)
|
| 171 |
+
tokens2 = word_tokenize(tokens2)
|
| 172 |
+
total_similarity = 0
|
| 173 |
+
num_comparisons = 0
|
| 174 |
+
for token1 in tokens1:
|
| 175 |
+
for token2 in tokens2:
|
| 176 |
+
token1_synsets = wordnet.synsets(token1)
|
| 177 |
+
token2_synsets = wordnet.synsets(token2)
|
| 178 |
+
if not token1_synsets or not token2_synsets:
|
| 179 |
+
continue
|
| 180 |
+
similarity_scores = [
|
| 181 |
+
synset1.wup_similarity(synset2)
|
| 182 |
+
for synset1 in token1_synsets
|
| 183 |
+
for synset2 in token2_synsets
|
| 184 |
+
if synset1.pos() == synset2.pos()
|
| 185 |
+
]
|
| 186 |
+
valid_scores = [score for score in similarity_scores if isinstance(score, float)]
|
| 187 |
+
if valid_scores:
|
| 188 |
+
max_similarity = max(valid_scores)
|
| 189 |
+
total_similarity += max_similarity
|
| 190 |
+
num_comparisons += 1
|
| 191 |
+
if num_comparisons > 0:
|
| 192 |
+
return total_similarity / num_comparisons, False
|
| 193 |
+
else:
|
| 194 |
+
return 0, False
|
| 195 |
+
|
| 196 |
+
def FetchSlack():
|
| 197 |
+
return pd.read_json(INPUT_DATAPATH, orient='records')
|
| 198 |
+
|
| 199 |
+
def ProcessSlack():
|
| 200 |
+
global df, reference_topics
|
| 201 |
+
#print("output path:" +OUTPUT_THEME_PATH)
|
| 202 |
+
if not os.path.exists(OUTPUT_THEME_PATH):
|
| 203 |
+
# Read JSON data into DataFrame
|
| 204 |
+
df = pd.read_json(INPUT_DATAPATH)
|
| 205 |
+
# Keep selected columns and drop rows with missing values
|
| 206 |
+
df = df[["person", "datetime", "message","replies", "id"]]
|
| 207 |
+
# Filter down to top reaction, then create theme.
|
| 208 |
+
#df["reaction"] = df.apply(lambda row: ProcessReactions(row["reactions"],row["id"]), axis=1)
|
| 209 |
+
df["theme"] = df.apply(lambda row: ProcessMessage(row["message"], row["replies"], row["person"], row["id"]), axis=1)
|
| 210 |
+
WriteThemes(themes)
|
| 211 |
+
print("Reference topic list:")
|
| 212 |
+
for reference_topic in reference_topics:
|
| 213 |
+
print(reference_topic)
|
| 214 |
+
else:
|
| 215 |
+
df = pd.read_json(OUTPUT_THEME_PATH)
|
| 216 |
+
return df[["person", "theme", "message"]]
|
| 217 |
+
|
| 218 |
+
def CreateEmbeddings():
|
| 219 |
+
global df
|
| 220 |
+
#restrict sample to 500 most recent posts and remove samples that are too long
|
| 221 |
+
top_n = SAMPLE_SIZE
|
| 222 |
+
df = df.sort_values("datetime").tail(top_n * 2)
|
| 223 |
+
df.drop("datetime", axis=1, inplace=True)
|
| 224 |
+
|
| 225 |
+
encoding = tiktoken.get_encoding(EMBEDDING_ENCODING)
|
| 226 |
+
# omit posts that are too long to embed
|
| 227 |
+
df["n_tokens"] = df.theme.apply(lambda x: len(encoding.encode(str(x))))
|
| 228 |
+
df = df[df.n_tokens <= MAX_TOKENS].tail(top_n)
|
| 229 |
+
|
| 230 |
+
df["embedding"] = df.theme.apply(lambda x: [str(val) for val in get_embedding(str(x), engine=EMBEDDING_MODEL)])
|
| 231 |
+
|
| 232 |
+
df.to_json(OUTPUT_THEME_PATH, orient="records", lines=False)
|
| 233 |
+
return df
|
utilities/__pycache__/api_keys.cpython-311.pyc
CHANGED
|
Binary files a/utilities/__pycache__/api_keys.cpython-311.pyc and b/utilities/__pycache__/api_keys.cpython-311.pyc differ
|
|
|