Repository for USU LLM Class DSAI-5810/6810
Install uv using the instructions found here: https://docs.astral.sh/uv/getting-started/installation/
If you need to add dependencies to run your code, for example cowsay, you can do so with:
uv add cowsayUpdate the code to complete your homework. You can run your experiment like so:
uv run main.pyIf you prefer working in a jupyter notebook setting you can run:
uv run --with jupyter jupyter labuv run ruff format
uv run ruff check
uv run pytestCreate your server with:
docker run -it -d -p 8080:8080 --name zenml zenmldocker/zenml-serverYou will need to visit the ZenML dashboard at http://localhost:8080 and activate the server by creating an initial admin user account. You can then connect your client to the server with the web login flow:
zenml login http://localhost:8080You can stop it and start it back up again with:
docker stop zenml
docker start zenmlTo delete the server and start over you can run:
docker rm zenml