awacke1 commited on
Commit
f7d5115
Β·
verified Β·
1 Parent(s): 86ccf08

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +46 -46
app.py CHANGED
@@ -72,20 +72,20 @@ def sticky_menu():
72
  def TopCalendarSchedulingAPI():
73
  st.markdown('''
74
 
75
- 1. πŸ“§ Outlook
76
- - AI Capabilities:
77
- 1. Copilot for enhanced email writing, smart scheduling, and meeting suggestions.
78
- 2. Calendar conflict resolution using AI to recommend optimal meeting times.
79
- 3. Natural language understanding for scheduling requests (e.g., "Set up a meeting next Tuesday with John at 2 PM").
80
- 4. Email prioritization based on importance and urgency.
81
- 2. Graph API:
82
  - Mail: Send and receive emails, access inboxes, categorize emails, and create mail folders.
83
  - Calendar: Manage events, availability, calendar sharing, and free/busy lookup.
84
  - Contacts: Create, read, and update personal contacts.
85
  - Events: Handle meetings, invitations, and RSVPs.
86
  - Cross-Platform Support: Integrated with Gmail, Live, Outlook, and other calendar services for unified scheduling.
 
 
 
 
 
 
87
 
88
- 3. πŸ“… Teams
89
  - AI Capabilities:
90
  1. Copilot for automated meeting summaries, real-time transcription, and action item extraction.
91
  2. AI-based chat and message responses, and scheduling suggestions within Teams.
@@ -96,7 +96,7 @@ def TopCalendarSchedulingAPI():
96
  3. Presence: Detect user availability status for scheduling purposes.
97
  4. Cross-Platform Support: Scheduling sync with Outlook, Google Calendar, and third-party meeting platforms like Zoom.
98
  5. Graph API integration works for any client, anywhere.
99
- 4. πŸ“… Microsoft Bookings
100
  - AI Capabilities:
101
  1. Automated appointment scheduling and reminders with AI-driven optimizations for customer time slots.
102
  2. Service recommendations based on customer preferences and history.
@@ -105,7 +105,7 @@ def TopCalendarSchedulingAPI():
105
  1. Booking Calendar: Create, manage, and update booking calendars for services, clients, and appointments.
106
  2. Appointment Details: Access details like services booked, customer information, and appointment durations.
107
  3. Cross-Platform Support: Syncs with calendars across Google, Outlook, and other major email and calendar providers.
108
- 5. πŸ“‹ To Do & Planner
109
  - AI Capabilities:
110
  1. Task prioritization based on deadlines, importance, and workload distribution.
111
  2. AI-based suggestions for task delegation and due dates.
@@ -114,7 +114,7 @@ def TopCalendarSchedulingAPI():
114
  1. Task Management: Create, read, and update tasks, task lists, and priorities.
115
  2. Synchronization: Sync tasks across users’ devices and with calendar events.
116
  3. Cross-Platform Support: Integrated with Outlook, Teams, and other task management systems like Trello and Asana.
117
- 6. πŸ—‚οΈ OneDrive
118
  - AI Capabilities:
119
  1. Intelligent file organization, including automatically linking documents (e.g., meeting notes, agenda) to calendar events.
120
  2. AI-driven search and document retrieval based on calendar or appointment context.
@@ -135,12 +135,6 @@ def TopCalendarSchedulingAPI():
135
 
136
  # Define product to scope mapping, links, AI capabilities, and Graph solutions
137
  PRODUCT_SCOPES = {
138
- "πŸ“… Teams": {
139
- 'scopes': ['Team.ReadBasic.All', 'Channel.ReadBasic.All'],
140
- 'link': 'https://teams.microsoft.com/',
141
- 'ai_capabilities': "πŸ€–πŸ’¬ Meeting insights & summaries",
142
- 'graph_solution': "πŸ‘₯ Teams & chats API"
143
- },
144
  "πŸ“… Calendar": {
145
  'scopes': ['Calendars.ReadWrite'],
146
  'link': 'https://outlook.office.com/calendar/',
@@ -159,11 +153,17 @@ PRODUCT_SCOPES = {
159
  'ai_capabilities': "πŸ€–πŸ“ Task prioritization",
160
  'graph_solution': "βœ… Task & plan management"
161
  },
162
- "πŸ’¬ Viva": {
163
- 'scopes': ['Analytics.Read'],
164
- 'link': 'https://www.microsoft.com/microsoft-viva',
165
- 'ai_capabilities': "πŸ€–πŸ“Š Personalized insights",
166
- 'graph_solution': "πŸ“ˆ Analytics & learning API"
 
 
 
 
 
 
167
  },
168
  "πŸ““ Loop": {
169
  'scopes': ['Files.ReadWrite.All'],
@@ -177,6 +177,30 @@ PRODUCT_SCOPES = {
177
  'ai_capabilities': "πŸ€–πŸš€ Cross-app AI assistance",
178
  'graph_solution': "🧠 AI integration API"
179
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
180
  "πŸ“„ Word": {
181
  'scopes': ['Files.ReadWrite.All'],
182
  'link': 'https://www.office.com/launch/word',
@@ -195,36 +219,12 @@ PRODUCT_SCOPES = {
195
  'ai_capabilities': "πŸ€–πŸŽ¨ Design & coaching AI",
196
  'graph_solution': "πŸ“Š Presentation API"
197
  },
198
- "πŸ—‚οΈ OneDrive": {
199
- 'scopes': ['Files.ReadWrite.All'],
200
- 'link': 'https://onedrive.live.com/',
201
- 'ai_capabilities': "πŸ€–πŸ” Smart file organization",
202
- 'graph_solution': "πŸ“ File & folder API"
203
- },
204
  "πŸ—ƒοΈ SharePoint": {
205
  'scopes': ['Sites.Read.All', 'Sites.ReadWrite.All'],
206
  'link': 'https://www.microsoft.com/microsoft-365/sharepoint/collaboration',
207
  'ai_capabilities': "πŸ€–πŸ” Smart search & tagging",
208
  'graph_solution': "🌐 Sites & lists API"
209
  },
210
- "πŸ“š Microsoft Bookings": {
211
- 'scopes': ['Bookings.Read.All', 'Bookings.ReadWrite.All'],
212
- 'link': 'https://outlook.office.com/bookings/',
213
- 'ai_capabilities': "πŸ€–πŸ“… Smart scheduling",
214
- 'graph_solution': "πŸ“† Booking services API"
215
- },
216
- "πŸ—£οΈ Translator": {
217
- 'scopes': ['Translation.Read'],
218
- 'link': 'https://www.microsoft.com/translator/',
219
- 'ai_capabilities': "πŸ€–πŸŒ Real-time translation",
220
- 'graph_solution': "πŸ—¨οΈ Translation services API"
221
- },
222
- "πŸ”— Azure OpenAI Service": {
223
- 'scopes': ['AzureAIServices.ReadWrite.All'],
224
- 'link': 'https://azure.microsoft.com/products/cognitive-services/openai-service/',
225
- 'ai_capabilities': "πŸ€–πŸ§  Custom AI model access",
226
- 'graph_solution': "πŸ”Œ AI model integration API"
227
- },
228
  "πŸ“’ OneNote": {
229
  'scopes': ['Notes.Read', 'Notes.Create'],
230
  'link': 'https://www.onenote.com/notebooks',
 
72
  def TopCalendarSchedulingAPI():
73
  st.markdown('''
74
 
75
+ 1. Graph API:
 
 
 
 
 
 
76
  - Mail: Send and receive emails, access inboxes, categorize emails, and create mail folders.
77
  - Calendar: Manage events, availability, calendar sharing, and free/busy lookup.
78
  - Contacts: Create, read, and update personal contacts.
79
  - Events: Handle meetings, invitations, and RSVPs.
80
  - Cross-Platform Support: Integrated with Gmail, Live, Outlook, and other calendar services for unified scheduling.
81
+ 2. πŸ“§ Outlook Cloud
82
+ - AI Capabilities:
83
+ 1. Copilot for enhanced email writing, smart scheduling, and meeting suggestions.
84
+ 2. Calendar conflict resolution using AI to recommend optimal meeting times.
85
+ 3. Natural language understanding for scheduling requests (e.g., "Set up a meeting next Tuesday with John at 2 PM").
86
+ 4. Email prioritization based on importance and urgency.
87
 
88
+ 3. πŸ“… Teams Cloud
89
  - AI Capabilities:
90
  1. Copilot for automated meeting summaries, real-time transcription, and action item extraction.
91
  2. AI-based chat and message responses, and scheduling suggestions within Teams.
 
96
  3. Presence: Detect user availability status for scheduling purposes.
97
  4. Cross-Platform Support: Scheduling sync with Outlook, Google Calendar, and third-party meeting platforms like Zoom.
98
  5. Graph API integration works for any client, anywhere.
99
+ 4. πŸ“… Microsoft Bookings Cloud
100
  - AI Capabilities:
101
  1. Automated appointment scheduling and reminders with AI-driven optimizations for customer time slots.
102
  2. Service recommendations based on customer preferences and history.
 
105
  1. Booking Calendar: Create, manage, and update booking calendars for services, clients, and appointments.
106
  2. Appointment Details: Access details like services booked, customer information, and appointment durations.
107
  3. Cross-Platform Support: Syncs with calendars across Google, Outlook, and other major email and calendar providers.
108
+ 5. πŸ“‹ To Do & Planner Cloud
109
  - AI Capabilities:
110
  1. Task prioritization based on deadlines, importance, and workload distribution.
111
  2. AI-based suggestions for task delegation and due dates.
 
114
  1. Task Management: Create, read, and update tasks, task lists, and priorities.
115
  2. Synchronization: Sync tasks across users’ devices and with calendar events.
116
  3. Cross-Platform Support: Integrated with Outlook, Teams, and other task management systems like Trello and Asana.
117
+ 6. πŸ—‚οΈ OneDrive Cloud
118
  - AI Capabilities:
119
  1. Intelligent file organization, including automatically linking documents (e.g., meeting notes, agenda) to calendar events.
120
  2. AI-driven search and document retrieval based on calendar or appointment context.
 
135
 
136
  # Define product to scope mapping, links, AI capabilities, and Graph solutions
137
  PRODUCT_SCOPES = {
 
 
 
 
 
 
138
  "πŸ“… Calendar": {
139
  'scopes': ['Calendars.ReadWrite'],
140
  'link': 'https://outlook.office.com/calendar/',
 
153
  'ai_capabilities': "πŸ€–πŸ“ Task prioritization",
154
  'graph_solution': "βœ… Task & plan management"
155
  },
156
+ "πŸ—‚οΈ OneDrive": {
157
+ 'scopes': ['Files.ReadWrite.All'],
158
+ 'link': 'https://onedrive.live.com/',
159
+ 'ai_capabilities': "πŸ€–πŸ” Smart file organization",
160
+ 'graph_solution': "πŸ“ File & folder API"
161
+ },
162
+ "πŸ”— Azure OpenAI Service": {
163
+ 'scopes': ['AzureAIServices.ReadWrite.All'],
164
+ 'link': 'https://azure.microsoft.com/products/cognitive-services/openai-service/',
165
+ 'ai_capabilities': "πŸ€–πŸ§  Custom AI model access",
166
+ 'graph_solution': "πŸ”Œ AI model integration API"
167
  },
168
  "πŸ““ Loop": {
169
  'scopes': ['Files.ReadWrite.All'],
 
177
  'ai_capabilities': "πŸ€–πŸš€ Cross-app AI assistance",
178
  'graph_solution': "🧠 AI integration API"
179
  },
180
+ "πŸ“š Microsoft Bookings": {
181
+ 'scopes': ['Bookings.Read.All', 'Bookings.ReadWrite.All'],
182
+ 'link': 'https://outlook.office.com/bookings/',
183
+ 'ai_capabilities': "πŸ€–πŸ“… Smart scheduling",
184
+ 'graph_solution': "πŸ“† Booking services API"
185
+ },
186
+ "πŸ—£οΈ Translator": {
187
+ 'scopes': ['Translation.Read'],
188
+ 'link': 'https://www.microsoft.com/translator/',
189
+ 'ai_capabilities': "πŸ€–πŸŒ Real-time translation",
190
+ 'graph_solution': "πŸ—¨οΈ Translation services API"
191
+ },
192
+ "πŸ“… Teams": {
193
+ 'scopes': ['Team.ReadBasic.All', 'Channel.ReadBasic.All'],
194
+ 'link': 'https://teams.microsoft.com/',
195
+ 'ai_capabilities': "πŸ€–πŸ’¬ Meeting insights & summaries",
196
+ 'graph_solution': "πŸ‘₯ Teams & chats API"
197
+ },
198
+ "πŸ’¬ Viva": {
199
+ 'scopes': ['Analytics.Read'],
200
+ 'link': 'https://www.microsoft.com/microsoft-viva',
201
+ 'ai_capabilities': "πŸ€–πŸ“Š Personalized insights",
202
+ 'graph_solution': "πŸ“ˆ Analytics & learning API"
203
+ },
204
  "πŸ“„ Word": {
205
  'scopes': ['Files.ReadWrite.All'],
206
  'link': 'https://www.office.com/launch/word',
 
219
  'ai_capabilities': "πŸ€–πŸŽ¨ Design & coaching AI",
220
  'graph_solution': "πŸ“Š Presentation API"
221
  },
 
 
 
 
 
 
222
  "πŸ—ƒοΈ SharePoint": {
223
  'scopes': ['Sites.Read.All', 'Sites.ReadWrite.All'],
224
  'link': 'https://www.microsoft.com/microsoft-365/sharepoint/collaboration',
225
  'ai_capabilities': "πŸ€–πŸ” Smart search & tagging",
226
  'graph_solution': "🌐 Sites & lists API"
227
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228
  "πŸ“’ OneNote": {
229
  'scopes': ['Notes.Read', 'Notes.Create'],
230
  'link': 'https://www.onenote.com/notebooks',