You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix markdown links
### Motivation and Context
<!-- Thank you for your contribution to the semantic-kernel repo!
Please help reviewers and future users, providing the following
information:
1. Why is this change required?
2. What problem does it solve?
3. What scenario does it contribute to?
4. If it fixes an open issue, please link to the issue here.
-->
### Description
<!-- Describe your changes, the overall approach, the underlying design.
These notes will help understanding how your code works. Thanks! -->
### Contribution Checklist
<!-- Before submitting this PR, please make sure: -->
- [ ] The code builds clean without any errors or warnings
- [ ] The PR follows the [SK Contribution
Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md)
and the [pre-submission formatting
script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts)
raises no violations
- [ ] All unit tests pass, and I have added new tests where possible
- [ ] I didn't break anyone 😄
Copy file name to clipboardExpand all lines: dotnet/samples/Demos/A2AClientServer/README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,9 +108,9 @@ dotnet run --urls "http://localhost:5002;https://localhost:5012" --agentId "<Log
108
108
109
109
### Testing the Agents using the Rest Client
110
110
111
-
This sample contains a (.http file)[https://learn.microsoft.com/aspnet/core/test/http-files?view=aspnetcore-9.0] which can be used to test the agent.
111
+
This sample contains a [.http file](https://learn.microsoft.com/aspnet/core/test/http-files?view=aspnetcore-9.0) which can be used to test the agent.
112
112
113
-
1. In Visual Studio open (./A2AServer/A2AServer.http)[./A2AServer/A2ASerever.http]
113
+
1. In Visual Studio open [./A2AServer/A2AServer.http](./A2AServer/A2ASerever.http)
114
114
1. There are two sent requests for each agent, e.g., for the invoice agent:
115
115
1. Query agent card for the invoice agent
116
116
`GET {{hostInvoice}}/.well-known/agent.json`
@@ -151,12 +151,12 @@ Sample output from the request to send a message to the agent via A2A protocol:
151
151
152
152
The A2A Inspector is a web-based tool designed to help developers inspect, debug, and validate servers that implement the Google A2A (Agent-to-Agent) protocol. It provides a user-friendly interface to interact with an A2A agent, view communication, and ensure specification compliance.
153
153
154
-
For more information go (here)[https://github.com/a2aproject/a2a-inspector].
154
+
For more information go [here](https://github.com/a2aproject/a2a-inspector).
155
155
156
-
Running the (inspector with Docker)[https://github.com/a2aproject/a2a-inspector?tab=readme-ov-file#option-two-run-with-docker] is the easiest way to get started.
156
+
Running the [inspector with Docker](https://github.com/a2aproject/a2a-inspector?tab=readme-ov-file#option-two-run-with-docker) is the easiest way to get started.
157
157
158
-
1. Navigate to the A2A Inspector in your browser: (http://127.0.0.1:8080/)[http://127.0.0.1:8080/]
159
-
1. Enter the URL of the Agent you are running e.g., (http://host.docker.internal:5000)[http://host.docker.internal:5000]
158
+
1. Navigate to the A2A Inspector in your browser: [http://127.0.0.1:8080/](http://127.0.0.1:8080/)
159
+
1. Enter the URL of the Agent you are running e.g., [http://host.docker.internal:5000](http://host.docker.internal:5000)
160
160
1. Connect to the agent and the agent card will be displayed and validated.
161
161
1. Type a message and send it to the agent using A2A protocol.
162
162
1. The response will be validated automatically and then displayed in the UI.
@@ -263,4 +263,4 @@ There seems to be a significant discrepancy between the number of t-shirts order
263
263
Please let me know if you would like to proceed with any specific action!
0 commit comments