Can AI build a deployable API?

Yes! And can it do so in 5 minutes? Also yes!

By chaining a few concepts together it’s possible to use AI to generate a fully functional and deployable API in no time. Here’s how:

Create an OAS file by chatting with an AI
Use the OAS file as in in…


This content originally appeared on DEV Community and was authored by Matt Voget

Yes! And can it do so in 5 minutes? Also yes!

AI + Codegen = Powerful DX

By chaining a few concepts together it’s possible to use AI to generate a fully functional and deployable API in no time. Here’s how:

  1. Create an OAS file by chatting with an AI
  2. Use the OAS file as in input to a server-side API code generator
  3. Validate the generated API code by deploying it into a k8s environment

AI Generated OAS Files (1 Minute)

Using AI is a great way to generate an OAS file. But like any interaction with AI, you get out what you put in, which is where a little prompt engineering can go a long way. Fortunately tools like Blackbird have done that prompt engineering to quickly create valid OAS files.

Here’s a prompt I used in Blackbird to create API spec for a fictional AI Chatbot:

I want to create an API for my AI chatbot. I want my API to have an endpoint for submitting a chat message and endpoints for getting and setting a model.

{
  "openapi": "3.0.1",
  "info": {
    "title": "AI Chatbot API",
    "description": "API for interacting with an AI chatbot, allowing users to submit chat messages and manage AI models.",
    "version": "1.0.0",
    "contact": {
      "name": "API Support",
      "url": "https://support.example.com",
      "email": "support@example.com"
    }
  },
  "servers": [
    {
      "url": "https://api.example.com/v1",
      "description": "Production server"
    }
  ],
  "tags": [
    {
      "name": "Chat",
      "description": "Operations related to chat messages"
    },
    {
      "name": "Model",
      "description": "Operations related to AI models"
    }
  ],
  "paths": {
    "/chat/messages": {
      "post": {
        "operationId": "submitChatMessage",
        "tags": [
          "Chat"
        ],
        "summary": "Submit a chat message to the AI chatbot",
        "description": "This endpoint allows users to send a message to the AI chatbot and receive a response.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ChatMessage"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response with the chatbot's reply",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ChatResponse"
                }
              }
            }
          },
          "404": {
            "description": "Chatbot not found"
          },
          "500": {
            "description": "Internal server error"
          }
        }
      }
    },
    "/model": {
      "get": {
        "operationId": "getModel",
        "tags": [
          "Model"
        ],
        "summary": "Retrieve the current AI model",
        "description": "This endpoint retrieves the currently set AI model.",
        "responses": {
          "200": {
            "description": "Successful response with the current model",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Model"
                }
              }
            }
          },
          "404": {
            "description": "Model not found"
          },
          "500": {
            "description": "Internal server error"
          }
        }
      },
      "put": {
        "operationId": "setModel",
        "tags": [
          "Model"
        ],
        "summary": "Set a new AI model",
        "description": "This endpoint allows users to set a new AI model.",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Model"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful response indicating the model has been set"
          },
          "404": {
            "description": "Model not found"
          },
          "500": {
            "description": "Internal server error"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "ChatMessage": {
        "type": "object",
        "required": [
          "message"
        ],
        "properties": {
          "message": {
            "type": "string",
            "description": "The message to send to the chatbot.",
            "example": "Hello, how are you?"
          }
        },
        "additionalProperties": false
      },
      "ChatResponse": {
        "type": "object",
        "properties": {
          "response": {
            "type": "string",
            "description": "The response from the chatbot.",
            "example": "I'm doing well, thank you!"
          }
        },
        "additionalProperties": false
      },
      "Model": {
        "type": "object",
        "required": [
          "modelName"
        ],
        "properties": {
          "modelName": {
            "type": "string",
            "description": "The name of the AI model.",
            "example": "gpt-3.5-turbo"
          },
          "version": {
            "type": "string",
            "description": "The version of the AI model.",
            "example": "1.0.0"
          }
        },
        "additionalProperties": false
      }
    }
  }
}

Server-Side API Code Generation (2 Minutes)

Now with a valid OAS file in hand, we can leverage server-side code generators to implement the boilerplate code for this API.

While it’s easy to find a plethora of client-side code generators and SDKs, the number of OpenAPI-based server-side code generators is limited. Blackbird has us covered again.

Using Blackbird’s CLI, we’ll take the AI Chatbot OpenAPI spec and use it as an input to Blackbird’s code generate command:

