Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 12 additions & 20 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,15 @@
# Exclude large directories to keep build context small
node_modules/
.git/
frontend/node_modules/
frontend/dist/
infra-cdk/node_modules/
infra-cdk/cdk.out/
.ruff_cache/
__pycache__/
*.pyc
.pytest_cache/
.coverage
htmlcov/
dist/
build/
*.egg-info/
.vscode/
.idea/
# Default-deny the repo root and only include the runtime inputs we need.
**

# Keep only what we need for Docker builds
!gateway/
!.dockerignore
!pyproject.toml
!gateway/
!gateway/**
!patterns/
!patterns/**
!tools/
!tools/**
!ag_ui_langgraph/
!ag_ui_langgraph/**
!copilotkit/
!copilotkit/**
35 changes: 35 additions & 0 deletions ag_ui_langgraph/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
from .agent import LangGraphAgent
from .types import (
LangGraphEventTypes,
CustomEventNames,
State,
SchemaKeys,
MessageInProgress,
RunMetadata,
MessagesInProgressRecord,
ToolCall,
BaseLangGraphPlatformMessage,
LangGraphPlatformResultMessage,
LangGraphPlatformActionExecutionMessage,
LangGraphPlatformMessage,
PredictStateTool
)
from .endpoint import add_langgraph_fastapi_endpoint

__all__ = [
"LangGraphAgent",
"LangGraphEventTypes",
"CustomEventNames",
"State",
"SchemaKeys",
"MessageInProgress",
"RunMetadata",
"MessagesInProgressRecord",
"ToolCall",
"BaseLangGraphPlatformMessage",
"LangGraphPlatformResultMessage",
"LangGraphPlatformActionExecutionMessage",
"LangGraphPlatformMessage",
"PredictStateTool",
"add_langgraph_fastapi_endpoint"
]
Loading