Commit Graph

8 Commits (52ccae3fb12a77b638b4e3467bef1b6ef50591ef)

Author SHA1 Message Date
Erick Friis 08be477c24
templates: 0.1 bump (#15648) 8 months ago
Erick Friis 69a8a26683
templates: fix deps (#15439) 8 months ago
Erick Friis 96f6b90349
templates[patch]: relock templates (#14149) 9 months ago
Erick Friis db4b97d590
Relock Templates (#13028) 10 months ago
Harrison Chase 83cee2cec4
Template Readmes and Standardization (#12819)
Co-authored-by: Erick Friis <erick@langchain.dev>
10 months ago
Erick Friis 2a7e0a27cb
update lc version (#12655)
also updated py version in `csv-agent` and `rag-codellama-fireworks`
because they have stricter python requirements
10 months ago
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>
10 months ago
Lance Martin 05bbf943f2
LLaMA2 with JSON schema support template (#12435) 10 months ago