Commit Graph

7 Commits (00766c9f312540c888cdf8dd4ab28c8503b95422)

Author SHA1 Message Date
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
Bagatur 2424fff3f1
notebook fmt (#12498) 11 months ago
Lance Martin 5c564e62e1
AWS Bedrock RAG template (#12450) 11 months ago
Lance Martin d6acb3ed7e
Clean-up template READMEs (#12403)
Normalize, and update notebooks.
11 months ago
Erick Friis 4b16601d33
Format Templates (#12396) 11 months ago
Lance Martin bc6f6e968e
Add template for Pinecone + Multi-Query (#12353) 11 months ago
Erick Friis ebf998acb6
Templates (#12294)
Co-authored-by: Harrison Chase <hw.chase.17@gmail.com>
Co-authored-by: Lance Martin <lance@langchain.dev>
Co-authored-by: Jacob Lee <jacoblee93@gmail.com>
11 months ago