Rejigged the structure
This commit is contained in:
9
agent/.dockerignore
Normal file
9
agent/.dockerignore
Normal file
@@ -0,0 +1,9 @@
|
||||
__pycache__
|
||||
*.pyc
|
||||
.git
|
||||
.env
|
||||
.venv
|
||||
.pytest_cache
|
||||
*.egg-info
|
||||
dist
|
||||
build
|
||||
10
agent/.gitignore
vendored
Normal file
10
agent/.gitignore
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
# Python-generated files
|
||||
__pycache__/
|
||||
*.py[oc]
|
||||
build/
|
||||
dist/
|
||||
wheels/
|
||||
*.egg-info
|
||||
|
||||
# Virtual environments
|
||||
.venv
|
||||
1
agent/.python-version
Normal file
1
agent/.python-version
Normal file
@@ -0,0 +1 @@
|
||||
3.13
|
||||
15
agent/Dockerfile
Normal file
15
agent/Dockerfile
Normal file
@@ -0,0 +1,15 @@
|
||||
FROM oven/bun:latest
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Copy package files
|
||||
COPY package.json bun.lockb* ./
|
||||
|
||||
# Install dependencies
|
||||
RUN bun install
|
||||
|
||||
# Expose port
|
||||
EXPOSE 3000
|
||||
|
||||
# Command will be overridden by docker-compose
|
||||
CMD ["bun", "dev"]
|
||||
0
agent/README.md
Normal file
0
agent/README.md
Normal file
6
agent/main.py
Normal file
6
agent/main.py
Normal file
@@ -0,0 +1,6 @@
|
||||
def main():
|
||||
print("Hello from incagent!")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
16
agent/pyproject.toml
Normal file
16
agent/pyproject.toml
Normal 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
agent/uv.lock
generated
Normal file
1897
agent/uv.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user