Create a simple custom GPT with YouTrack Rest API
A simple custom GPT with YouTrack Rest API, which can be used to generate a list of issues in a specific project
Introduction
OpenAI has recently unveiled the groundbreaking Custom GPTs feature GPT Introduction, enabling users to fine-tune and personalize their own GPTs. After several trials and experiments, I successfully set up a simple GPTs agent, tailored as a Project Management guru, to assist me in my workflow. As part of this endeavor, I needed a digital copilot to help me efficiently track issues using YouTrack, a popular project management tool. YouTrack
The Need for API Integration
Working in project management often involves juggling multiple tasks and keeping track of numerous issues. To streamline this process, I sought to integrate YouTrack’s capabilities directly into my workflow. This required a clear understanding and utilization of YouTrack’s API, a task that appeared daunting at first. The solution? Leveraging the OpenAPI Specification (OAS) to create a structured and efficient way to interact with the YouTrack API.
Create a custom GPT
My goal is simple, play around and do some test flight experiments to get familiar with this new tool, so the first thing come into my mind is a indie game development assistant, user can create GPTs at Custom GPT Creation Once logged in, we can do some configurations with natural language, until we got something like this:
1
[YourGPTName], tailored for independent game developers, assists in all aspects of game development, from ideation to distribution. It provides advice, generates assets, and understands game development terminology.
Add Actions
While at this moment the GPT agent seems to be finished, it’s really just a more focused normal GPT, so just as shown in the announcement event by OpenAI, I thought I should jam in some Actions. (Scroll down at the bottom of configuration tab of GPTs)
Here we can then define the Schema, following a certain format, following OpenAPI Specification
Crafting the OpenAPI Specification
Initial Setup
My journey began with defining the basics in the OAS document - specifying the OpenAPI version, providing information about the API (like title and description), and setting the server URL
- The OSA standard can be found at OpenAI-Specification
Basically it will look like this:
1
"openapi": "3.1.0","info": { ... },"servers": [ ... ]
Define Server
Since we’re working with YouTrack, we need to access YouTrack Rust API, luckily, we already got covered YouTrack Reset API
1
2
3
4
5
"servers": [
{
"url": "https://[yourproject].myjetbrains.com/youtrack/api"
}
]
Defining Paths and Operations
The core of my interaction with YouTrack revolved around fetching issues. Therefore, I defined a /issues endpoint and detailed a GET operation to retrieve issue data. This included specifying query parameters (fields and query) to filter and customize the data returned by the API
- Here from YouTrack Document, we know that we can have a query parameter, and fields parameter to retrieve issues for us, so we can configure them here
- Fields Syntax
- Query Syntax
Parameters and Flexibility
The power of OAS shone through in its ability to define versatile parameters. This allowed me to tailor requests to my specific needs, fetching precisely what was required from YouTrack
1
"/issues": { "get": { ... } }
Action Authentication
Next, we need to provide API key for GPT to properly communicate with YouTrack server, which can be obtained via the backend of YouTrack
YouTrack api token is of type API Token - Bearer
Ask GPT to send out proper Methods
While we’ve been very closed to the end of this journey, here’s one final problem, GPT doesn’t necessarily know what’s the proper parameter syntax to send out, while performing tasks, so let’s give it a few more instructions. Go back to the Instructions tab of this agent, add add things like:
1
Specifically, [YourGPTName] recognizes terms like 'unresolved' or 'in progress' as queries for the 'Develop' stage in YouTrack. Moreover, when interacting with the YouTrack API, [YourGPTName] automatically constructs a default field parameter of 'id,summary,project(name),description' to ensure meaningful and comprehensive issue information is returned, rather than just the Issue ID. This enhanced functionality aids in more effective project management and tracking in game development.
Showcase
After save and publish this Agent, we can then do something like:
Challenges and Insights
I’ve never write a single line of Rest API before, nor do I know anything about Rest API, so prior to this fun trip, I’ve also created another Tutor to quick give me a crash course of what is Rest API and how to use it. After about 30 mins to 1 hr learning, I can then tackle the basic operations and syntaxs very quickly. Which demonstrated an incredible potential of AI tutoring capabilities.
Further Exploration
For those interested in exploring OpenAPI and GPTs further, I recommend delving into OpenAI’s documentation and experimenting with various API integrations. The journey may be challenging, but the rewards in efficiency and understanding are well worth the effort. Currently, a GPT agent can only have one OAS formatted Json file, which means that we can’t have one config for YouTrack, and another one for Github, and let the GPT to freely call corresponding APIs when needed, I would be very excited to see when Actions can be configured as Arrays of Json Objects.