Examples of langchain stuff
rye sync to get started
Instructions to install rye: rye website
Run rye sync to get the virtualenv set up.
There is a .justfile with common commands. You can set up just on a mac with brew: brew install just.
For further reference: just github.
The code uses llama3 as the model. Instructions for local set up is at:
download ollama.
You can then run the model in a terminal tab with ollama serve llama3.
There are other commands that are helpful in the .justfile.
Example of using an llm to create fake data based on a given data schema in a pydantic model.
Example of using an llm to create descriptors of database tables.