Skip to content
Open
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
8 changes: 7 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/agentplexus/agentcall
go 1.24.11

require (
github.com/agentplexus/assistantkit v0.6.0
github.com/agentplexus/assistantkit v0.8.0
github.com/agentplexus/go-elevenlabs v0.6.0
github.com/agentplexus/mcpkit v0.3.1
github.com/agentplexus/omnivoice v0.2.0
Expand All @@ -13,7 +13,10 @@ require (
)

require (
github.com/agentplexus/multi-agent-spec/sdk/go v0.5.0 // indirect
github.com/agentplexus/ogen-tools v0.1.1 // indirect
github.com/bahlo/generic-list-go v0.2.0 // indirect
github.com/buger/jsonparser v1.1.1 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/deepgram/deepgram-go-sdk/v3 v3.5.0 // indirect
github.com/dlclark/regexp2 v1.11.5 // indirect
Expand All @@ -39,7 +42,9 @@ require (
github.com/hokaccha/go-prettyjson v0.0.0-20211117102719-0474bc63780f // indirect
github.com/inconshreveable/log15 v3.0.0-testing.5+incompatible // indirect
github.com/inconshreveable/log15/v3 v3.1.0 // indirect
github.com/invopop/jsonschema v0.13.0 // indirect
github.com/jpillora/backoff v1.0.0 // indirect
github.com/mailru/easyjson v0.9.1 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/ogen-go/ogen v1.18.0 // indirect
Expand All @@ -48,6 +53,7 @@ require (
github.com/segmentio/asm v1.2.1 // indirect
github.com/shopspring/decimal v1.4.0 // indirect
github.com/twilio/twilio-go v1.29.1 // indirect
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
go.opentelemetry.io/otel v1.39.0 // indirect
Expand Down
16 changes: 14 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
github.com/agentplexus/assistantkit v0.6.0 h1:lqHh1an1Se5ujGnSCHM1FrSrPenyDyW9/1AWTCPZaVA=
github.com/agentplexus/assistantkit v0.6.0/go.mod h1:eMTukO22akPWw6pmdzAiCBXI1k2gdGbcsf3r/AWcj68=
github.com/agentplexus/assistantkit v0.8.0 h1:s12ijhLl3KvXEGJWmbNg0g+GVUH2wIQSu2wQ9cnUzTU=
github.com/agentplexus/assistantkit v0.8.0/go.mod h1:bqyq+8LLBBNy8vbjEHixHlNa5kGUAGCFJhIble1hyGE=
github.com/agentplexus/go-elevenlabs v0.6.0 h1:04aVcICv8vSvbnSzw075x9PdO7HnkSQBKkI6zeYByFI=
github.com/agentplexus/go-elevenlabs v0.6.0/go.mod h1:VqnIzhyFwbvj/l8vBVEjp301drGaaBfoMAKIaFDTS/Y=
github.com/agentplexus/mcpkit v0.3.1 h1:+NA1U3tq0Kb6w3xQE+ZQcuAcDGyhbi0HKwHPh10jS68=
github.com/agentplexus/mcpkit v0.3.1/go.mod h1:r8AJFyvm9RU3OffftSbK5ZeJ2T5BrlI9jxXGE9+doWk=
github.com/agentplexus/multi-agent-spec/sdk/go v0.5.0 h1:fnJU9+2F9+BIyNwjHPsw6HdZL60Q4NjekItAingHYuA=
github.com/agentplexus/multi-agent-spec/sdk/go v0.5.0/go.mod h1:p44VILyLNN6u8zY51UdXFOeB42Oy+5EcLhQO3EcalGo=
github.com/agentplexus/ogen-tools v0.1.1 h1:uj3U/YEaykEjt1VBsaAGUpsolYSoaeGPjpzpIaeXaSg=
github.com/agentplexus/ogen-tools v0.1.1/go.mod h1:IVRZVeR/MmXwAKGsh+AxBxG9TQ63cBuAUILxP4nrumY=
github.com/agentplexus/omnivoice v0.2.0 h1:r8SP5fCVE88ZrGESE0QYBY1vVMeLtRWKhcwsaIaSiVE=
Expand All @@ -12,7 +14,11 @@ github.com/agentplexus/omnivoice-deepgram v0.1.0 h1:dwtWVIZAfG23jy24N2dNjgqYUIR8
github.com/agentplexus/omnivoice-deepgram v0.1.0/go.mod h1:9U1yHRlC4wDPJAKx5MGiCBvVWTcvBXTZbWsiIcWCHrU=
github.com/agentplexus/omnivoice-twilio v0.1.1 h1:0k/Vb9bAyNM2MFt1lzNTsMLtbdJ9B3ZZfsgQhTmexK0=
github.com/agentplexus/omnivoice-twilio v0.1.1/go.mod h1:q+0nTCZes4Y3BDr+oLV32M2sKhPsgUfWKg7nkMtubE4=
github.com/bahlo/generic-list-go v0.2.0 h1:5sz/EEAK+ls5wF+NeqDpk5+iNdMDXrh3z3nPnH1Wvgk=
github.com/bahlo/generic-list-go v0.2.0/go.mod h1:2KvAjgMlE5NNynlg/5iLrrCCZ2+5xWbdbCW3pNTGyYg=
github.com/beevik/etree v1.1.0/go.mod h1:r8Aw8JqVegEf0w2fDnATrX9VpkMcyFeM0FhwO62wh+A=
github.com/buger/jsonparser v1.1.1 h1:2PnMjfWD7wBILjqQbt530v576A/cAbQvEW9gGIpYMUs=
github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0=
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
Expand Down Expand Up @@ -74,6 +80,8 @@ github.com/inconshreveable/log15 v3.0.0-testing.5+incompatible h1:VryeOTiaZfAzwx
github.com/inconshreveable/log15 v3.0.0-testing.5+incompatible/go.mod h1:cOaXtrgN4ScfRrD9Bre7U1thNq5RtJ8ZoP4iXVGRj6o=
github.com/inconshreveable/log15/v3 v3.0.0-testing.5 h1:h4e0f3kjgg+RJBlKOabrohjHe47D3bbAB9BgMrc3DYA=
github.com/inconshreveable/log15/v3 v3.0.0-testing.5/go.mod h1:3GQg1SVrLoWGfRv/kAZMsdyU5cp8eFc1P3cw+Wwku94=
github.com/invopop/jsonschema v0.13.0 h1:KvpoAJWEjR3uD9Kbm2HWJmqsEaHt8lBUpd0qHcIi21E=
github.com/invopop/jsonschema v0.13.0/go.mod h1:ffZ5Km5SWWRAIN6wbDXItl95euhFz2uON45H2qjYt+0=
github.com/jpillora/backoff v1.0.0 h1:uvFg412JmmHBHw7iwprIxkPMI+sGQ4kzOWsMeHnm2EA=
github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4=
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
Expand All @@ -84,6 +92,8 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/localtunnel/go-localtunnel v0.0.0-20170326223115-8a804488f275 h1:IZycmTpoUtQK3PD60UYBwjaCUHUP7cML494ao9/O8+Q=
github.com/localtunnel/go-localtunnel v0.0.0-20170326223115-8a804488f275/go.mod h1:zt6UU74K6Z6oMOYJbJzYpYucqdcQwSMPBEdSvGiaUMw=
github.com/mailru/easyjson v0.9.1 h1:LbtsOm5WAswyWbvTEOqhypdPeZzHavpZx96/n553mR8=
github.com/mailru/easyjson v0.9.1/go.mod h1:1+xMtQp2MRNVL/V1bOzuP3aP8VNwRW55fQUto+XFtTU=
github.com/mattn/go-colorable v0.1.14 h1:9A9LHSqF/7dyVVX6g0U9cwm9pG3kP9gSzcuIPHPsaIE=
github.com/mattn/go-colorable v0.1.14/go.mod h1:6LmQG8QLFO4G5z1gPvYEzlUgJ2wF+stgPZH1UqBm1s8=
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
Expand Down Expand Up @@ -111,6 +121,8 @@ github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
github.com/twilio/twilio-go v1.29.1 h1:4dx1d9EhRUhL5ubzYrDROERAiw55s7mBE6/w3q2epVg=
github.com/twilio/twilio-go v1.29.1/go.mod h1:FpgNWMoD8CFnmukpKq9RNpUSGXC0BwnbeKZj2YHlIkw=
github.com/wk8/go-ordered-map/v2 v2.1.8 h1:5h/BUHu93oj4gIdvHHHGsScSTMijfx5PeYkE/fJgbpc=
github.com/wk8/go-ordered-map/v2 v2.1.8/go.mod h1:5nJHM5DyteebpVlHnWMV0rPz6Zp7+xBAnxjb1X5vnTw=
github.com/yosida95/uritemplate/v3 v3.0.2 h1:Ed3Oyj9yrmi9087+NczuL5BwkIc4wvTb5zIM+UJPGz4=
github.com/yosida95/uritemplate/v3 v3.0.2/go.mod h1:ILOh0sOhIJR3+L/8afwt/kE++YT040gmv5BQTMR2HP4=
github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
Expand Down
Loading