feat(ios): implement chat function (#9482)

Co-authored-by: DarkSky <darksky2048@gmail.com>
This commit is contained in:
Lakr
2025-01-02 17:35:07 +08:00
committed by GitHub
co-authored by DarkSky
parent 72e343c379
commit 094cb1d71c
220 changed files with 7695 additions and 164 deletions
@@ -17,12 +17,18 @@ let package = Package(
.package(url: "https://github.com/gonzalezreal/swift-markdown-ui", from: "2.4.1"),
.package(url: "https://github.com/Lakr233/SpringInterpolation", from: "1.3.0"),
.package(url: "https://github.com/Lakr233/MSDisplayLink", from: "1.1.1"),
.package(path: "../AffineGraphQL"),
.package(url: "https://github.com/apollographql/apollo-ios.git", from: "1.0.0"),
.package(url: "https://github.com/LaunchDarkly/swift-eventsource.git", from: "3.3.0"),
],
targets: [
.target(name: "Intelligents", dependencies: [
"AffineGraphQL",
"SpringInterpolation",
"MSDisplayLink",
.product(name: "MarkdownUI", package: "swift-markdown-ui"),
.product(name: "Apollo", package: "apollo-ios"),
.product(name: "LDSwiftEventSource", package: "swift-eventsource"),
]),
]
)