init commit

This commit is contained in:
2026-01-15 18:00:55 +11:00
commit 27044db894
6 changed files with 1930 additions and 0 deletions

10
.gitignore vendored Normal file
View File

@@ -0,0 +1,10 @@
# Python-generated files
__pycache__/
*.py[oc]
build/
dist/
wheels/
*.egg-info
# Virtual environments
.venv

1
.python-version Normal file
View File

@@ -0,0 +1 @@
3.13

0
README.md Normal file
View File

6
main.py Normal file
View File

@@ -0,0 +1,6 @@
def main():
print("Hello from incagent!")
if __name__ == "__main__":
main()

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[project]
name = "incagent"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"langchain-community>=0.4.1",
"langchain-core>=1.2.7",
"langchain-ollama>=1.0.1",
"langgraph>=1.0.6",
"langgraph-cli[inmem]>=0.4.11",
"langgraph-prebuilt>=1.0.6",
"langgraph-sdk>=0.3.3",
]

1897
uv.lock generated Normal file

File diff suppressed because it is too large Load Diff