Skip to content
Closed
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
28 changes: 28 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,34 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4

# we need this to install srt for now
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Install srt
run: |
export TMP_DIR=$(mktemp -d)
cd $TMP_DIR
git clone https://github.com/anthropic-experimental/sandbox-runtime.git
cd sandbox-runtime
npm install
npm run build
chmod +x dist/cli.js
mv dist/cli.js dist/srt
# Just check if srt is working
./dist/srt || true
echo "SRT_PATH=$TMP_DIR/sandbox-runtime/dist" >> $GITHUB_ENV
echo "$TMP_DIR/sandbox-runtime/dist" >> $GITHUB_PATH
sudo apt install bubblewrap socat ripgrep -y
cd -

- name: Print SRT path
run: |
echo $TMP_DIR
srt --version

- name: Install uv
uses: astral-sh/setup-uv@v5
Expand Down
File renamed without changes.
7 changes: 6 additions & 1 deletion python/packages/kagent-crewai/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ description = "CrewAI integration for KAgent with A2A server support"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"crewai[tools]>=0.193.2,<1.0.0",
"crewai[tools]>= 1.2.0",
"instructor",
"httpx>=0.25.0",
"fastapi>=0.100.0",
"pydantic>=2.0.0",
Expand All @@ -21,6 +22,7 @@ dependencies = [
"google-genai>=1.21.1"
]


[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
Expand All @@ -31,6 +33,9 @@ dev = [

[tool.uv.sources]
kagent-core = {workspace = true}
# Need this for openai >= 2.0.0 bump.
instructor = { git = "https://github.com/567-labs/instructor", rev = "67f6ce2" }


[tool.hatch.build.targets.wheel]
packages = ["src/kagent"]
Expand Down
Loading
Loading