Skip to content

🧮A Domain-Specific Language (DSL) Approach for Triggering Commands. 📎Generating DSL scripts using LLM and user queries to execute office API.

kimtth/mini-copilot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mini Office-Copilot

The term ‘Copilot’ is used in the context of a LLM based Question and Answering system, or an Agent-driven automated application. This demo application aims to implement a Domain Specific Language (DSL) approach for triggering commands. A DSL serves as an intermediary script, interpreting user input into actual system commands or API calls.

sequenceDiagram
    User->>Backend: Request
    Backend->>OpenAI: Generate ODSL
    activate OpenAI
    OpenAI-->>Backend: ODSL
    deactivate OpenAI
    Backend->>Backend: ODSL formatting
    Backend->>ODSL Interpreter: Interpret ODSL
    activate ODSL Interpreter
    ODSL Interpreter-->>ODSL Interpreter: Invoke Office API 
    deactivate ODSL Interpreter
    ODSL Interpreter-->>Backend: Response
    Backend-->>User: Response

Supporting commands

  1. Add Outlook schedule
  2. Update Outlook schedule
  3. Delete Outlook schedule
  4. List up Outlook schedule

App registrations for Office API

Microsoft > Entra > App registrations > API Permissons

  • office_client.py

    • Calendars.ReadWrite : Delegated
    • User.Read : Delegated
  • office_client_v2.py

    • Calendars.ReadWrite : Application
    • User.ReadAll : Application

Launch the server

streamlit run app.py

Usage

  • When you want to remove or update a specific schedule, first, you need to execute a schedule list command.
  • Next, send a message with the corresponding schedule number to be modified. The number will be replaced by the schedule ID. Based on this ID, the modification will be carried out. e.g., I want to delete schedule id 0.

Screenshots

  • Add Outlook schedule

  • Update Outlook schedule

About

🧮A Domain-Specific Language (DSL) Approach for Triggering Commands. 📎Generating DSL scripts using LLM and user queries to execute office API.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages