Skip to content

Commit cddc3f9

Browse files
authored
chore: add template agent (#719)
1 parent 83f1f85 commit cddc3f9

27 files changed

Lines changed: 6798 additions & 2 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ cython_debug/
177177

178178
**/uipath.db
179179
**/.uipath
180+
!template/.uipath/studio_metadata.json
180181
**/**.nupkg
181182
**/__uipath/
182183
**/.langgraph_api

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ packages = ["src/uipath_langchain"]
7878
[tool.ruff]
7979
line-length = 88
8080
indent-width = 4
81-
exclude = ["samples/**", "testcases/**"]
81+
exclude = ["samples/**", "testcases/**", "template/**"]
8282

8383
[tool.ruff.lint]
8484
select = ["E", "F", "B", "I"]
@@ -96,7 +96,7 @@ line-ending = "auto"
9696

9797
[tool.mypy]
9898
plugins = ["pydantic.mypy"]
99-
exclude = ["samples/.*", "testcases/.*"]
99+
exclude = ["samples/.*", "testcases/.*", "template/.*"]
100100

101101
namespace_packages = true
102102
follow_imports = "silent"

0 commit comments

Comments
 (0)