Skip to content

Commit dfbbdd3

Browse files
committed
Update README
1 parent 163f385 commit dfbbdd3

1 file changed

Lines changed: 22 additions & 11 deletions

File tree

README.md

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,15 @@ session.toolExecutionDelegate = ToolExecutionObserver()
9090
> when targeting macOS 15 / iOS 18 or earlier
9191
> (e.g. `Conformance of 'String' to 'Generable' is only available in macOS 26.0 or newer`).
9292
> As a workaround, build your project with Xcode 16.
93-
> For more information, see [issue #15](https://github.com/mattt/AnyLanguageModel/issues/15).
93+
> For more information, see [issue #15](https://github.com/huggingface/AnyLanguageModel/issues/15).
9494
9595
## Installation
9696

9797
Add this package to your `Package.swift`:
9898

9999
```swift
100100
dependencies: [
101-
.package(url: "https://github.com/mattt/AnyLanguageModel", from: "0.8.0")
101+
.package(url: "https://github.com/huggingface/AnyLanguageModel", from: "0.8.0")
102102
]
103103
```
104104

@@ -125,7 +125,7 @@ To enable specific traits, specify them in your package's dependencies:
125125
// In your Package.swift
126126
dependencies: [
127127
.package(
128-
url: "https://github.com/mattt/AnyLanguageModel.git",
128+
url: "https://github.com/huggingface/AnyLanguageModel.git",
129129
from: "0.8.0",
130130
traits: ["CoreML", "MLX"] // Enable CoreML and MLX support
131131
)
@@ -142,7 +142,7 @@ dependencies: [
142142
> ```swift
143143
> dependencies: [
144144
> .package(
145-
> url: "https://github.com/mattt/AnyLanguageModel.git",
145+
> url: "https://github.com/huggingface/AnyLanguageModel.git",
146146
> from: "0.8.0",
147147
> traits: ["CoreML", "MLX", "Llama"]
148148
> ),
@@ -153,7 +153,7 @@ dependencies: [
153153
> ```
154154
>
155155
> Include only the dependencies that correspond to the traits you enable.
156-
> For more information, see [issue #135](https://github.com/mattt/AnyLanguageModel/issues/135).
156+
> For more information, see [issue #135](https://github.com/huggingface/AnyLanguageModel/issues/135).
157157
158158
### Using Traits in Xcode Projects
159159
@@ -197,7 +197,7 @@ let package = Package(
197197
],
198198
dependencies: [
199199
.package(
200-
url: "https://github.com/mattt/AnyLanguageModel",
200+
url: "https://github.com/huggingface/AnyLanguageModel",
201201
from: "0.4.0",
202202
traits: ["MLX"]
203203
)
@@ -468,7 +468,7 @@ Enable the trait in Package.swift:
468468
469469
```swift
470470
.package(
471-
url: "https://github.com/mattt/AnyLanguageModel.git",
471+
url: "https://github.com/huggingface/AnyLanguageModel.git",
472472
branch: "main",
473473
traits: ["CoreML"]
474474
)
@@ -554,7 +554,7 @@ Enable the trait in Package.swift:
554554
555555
```swift
556556
.package(
557-
url: "https://github.com/mattt/AnyLanguageModel.git",
557+
url: "https://github.com/huggingface/AnyLanguageModel.git",
558558
branch: "main",
559559
traits: ["MLX"]
560560
)
@@ -578,7 +578,7 @@ Enable the trait in Package.swift:
578578
579579
```swift
580580
.package(
581-
url: "https://github.com/mattt/AnyLanguageModel.git",
581+
url: "https://github.com/huggingface/AnyLanguageModel.git",
582582
branch: "main",
583583
traits: ["Llama"]
584584
)
@@ -934,7 +934,18 @@ swift test --traits CoreML,Llama
934934
> -only-testing:AnyLanguageModelTests/MLXLanguageModelTests
935935
> ```
936936
937+
## Contributing
938+
939+
This is a community project and we welcome contributions.
940+
Please check out
941+
[Issues tagged with `good first issue`][good-first-issues]
942+
if you are looking for a place to start!
943+
944+
Please ensure your code passes the build and test suite
945+
before submitting a pull request.
946+
947+
[good-first-issues]: https://github.com/huggingface/AnyLanguageModel/issues?q=is%3Aissue%20state%3Aopen%20label%3A%22good%20first%20issue%22
948+
937949
## License
938950
939-
This project is available under the MIT license.
940-
See the LICENSE file for more info.
951+
[Apache 2](LICENSE).

0 commit comments

Comments
 (0)