Skip to content

Repository files navigation

ChatService

🤖 Chat with GPT

ChatService is a Swift package that provides a simple API for chatting with an AI-powered bot based on GPT (Generative Pretrained Transformer) architecture. The package uses OpenAI's GPT models to generate responses to user inputs.

OpenAI API Reference

Usage

To use ChatService in your app, first import the module:

import ChatService

Then, create an instance of ChatService with your OpenAI API key:

letchatService=ChatService(key:"YOUR_OPENAI_API_KEY")

You can then use the completion method to generate a response to a user message:

letresponse:String=tryawait chatService.completion(for:"Hello?")

You can access the chat history using the chatHistory property of the ChatService object:

letchatHistory:[ChatService.Chat]= chat.chatHistory