This repository contains a project that tests the integration of the Semantic Kernel with OpenAI using a Spring Boot application.
This project demonstrates how to integrate the Semantic Kernel with OpenAI in a Spring Boot application. The Semantic Kernel is a powerful library for natural language processing, and OpenAI provides state-of-the-art AI models.
To get started with this project, follow these steps:
-
Clone the repository:
git clone https://github.com/yourusername/semantic-kernel-openai-springboot.git cd semantic-kernel-openai-springboot
-
Build the project:
Ensure you have Maven installed. Then, run:
mvn clean install
-
Run the application:
mvn spring-boot:run
Once the application is up and running, you can test the Semantic Kernel with OpenAI by making requests to the endpoints exposed by your Spring Boot application.
For example, you might use a tool like Postman or curl
to make HTTP requests to your application.
curl -X POST http://localhost:8081/your-endpoint -d '{"your": "data"}' -H "Content-Type: application/json"