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 lib/types/amp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* AMP (Agent Messaging Protocol) Types
*
* Type definitions for implementing AMP protocol in AI Maestro.
* Based on the AMP Protocol Specification v0.1.0
* Based on the AMP Protocol Specification v0.1.3
*
* AI Maestro acts as an AMP PROVIDER for local agents.
* This enables three deployment scenarios:
Expand Down Expand Up @@ -34,7 +34,7 @@ export const AMP_API_KEY_PREFIX = 'amp_live_sk_'
// Protocol Version
// ============================================================================

export const AMP_PROTOCOL_VERSION = '0.1.0'
export const AMP_PROTOCOL_VERSION = '0.1.3'

/**
* Default provider name (used when organization is not set)
Expand Down
6 changes: 3 additions & 3 deletions tests/services/amp-service.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const {
getOrganization: vi.fn().mockReturnValue('testorg'),
},
mockAmpTypes: {
AMP_PROTOCOL_VERSION: '0.1.0',
AMP_PROTOCOL_VERSION: '0.1.3',
getAMPProviderDomain: vi.fn().mockReturnValue('testorg.aimaestro.local'),
},
}))
Expand Down Expand Up @@ -176,7 +176,7 @@ describe('getHealthStatus', () => {
expect(result.data?.status).toBe('healthy')
expect(result.data?.agents_online).toBe(1)
expect(result.data?.provider).toBe('testorg.aimaestro.local')
expect(result.data?.version).toBe('0.1.0')
expect(result.data?.version).toBe('0.1.3')
expect(result.data?.uptime_seconds).toBeGreaterThanOrEqual(0)
})

Expand Down Expand Up @@ -207,7 +207,7 @@ describe('getProviderInfo', () => {

expect(result.status).toBe(200)
expect(result.data?.provider).toBe('testorg.aimaestro.local')
expect(result.data?.version).toBe('amp/0.1.0')
expect(result.data?.version).toBe('amp/0.1.3')
expect(result.data?.capabilities).toContain('registration')
expect(result.data?.capabilities).toContain('local-delivery')
expect(result.data?.capabilities).toContain('relay-queue')
Expand Down
Loading