Skip to content

Commit

Permalink
Merge branch 'main' into feat/create-server
Browse files Browse the repository at this point in the history
  • Loading branch information
djfarrelly authored Jan 7, 2025
2 parents 309d852 + d4a0d26 commit d6ec55d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/great-lizards-trade.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@inngest/agent-kit": patch
---

Update description for npm
8 changes: 6 additions & 2 deletions examples/swebench/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
.PHONY: init
init:
mkdir ./opt/
wget -O ./opt/dev.parquet https://huggingface.co/datasets/princeton-nlp/SWE-bench_Lite/resolve/main/data/dev-00000-of-00001.parquet?download=true
mkdir -p ./opt/
if which wget >/dev/null; then \
wget -O ./opt/dev.parquet https://huggingface.co/datasets/princeton-nlp/SWE-bench_Lite/resolve/main/data/dev-00000-of-00001.parquet?download=true; \
else \
curl -L https://huggingface.co/datasets/princeton-nlp/SWE-bench_Lite/resolve/main/data/dev-00000-of-00001.parquet?download=true -o ./opt/dev.parquet; \
fi
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@inngest/agent-kit",
"version": "0.1.2",
"description": "",
"description": "AgentKit is a framework for creating and orchestrating AI agents and AI workflows",
"main": "dist/index.js",
"scripts": {
"changeset": "changeset",
Expand Down

0 comments on commit d6ec55d

Please sign in to comment.