Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .github/workflows/itk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
run: bash run_itk.sh
working-directory: itk
env:
A2A_SAMPLES_REVISION: itk-v0.1-alpha
A2A_SAMPLES_REVISION: itk-v.0.11-alpha
8 changes: 8 additions & 0 deletions itk/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,14 @@ async def main_async(http_port: int, grpc_port: int) -> None:
AgentInterface(
protocol_binding=TransportProtocol.JSONRPC,
url=f'http://127.0.0.1:{http_port}/jsonrpc/',
protocol_version='1.0',
)
)
interfaces.append(
AgentInterface(
protocol_binding=TransportProtocol.JSONRPC,
url=f'http://127.0.0.1:{http_port}/jsonrpc/',
protocol_version='0.3',
Comment thread
ishymko marked this conversation as resolved.
)
)
interfaces.append(
Expand Down
Loading