You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/templates/llama2-functions
David Duong d39b4b61b6
Batch apply `poetry lock --no-update` for all templates (#12531)
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>
11 months ago
..
llama2_functions Minor template cleaning (#12573) 11 months ago
tests LLaMA2 with JSON schema support template (#12435) 11 months ago
README.md Minor template cleaning (#12573) 11 months ago
llama2-functions.ipynb Formatting on ntbks (#12576) 11 months ago
poetry.lock Batch apply `poetry lock --no-update` for all templates (#12531) 11 months ago
pyproject.toml LLaMA2 with JSON schema support template (#12435) 11 months ago

README.md

Extraction with LLaMA2 Function Calling

This template shows how to do extraction of structured data from unstructured data, using LLaMA2 fine-tuned for grammars and jsonschema.

Query transformations are one great application area for open source, private LLMs:

  • The tasks are often narrow and well-defined (e.g., generatae multiple questions from a user input)
  • They also are tasks that users may want to run locally (e.g., in a RAG workflow)

Specify the scehma you want to extract in chain.py

LLM

This template will use a Replicate hosted version of LLaMA2 that has support for grammars and jsonschema.

Based on the Replicate example, the JSON schema is supplied directly in the prompt.

Be sure that REPLICATE_API_TOKEN is set in your environment.