initial commit

This commit is contained in:
2025-10-10 12:27:33 +08:00
parent 4f95cb9dc9
commit 81b0bb11ae
4 changed files with 21 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
assets/
*.pyc

View File

@@ -1 +1,11 @@
# langchain-agent
# Install
```bash
# for developement
python -m pip install -e .
# for production
python -m pip install .
```

9
pyproject.toml Normal file
View File

@@ -0,0 +1,9 @@
[project]
name = "lang_agent"
version = "0.1"
dependencies = [
"langchain"
]
[tool.setuptools.packages.find]
include = ["lang_agent"]

View File