Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sendModeration endpoint #86

Merged
merged 1 commit into from
May 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Sources/OpenAISwift/Models/Moderation.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
//
// Created by Michael Watts on 5/15/23.
//

import Foundation

struct Moderation: Encodable {
let input: String
let model: String
}
5 changes: 5 additions & 0 deletions Sources/OpenAISwift/Models/OpenAI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public struct OpenAI<T: Payload>: Codable {
public let choices: [T]?
public let usage: UsageResult?
public let data: [T]?
public let results: [T]?
}

public struct TextResult: Payload {
Expand Down Expand Up @@ -41,3 +42,7 @@ public struct UrlResult: Payload {
public struct EmbeddingResult: Payload {
public let embedding: [Double]
}

public struct ModerationResult: Payload {
public let flagged: Bool?
}
15 changes: 15 additions & 0 deletions Sources/OpenAISwift/Models/OpenAIModelType.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ public enum OpenAIModelType {
/// ``Embedding`` Family of Models
case embedding(Embedding)

/// ``Moderation`` Family of Models
case moderation(Moderation)

/// Other Custom Models
case other(String)

Expand All @@ -34,6 +37,7 @@ public enum OpenAIModelType {
case .feature(let model): return model.rawValue
case .chat(let model): return model.rawValue
case .embedding(let model): return model.rawValue
case .moderation(let model): return model.rawValue
case .other(let modelName): return modelName
}
}
Expand Down Expand Up @@ -115,4 +119,15 @@ public enum OpenAIModelType {
/// > Model Name: text-embedding-ada-002
case ada = "text-embedding-ada-002"
}

/// A set of models for the moderations endpoint
/// You can read the [API Docs](https://platform.openai.com/docs/api-reference/moderations)
public enum Moderation: String {
/// Default. Automatically upgraded over time.
case latest = "text-moderation-latest"

/// OpenAI will provide advanced notice before updating this model.
/// Accuracy may be slightly lower than for text-moderation-latest.
case stable = "text-moderation-stable"
}
}
9 changes: 6 additions & 3 deletions Sources/OpenAISwift/OpenAIEndpoint.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ enum Endpoint {
case chat
case images
case embeddings
case moderations
}

extension Endpoint {
Expand All @@ -24,20 +25,22 @@ extension Endpoint {
case .images:
return "/v1/images/generations"
case .embeddings:
return "/v1/embeddings"
return "/v1/embeddings"
case .moderations:
return "/v1/moderations"
}
}

var method: String {
switch self {
case .completions, .edits, .chat, .images, .embeddings:
case .completions, .edits, .chat, .images, .embeddings, .moderations:
return "POST"
}
}

func baseURL() -> String {
switch self {
case .completions, .edits, .chat, .images, .embeddings:
case .completions, .edits, .chat, .images, .embeddings, .moderations:
return "https://api.openai.com"
}
}
Expand Down
40 changes: 40 additions & 0 deletions Sources/OpenAISwift/OpenAISwift.swift
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,31 @@ extension OpenAISwift {
}
}

/// Send a Moderation request to the OpenAI API
/// - Parameters:
/// - input: The Input For Example "My nam is Adam"
/// - model: The Model to use
/// - completionHandler: Returns an OpenAI Data Model
public func sendModerations(with input: String, model: OpenAIModelType = .moderation(.latest), completionHandler: @escaping (Result<OpenAI<ModerationResult>, OpenAIError>) -> Void) {
let endpoint = Endpoint.moderations
let body = Moderation(input: input, model: model.modelName)
let request = prepareRequest(endpoint, body: body)

makeRequest(request: request) { result in
switch result {
case .success(let success):
do {
let res = try JSONDecoder().decode(OpenAI<ModerationResult>.self, from: success)
completionHandler(.success(res))
} catch {
completionHandler(.failure(.decodingError(error: error)))
}
case .failure(let failure):
completionHandler(.failure(.genericError(error: failure)))
}
}
}

/// Send a Chat request to the OpenAI API
/// - Parameters:
/// - messages: Array of `ChatMessages`
Expand Down Expand Up @@ -334,6 +359,21 @@ extension OpenAISwift {
}
}

/// Send a Moderation request to the OpenAI API
/// - Parameters:
/// - input: The Input For Example "My nam is Adam"
/// - model: The Model to use
/// - Returns: Returns an OpenAI Data Model
@available(swift 5.5)
@available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, *)
public func sendModerations(with input: String = "", model: OpenAIModelType = .moderation(.latest)) async throws -> OpenAI<ModerationResult> {
return try await withCheckedThrowingContinuation { continuation in
sendModerations(with: input, model: model) { result in
continuation.resume(with: result)
}
}
}

/// Send a Image generation request to the OpenAI API
/// - Parameters:
/// - prompt: The Text Prompt
Expand Down