top of page
  • Writer's pictureJayden Zhang

Create a simple custom GPT with YouTrack Rest API

Introduction

OpenAI has recently unveiled the groundbreaking Custom GPTs feature (https://openai.com/blog/introducing-gpts) , 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. (https://www.jetbrains.com/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, playaround and do some testflight 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 https://chat.openai.com/create Once logged in, we can do some configurations with natural language, until we got something like this:

[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.

"openapi": "3.1.0","info": { ... },"servers": [ ... ]

  "servers": [
    {
      "url": "https://[yourproject].myjetbrains.com/youtrack/api"
    }
  ],


  • 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.

"/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:

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.

Show Time!

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 formated 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.

149 views0 comments

Recent Posts

See All

コメント


bottom of page