Skip to content

Release Notes: v0.13.0

Release Date: 2026-02-28

Highlights

  • Organization Rename: GitHub organization renamed from agentplexus to plexusone

Breaking Changes

This release contains a breaking change due to the organization rename:

Component Before After
Go module github.com/agentplexus/omnillm github.com/plexusone/omnillm

Migration Guide

Update your import paths:

// Before
import "github.com/agentplexus/omnillm"

// After
import "github.com/plexusone/omnillm"

Update your go.mod:

# Remove old dependency
go mod edit -droprequire github.com/agentplexus/omnillm

# Add new dependency
go get github.com/plexusone/omnillm@v0.13.0

# Clean up
go mod tidy

Installation

go get github.com/plexusone/omnillm@v0.13.0