diff --git a/Sources/LLMChatAnthropic/LLMChatAnthropic+Typealias.swift b/Sources/LLMChatAnthropic/LLMChatAnthropic+Typealias.swift new file mode 100644 index 0000000..d9dc668 --- /dev/null +++ b/Sources/LLMChatAnthropic/LLMChatAnthropic+Typealias.swift @@ -0,0 +1,15 @@ +// +// LLMChatAnthropic+Typealias.swift +// LLMChatAnthropic +// +// Created by Kevin Hermawan on 10/27/24. +// + +import Foundation + +public extension LLMChatAnthropic { + typealias Completion = ChatCompletion + typealias CompletionChunk = ChatCompletionChunk + typealias Message = ChatMessage + typealias Options = ChatOptions +}