eastriverlee / LLM.swift

LLM.swift is a simple and readable library that allows you to interact with large language models locally with ease for macOS, iOS, watchOS, tvOS, and visionOS.
MIT License
382 stars 40 forks source link

Getting a lot of errors #3

Closed Arnav-arw closed 11 months ago

Arnav-arw commented 11 months ago
image
eastriverlee commented 11 months ago

this is happening because your application's name is also LLM. when it should be something different from the library's name. it's a simple name collision problem.

plus, you have to bundle the gguf model to use it. which means that you have to drag the gguf file that you downloaded (from hugging face for example) onto the xcode navigation bar on the left.

i'll update the readme.md soon to include more details.