Commit Graph

4 Commits (0c7f1d8b219e87e3ffd14a15a452622c532c7e95)

Author SHA1 Message Date
Harrison Chase 8b5e879171
add a template for the package readme (#12499)
Co-authored-by: Erick Friis <erick@langchain.dev>
9 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>
9 months ago
Bagatur 2424fff3f1
notebook fmt (#12498) 9 months ago
Harrison Chase 9e0ae56287
various templates improvements (#12500) 9 months ago