SIH Tech Tidbits

Useful tips, libraries and tools from the Sydney Informatics Hub team

#python Articles


Publishing Packages using Poetry

Poetry is a command-line dependency management and packaging tool for Python. It offers commands for creating a new project, adding and removing dependencies, and managing package metadata for publishing. Getting …

Local RAG with LLM

Don't want to share your private data? You can run your own local LLM to query your own documents in a couple steps with a RAG! Get a local LLM …


Run chatGPT at home

Don't want to share your private questions with chatGPT? You can run your own local version in a couple steps! Get the interface: git clone https://github.com/oobabooga/text-generation-webui …

Late Binding in Python

In Python, a function takes the latest value assigned to a variable rather than the value assigned at definition time. This is known as late binding. This is usually intuitive …