https://github.com/andreped/tenz
Privacy-preserved LLM-powered mobile chatbot
https://github.com/andreped/tenz
Last synced: 11 months ago
JSON representation
Privacy-preserved LLM-powered mobile chatbot
- Host: GitHub
- URL: https://github.com/andreped/tenz
- Owner: andreped
- License: mit
- Created: 2025-02-17T18:25:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-18T15:41:39.000Z (over 1 year ago)
- Last Synced: 2025-05-09T13:55:54.217Z (about 1 year ago)
- Language: C#
- Size: 300 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tenz
Privacy-preserved LLM-powered mobile chatbot.
# Getting started
## Development
This development setup was tested macOS Sonoma 14.6 (ARM chip).
1. Install .NET SDK by downloading and running the approprate installer from [here](https://dotnet.microsoft.com/en-us/download), or just run the following commands:
```
wget https://download.visualstudio.microsoft.com/download/pr/b5dfd4eb-19f4-4ba5-9a0c-50af354aa434/3f307be41112d4a8de659535e8badff2/dotnet-sdk-9.0.200-osx-arm64.pkg
sudo installer -pkg dotnet-sdk-9.0.200-osx-arm64.pkg -target /
rm dotnet-sdk-9.0.200-osx-arm64.pkg
```
2. Install .NET MAUI workload (you might need to open a new terminal first):
```
sudo $(which dotnet) workload install maui
```
3. Build Mac Catalyst app:
```
dotnet build tenz/ --framework net9.0-maccatalyst
```
4. Run Mac Catalyst app:
```
dotnet run --project tenz/ --framework net9.0-maccatalyst
```
If you want to build and run against a different OS, you can replace framework with for instance `net9.0-android`.
# License
This project has MIT license.