awacke1 commited on
Commit
9445ce6
Β·
verified Β·
1 Parent(s): aeb40fe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +79 -4
app.py CHANGED
@@ -31,6 +31,74 @@ PRODUCT_SCOPES = {
31
  "πŸ”— Azure OpenAI Service": ['AzureAIServices.ReadWrite.All']
32
  }
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  BASE_SCOPES = ['User.Read']
35
 
36
  # MSAL App Instance
@@ -100,7 +168,7 @@ def main():
100
  st.sidebar.write("Select products to integrate:")
101
 
102
  selected_products = {}
103
- for product, info in PRODUCT_SCOPES.items():
104
  selected = st.sidebar.checkbox(product)
105
  if selected:
106
  selected_products[product] = True
@@ -110,7 +178,7 @@ def main():
110
  # Request scopes based on selected products
111
  request_scopes = BASE_SCOPES.copy()
112
  for product in selected_products:
113
- request_scopes.extend(PRODUCT_SCOPES[product]['scopes'])
114
  request_scopes = list(set(request_scopes)) # Remove duplicates
115
  st.session_state['request_scopes'] = request_scopes
116
 
@@ -123,7 +191,7 @@ def main():
123
  )
124
  st.write(f'πŸ‘‹ Please [click here]({auth_url}) to log in and authorize the app.')
125
 
126
- query_params = st.experimental_get_query_params()
127
  if 'code' in query_params:
128
  code = query_params.get('code')
129
  st.write(f'πŸ”‘ Authorization Code Obtained: {code[:10]}...')
@@ -152,7 +220,7 @@ def main():
152
  else:
153
  st.write("No products selected. Please select products from the sidebar.")
154
 
155
- # Sidebar navigation menu
156
  st.sidebar.title("Navigation")
157
  menu = st.sidebar.radio("Go to", [
158
  "1️⃣ Dashboard",
@@ -165,5 +233,12 @@ def main():
165
  "πŸ”Ž Filter By"
166
  ])
167
 
 
 
 
 
 
 
 
168
  if __name__ == "__main__":
169
  main()
 
31
  "πŸ”— Azure OpenAI Service": ['AzureAIServices.ReadWrite.All']
32
  }
33
 
