mirror of
https://github.com/hwchase17/langchain
synced 2024-11-02 09:40:22 +00:00
d39b4b61b6
Ran the following bash script for all templates ```bash #!/bin/bash set -e current_dir="$(pwd)" for directory in */; do if [ -d "$directory" ]; then (cd "$directory" && poetry lock --no-update) fi done cd "$current_dir" ``` Co-authored-by: Bagatur <baskaryan@gmail.com> |
||
---|---|---|
.. | ||
sql_ollama | ||
tests | ||
poetry.lock | ||
pyproject.toml | ||
README.md | ||
sql-ollama.ipynb |
SQL with LLaMA2 using llama.cpp
This template allows you to chat with a SQL database in natural language in private, using an open source LLM.
Set up Ollama
Follow instructions here to download Ollama.
Also follow instructions to download your LLM of interest:
- This template uses
llama2:13b-chat
- But you can pick from many LLMs here
Set up SQL DB
This template includes an example DB of 2023 NBA rosters.
You can see instructions to build this DB here.