sequenceDiagram
participant LLM as LLM Agent
participant MCP as MCP Tool
participant Auth as Session Token
participant Rewrite as Query Rewriter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import json | |
| from xmltodict import parse | |
| # Populate these with your Workday info! | |
| tenant_name = "" | |
| username = f"ISU_USERNAME@{tenant_name}" | |
| password = "" | |
| # Exact URL may vary | |
| url = f"https://services1.myworkday.com/ccx/service/{tenant_name}/Human_Resources/v38.2" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>IKE Custom Application Example</title> | |
| </head> | |
| <body style="background-color: white; font-size: 32px;"> | |
| <input type='text' id="txtBox" /> | |
| </body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>IKE Custom Application Example</title> | |
| </head> | |
| <body style="background-color: white; font-size: 32px;"> | |
| <input type='text' id="txtBox" /> | |
| </body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>IKE Custom Application Example</title> | |
| <script> | |
| // For security reasons the external application should only receive or | |
| // send events from the IKE application. The origin below is the correct origin | |
| // for the application to run on production. For the IKE Test environment you |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| BEGIN:VCALENDAR | |
| PRODID:-//Google Inc//Google Calendar 70.9054//EN | |
| VERSION:2.0 | |
| CALSCALE:GREGORIAN | |
| METHOD:PUBLISH | |
| X-WR-CALNAME:October 2019 Events | |
| X-WR-TIMEZONE:America/Chicago | |
| BEGIN:VEVENT | |
| DTSTART:20191003T000000Z | |
| DTEND:20191003T020000Z |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| BEGIN:VCALENDAR | |
| PRODID:-//Google Inc//Google Calendar 70.9054//EN | |
| VERSION:2.0 | |
| CALSCALE:GREGORIAN | |
| METHOD:PUBLISH | |
| X-WR-CALNAME:City Events | |
| X-WR-TIMEZONE:America/Chicago | |
| BEGIN:VEVENT | |
| DTSTART:20190725T180000Z | |
| DTEND:20190725T200000Z |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # this script given that new categories have been created and attached to the relevant apps | |
| # will for the specified account_names and category_names sync all the relevant google places | |
| account_names = ["Baltimore", "Denver", "Los Angeles", | |
| "Short North", "SMRT Columbus"] | |
| category_names = ["Antiques & Vintage", "Beer, Wine, & Spirits", "Juice & Natural Foods"] | |
| accounts = Account.where(name: account_names) | |
| accounts.each do |account| | |
| category_ids = account.categories.where(name: category_names).pluck(:id) |
NewerOlder