SwiftLocaleKit
OpenAI是一个由社区维护的仓库,包含对OpenAI公共API的Swift实现。
概述
SwiftLocaleKit是一个用于简化本地化和同步系统本地化设置的库。
安装
SwiftLocaleKit可通过CocoaPods和Swift包管理器获得
CocoaPods
CocoaPods是Cocoa项目的依赖管理器。有关使用和安装说明,请访问其网站。要使用CocoaPods将OpenAI集成到Xcode项目中,请在您的Podfile
中指定它
pod 'SwiftLocaleKit'
Swift包管理器
Swift包管理器是用于自动分发Swift代码的工具,并集成了swift
编译器。
一旦您设置了Swift包,添加OpenAI作为依赖就像将其添加到Package.swift
中的dependencies
值一样简单。
dependencies: [
.package(url: "https://github.com/FuturraGroup/SwiftLocaleKit.git", .branch("main"))
]
使用
即将推出...
贡献
欢迎为改进做出贡献。请随意提交Pull请求以帮助发展库。如果您有任何问题、功能建议或错误报告,请通过问题发送。
许可
MIT License
Copyright (c) 2023 Futurra Group
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.