blackbird code generate -s ./ai-chatbot.json -t go -o ai-chatbot-api 

This command generated the whole API project in Go, including schemas for request/responses and handling for each endpoint.

AI chatbot project generated by Blackbird

Let’s test it out:

# Run the chatbot API on my localhost
cd ai-chatbot && go run cmd/ai-chatbot/main.go

Great! The API is up and running on localhost. Blackbird stubbed out the three endpoints for this API as well as the schemas. Here’s a quick look at the API’s routes (in routes.go):

func (h *APIHandler) GetRoutes() Routes {
 return Routes{
  {
   "submitChatMessage",
   "/v1/chat/messages",
   "POST",
   h.HandleSubmitChatMessage,
  },{
   "getModel",
   "/v1/model",
   "GET",
   h.HandleGetModel,
  },{
   "setModel",
   "/v1/model",
   "PUT",
   h.HandleSetModel,
  },
 }
} 

With the generated endpoint handling and schema code, I can quickly implement one of the operations — I’ll choose /v1/chat/messages:

// This endpoint allows users to send a message to the AI chatbot and receive a response.
// Submit a chat message to the AI chatbot
func (h *APIHandler) SubmitChatMessage(ctx context.Context, reqBody ChatMessage) (Response, error) {

 return NewResponse(200, ChatResponse{Response: "This is a pre-canned chat response"}, "application/json", nil), nil

 // return NewResponse(404, {}, "", responseHeaders), nil

 // return NewResponse(500, {}, "", responseHeaders), nil
}

It’s a rough implementation, but it’s nice to have the schemas already defined where I need them as well as stubs for the error cases (these were pulled directly from the OAS file).

Finally, let’s test this out on localhost with a quick curl command:

# Curl the /chat/messages endpoint
curl --request POST -d '{"message":"Hello chatbot!"}' http://localhost/v1/chat/messages

{
  "response": "This is a pre-canned chat response"
}

Deploying the API (2 Minutes)

The generated API code “works on my machine(tm)”. But the real test is if we can get it containerized, deployed, and tested in a hosted k8s environment. Once again, Blackbird has me covered:

blackbird deployment create ai-chatbot -d ./Dockerfile -c .

With this single command, Blackbird did the following:

  • Built an image with the auto-generated Dockerfile and my API code
  • Deployed the image into Blackbird’s hosted k8s environment
  • Created the necessary mappings to provide a publicly accessible URL for testing

Let’s run our same curl command as before, but this time against the public URL where our deployment is running:

curl --request POST -d '{"message":"Hello chatbot!"}' https://matts-env-5b603.blackbird-relay.a8r.io/ai-chatbot/v1/chat/messages

{
  "response": "This is a pre-canned chat response"
}

Success! In 5 minutes I went from a conversation with AI to working and deployable API code 🚀

If you want to do the same, I invite you to give Blackbird a try. Here are the steps to quickly download the CLI.


This content originally appeared on DEV Community and was authored by Matt Voget


Print Share Comment Cite Upload Translate Updates
APA

Matt Voget | Sciencx (2024-09-16T20:56:30+00:00) Can AI build a deployable API?. Retrieved from https://www.scien.cx/2024/09/16/can-ai-build-a-deployable-api/

MLA
" » Can AI build a deployable API?." Matt Voget | Sciencx - Monday September 16, 2024, https://www.scien.cx/2024/09/16/can-ai-build-a-deployable-api/
HARVARD
Matt Voget | Sciencx Monday September 16, 2024 » Can AI build a deployable API?., viewed ,<https://www.scien.cx/2024/09/16/can-ai-build-a-deployable-api/>
VANCOUVER
Matt Voget | Sciencx - » Can AI build a deployable API?. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2024/09/16/can-ai-build-a-deployable-api/
CHICAGO
" » Can AI build a deployable API?." Matt Voget | Sciencx - Accessed . https://www.scien.cx/2024/09/16/can-ai-build-a-deployable-api/
IEEE
" » Can AI build a deployable API?." Matt Voget | Sciencx [Online]. Available: https://www.scien.cx/2024/09/16/can-ai-build-a-deployable-api/. [Accessed: ]
rf:citation
» Can AI build a deployable API? | Matt Voget | Sciencx | https://www.scien.cx/2024/09/16/can-ai-build-a-deployable-api/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.