Installation
Python Installation
Using pip
The easiest way to install Agenkit is via pip:
From Source
For development or to get the latest changes:
# Clone the repository
git clone https://github.com/scttfrdmn/agenkit.git
cd agenkit
# Install in development mode with all dependencies
pip install -e ".[dev]"
Verify Installation
Go Installation
Using go get
From Source
# Clone the repository
git clone https://github.com/scttfrdmn/agenkit.git
cd agenkit/agenkit-go
# Download dependencies
go mod download
# Run tests to verify
go test ./...
Verify Installation
package main
import (
"fmt"
"github.com/agenkit/agenkit-go/agenkit"
)
func main() {
fmt.Println("Agenkit for Go installed successfully!")
}
Docker Installation
Pull the official Docker images:
Optional Dependencies
For Observability
For gRPC Transport
For HTTP/3 Support
Development Dependencies
For contributing or running tests:
Next Steps
Now that you have Agenkit installed, proceed to the Quick Start guide to build your first agent!