I am a current Computer Science student at the University of California, San Diego (UCSD). My favourite langauge can be found here
You can check out some of the projects that I have made here
This was one of the first projects I ever made as a Computer Science student
It was made in Java using the
Java Swinglibrary which is a beginner friendly way to create a GUI for applications

This project made use of the huggingface llama 3.1-8b instruct LLM model to create a chatbot for users to prompt with restaurants that were near or on the UCSD Campus.
We cultivated a dataset that included on-campus dining halls which cannot be found on other recommendation websites as well as spots within a couple miles of campus to tailor the service to fellow UCSD students.

For the backend side of the website, you either had the option or running it locally, although it is not recommended for the sake of your GPU. The code to do so:
uvicorn app:app --host 0.0.0.0 --port 8000
curl http://localhost:8000
Better Option: running it on Google Colab where you can take advantage of Google’s provided GPUs such as the NVIDIA T4 which is the GPU we used when running the model. The Google Colab backend is hosted on ngrok to expose an endpoint.