Skip to content
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Main project: [github.com/AxmeAI/axme](https://github.com/AxmeAI/axme)

**Go CLI for the AXME platform.** Manage intent lifecycle, configure runtime contexts, inspect audit logs, and operate the platform from the terminal — single binary, no runtime dependencies.

> **Alpha** - CLI surface is stabilizing. Install, log in, and run your first example in under 5 minutes. [Quick Start](https://cloud.axme.ai/alpha/cli) · [hello@axme.ai](mailto:hello@axme.ai)
> **Alpha** - CLI surface is stabilizing. Install, log in, and run your first example in under 5 minutes. [Quick Start](https://cloud.axme.ai/alpha/cli) · [contact@axme.ai](mailto:contact@axme.ai)

---

Expand Down Expand Up @@ -399,4 +399,4 @@ Bug reports and feature requests: open an issue. See [CONTRIBUTING.md](CONTRIBUT

---

[hello@axme.ai](mailto:hello@axme.ai) · [Security](SECURITY.md) · [License](LICENSE)
[contact@axme.ai](mailto:contact@axme.ai) · [Security](SECURITY.md) · [License](LICENSE)
2 changes: 1 addition & 1 deletion cmd/axme/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3525,7 +3525,7 @@ func httpErrorMessage(status int, raw string) string {
if d.ResetAt != "" {
msg += fmt.Sprintf(" Resets at %s.", d.ResetAt)
}
msg += "\nRun `axme quota show` to check your limits, or email hello@axme.ai to request higher limits."
msg += "\nRun `axme quota show` to check your limits, or email contact@axme.ai to request higher limits."
return msg
}
return "Rate limit exceeded. Please wait before retrying."
Expand Down
2 changes: 1 addition & 1 deletion cmd/axme/quota.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func newQuotaShowCmd(rt *runtime) *cobra.Command {

if len(dims) == 0 {
fmt.Println("No quota policy found for this workspace.")
fmt.Println("To request limits, email hello@axme.ai with your org email and usage scenario.")
fmt.Println("To request limits, email contact@axme.ai with your org email and usage scenario.")
return nil
}

Expand Down
Loading