Skip to content

0xOpenBytes/ChatService

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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:

let chatService = ChatService(key: "YOUR_OPENAI_API_KEY")

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

let response: String = try await chatService.completion(for: "Hello?")

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

let chatHistory: [ChatService.Chat] = chat.chatHistory