Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.
Merged
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ wheels/
/.agentuity/
/agents/
/agentuity.yaml
.DS_Store
.DS_Store
.env
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,9 @@ lint:

format:
@ruff format

dev:
@uv run --env-file .env ./test.py

test:
@. .venv/bin/activate && python -m pytest -v
17 changes: 3 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,10 @@ The Agentuity Python SDK is a powerful toolkit for building, deploying, and mana

To use this SDK in a real project, you should install the Agentuity CLI.

### Mac OS

```bash
brew tap agentuity/tap && brew install agentuity
curl -sSL https://agentuity.sh/install.sh | bash
```

### Linux or Windows

See the [Agentuity CLI](https://github.com/agenuity/cli) repository for installation instructions and releases.

Once installed, you can create a new project with the following command:

Expand All @@ -59,7 +54,7 @@ agentuity new

### Prerequisites

- [Python](https://www.python.org/) (3.11 or higher)
- [Python](https://www.python.org/) (3.10 or 3.11)
- [uv](https://docs.astral.sh/uv/) (latest version recommended)


Expand Down Expand Up @@ -111,13 +106,7 @@ uv run test.py
Hit the test endpoint:

```bash
curl -v http://localhost:3500/agent_HaDpiH67c4851eISzbAWfZqwLtnpguW6 --json '{"trigger":"manual","contentType":"text/plain","payload":"aGkK"}'
```

You can also use the run endpoint which emulates the production one:

```bash
curl -v http://localhost:3500/run/agent_HaDpiH67c4851eISzbAWfZqwLtnpguW6 --json '{"hello":"world"}'
curl -v http://localhost:3500/agent_HaDpiH67c4851eISzbAWfZqwLtnpguW6 --json '{"hello":"world"}'
```

## License
Expand Down
Loading
Loading