34
+ # AI capabilities and Graph API information
35
+ products = {
36
+ "πŸ“§ Outlook": {
37
+ "ai_capabilities": "Copilot for enhanced email writing, calendar management, and scheduling.",
38
+ "graph_api": "Access to mail, calendar, contacts, and events."
39
+ },
40
+ "πŸ“’ OneNote": {
41
+ "ai_capabilities": "Content suggestion, note organization, and OCR for extracting text from images.",
42
+ "graph_api": "Manage notebooks, sections, and pages."
43
+ },
44
+ "πŸ“Š Excel": {
45
+ "ai_capabilities": "Copilot for advanced data analysis, data insights, and formula generation.",
46
+ "graph_api": "Create and manage worksheets, tables, charts, and workbooks."
47
+ },
48
+ "πŸ“„ Word": {
49
+ "ai_capabilities": "Copilot for document drafting, summarization, and grammar improvements.",
50
+ "graph_api": "Document content access, templates, and file management."
51
+ },
52
+ "πŸ—ƒοΈ SharePoint": {
53
+ "ai_capabilities": "Intelligent search, document tagging, and metadata extraction.",
54
+ "graph_api": "Access to sites, lists, files, and document libraries."
55
+ },
56
+ "πŸ“… Teams": {
57
+ "ai_capabilities": "Copilot for meeting summaries, transcription, and chat suggestions.",
58
+ "graph_api": "Manage chats, teams, channels, and meetings."
59
+ },
60
+ "πŸ’¬ Viva": {
61
+ "ai_capabilities": "Personalized learning insights, well-being insights, and productivity suggestions.",
62
+ "graph_api": "Access to user analytics and learning modules."
63
+ },
64
+ "πŸš€ Power Platform": {
65
+ "ai_capabilities": "Automation with AI Builder, data insights, and custom AI models.",
66
+ "graph_api": "Automation workflows, app creation, and data visualization."
67
+ },
68
+ "🧠 Copilot": {
69
+ "ai_capabilities": "Embedded across Word, Excel, Outlook, Teams, and more for AI-driven productivity.",
70
+ "graph_api": "Underpins Copilot's access to data and integrations."
71
+ },
72
+ "πŸ—‚οΈ OneDrive": {
73
+ "ai_capabilities": "Intelligent file organization and search.",
74
+ "graph_api": "File and folder access, sharing, and metadata."
75
+ },
76
+ "πŸ’‘ PowerPoint": {
77
+ "ai_capabilities": "Design suggestions, presentation summarization, and speaker coaching.",
78
+ "graph_api": "Presentation creation, slide management, and templates."
79
+ },
80
+ "πŸ“š Microsoft Bookings": {
81
+ "ai_capabilities": "Automated scheduling and reminders.",
82
+ "graph_api": "Booking calendars, services, and appointment details."
83
+ },
84
+ "πŸ““ Loop": {
85
+ "ai_capabilities": "Real-time collaboration and content suggestions.",
86
+ "graph_api": "Access to shared workspaces and collaborative pages."
87
+ },
88
+ "πŸ—£οΈ Translator": {
89
+ "ai_capabilities": "Real-time language translation and text-to-speech.",
90
+ "graph_api": "Integrated into communication and translation services."
91
+ },
92
+ "πŸ“‹ To Do & Planner": {
93
+ "ai_capabilities": "Task prioritization and smart reminders.",
94
+ "graph_api": "Task creation, management, and synchronization."
95
+ },
96
+ "πŸ”— Azure OpenAI Service": {
97
+ "ai_capabilities": "Access to GPT models for custom AI implementations.",
98
+ "graph_api": "Used indirectly for building custom AI models into workflows."
99
+ }
100
+ }
101
+
102
  BASE_SCOPES = ['User.Read']
103
 
104
  # MSAL App Instance
 
168
  st.sidebar.write("Select products to integrate:")
169
 
170
  selected_products = {}
171
+ for product, info in products.items():
172
  selected = st.sidebar.checkbox(product)
173
  if selected:
174
  selected_products[product] = True
 
178
  # Request scopes based on selected products
179
  request_scopes = BASE_SCOPES.copy()
180
  for product in selected_products:
181
+ request_scopes.extend(PRODUCT_SCOPES[product])
182
  request_scopes = list(set(request_scopes)) # Remove duplicates
183
  st.session_state['request_scopes'] = request_scopes
184
 
 
191
  )
192
  st.write(f'πŸ‘‹ Please [click here]({auth_url}) to log in and authorize the app.')
193
 
194
+ query_params = st.query_params
195
  if 'code' in query_params:
196
  code = query_params.get('code')
197
  st.write(f'πŸ”‘ Authorization Code Obtained: {code[:10]}...')
 
220
  else:
221
  st.write("No products selected. Please select products from the sidebar.")
222
 
223
+ # Sidebar navigation menu with AI capabilities and Graph API descriptions
224
  st.sidebar.title("Navigation")
225
  menu = st.sidebar.radio("Go to", [
226
  "1️⃣ Dashboard",
 
233
  "πŸ”Ž Filter By"
234
  ])
235
 
236
+ # Display AI Capabilities and Graph API Information for the selected menu
237
+ if menu in selected_products:
238
+ product_info = products.get(menu, None)
239
+ if product_info:
240
+ st.write(f"**AI Capabilities for {menu}:** {product_info['ai_capabilities']}")
241
+ st.write(f"**Graph API for {menu}:** {product_info['graph_api']}")
242
+
243
  if __name__ == "__main__":
244
  main()