Skip to content

Commit 8b22c3a

Browse files
authored
Fix broken links (#823)
1 parent 0d98f48 commit 8b22c3a

5 files changed

Lines changed: 17 additions & 17 deletions

File tree

agent-framework/integrations/ag-ui/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ To get started with AG-UI integration:
251251

252252
- [Agent Framework Documentation](../../overview/agent-framework-overview.md)
253253
- [AG-UI Protocol Documentation](https://docs.ag-ui.com/introduction)
254-
- [AG-UI Dojo App](https://github.com/ag-oss/ag-ui/tree/main/apps/dojo) - Example application demonstrating Agent Framework integration
254+
- [AG-UI Dojo App](https://dojo.ag-ui.com/) - Example application demonstrating Agent Framework integration
255255
- [Agent Framework GitHub Repository](https://github.com/microsoft/agent-framework)
256256

257257
::: zone-end

agent-framework/integrations/ag-ui/testing-with-dojo.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.service: agent-framework
1111

1212
# Testing with AG-UI Dojo
1313

14-
The [AG-UI Dojo application](https://github.com/ag-oss/ag-ui/tree/main/apps/dojo) provides an interactive environment to test and explore Microsoft Agent Framework agents that implement the AG-UI protocol. Dojo offers a visual interface to connect to your agents and interact with all 7 AG-UI features.
14+
The [AG-UI Dojo application](https://dojo.ag-ui.com/) provides an interactive environment to test and explore Microsoft Agent Framework agents that implement the AG-UI protocol. Dojo offers a visual interface to connect to your agents and interact with all 7 AG-UI features.
1515

1616
:::zone pivot="programming-language-python"
1717

@@ -226,18 +226,18 @@ If you see authentication errors:
226226

227227
## Next Steps
228228

229-
- Explore the [example agents](https://github.com/ag-oss/ag-ui/tree/main/integrations/microsoft-agent-framework/python/examples/agents) to see implementation patterns
229+
- Explore the [example agents](https://github.com/ag-ui-protocol/ag-ui/tree/main/integrations/microsoft-agent-framework/python/examples/agents) to see implementation patterns
230230
- Learn about [Backend Tool Rendering](backend-tool-rendering.md) to customize tool UIs
231231
<!-- - Implement [Human-in-the-Loop](human-in-the-loop.md) workflows for approval flows -->
232232
<!-- - Add [State Management](state-management.md) for complex interactive experiences -->
233233

234234
## Additional Resources
235235

236236
- [AG-UI Documentation](https://docs.ag-ui.com/introduction)
237-
- [AG-UI GitHub Repository](https://github.com/ag-oss/ag-ui)
238-
- [Dojo Application](https://github.com/ag-oss/ag-ui/tree/main/apps/dojo)
237+
- [AG-UI GitHub Repository](https://github.com/ag-ui-protocol/ag-ui)
238+
- [Dojo Application](https://dojo.ag-ui.com/)
239239

240-
- [Microsoft Agent Framework Integration Examples](https://github.com/ag-oss/ag-ui/tree/main/integrations/microsoft-agent-framework)
240+
- [Microsoft Agent Framework Integration Examples](https://github.com/ag-ui-protocol/ag-ui/tree/main/integrations/microsoft-agent-framework)
241241

242242
:::zone-end
243243

agent-framework/migration-guide/from-autogen/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ agent = ChatAgent(
489489
For detailed examples, see:
490490

491491
- [Azure AI with Code Interpreter](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/azure_ai/azure_ai_with_code_interpreter.py) - Code execution tool
492-
- [Azure AI with Multiple Tools](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/azure_ai/azure_ai_with_multiple_tools.py) - Multiple hosted tools
492+
- [Azure AI with Multiple Tools](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/azure_ai_agent/azure_ai_with_multiple_tools.py) - Multiple hosted tools
493493
- [OpenAI with Web Search](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/openai/openai_chat_client_with_web_search.py) - Web search integration
494494

495495
Requirements and caveats:
@@ -1183,7 +1183,7 @@ async def concurrent_example():
11831183
For concurrent execution examples, see:
11841184

11851185
- [Concurrent Agents](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/workflows/orchestration/concurrent_agents.py) - Parallel agent execution
1186-
- [Concurrent Custom Executors](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/workflows/orchestration/concurrent_custom_executors.py) - Custom parallel patterns
1186+
- [Concurrent Custom Executors](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/workflows/orchestration/concurrent_custom_agent_executors.py) - Custom parallel patterns
11871187
- [Concurrent with Custom Aggregator](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/workflows/orchestration/concurrent_custom_aggregator.py) - Result aggregation patterns
11881188

11891189
#### MagenticOneGroupChat Pattern
@@ -1703,7 +1703,7 @@ async def observability_example():
17031703
For detailed observability examples, see:
17041704

17051705
- [Zero-code Setup](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/observability/advanced_zero_code.py) - Environment variable configuration
1706-
- [Manual Setup](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/observability/setup_observability_with_parameters.py) - Programmatic configuration
1706+
- [Manual Setup](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/observability/configure_otel_providers_with_parameters.py) - Programmatic configuration
17071707
- [Agent Observability](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/observability/agent_observability.py) - Single agent telemetry
17081708
- [Workflow Observability](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/observability/workflow_observability.py) - Multi-agent workflow tracing
17091709

agent-framework/user-guide/agents/agent-types/index.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,9 @@ async with (
237237

238238
For complete examples with function tools, see:
239239

240-
- [Azure AI with function tools](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/azure_ai/azure_ai_with_function_tools.py)
241-
- [Azure OpenAI with function tools](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/azure_openai/azure_openai_with_function_tools.py)
242-
- [OpenAI with function tools](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/openai/openai_with_function_tools.py)
240+
- [Azure AI with function tools](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/azure_ai_agent/azure_ai_with_function_tools.py)
241+
- [Azure OpenAI with function tools](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/azure_openai/azure_chat_client_with_function_tools.py)
242+
- [OpenAI with function tools](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/openai/openai_chat_client_with_function_tools.py)
243243

244244
### Streaming Responses
245245

@@ -259,8 +259,8 @@ async for chunk in agent.run_stream("What's the weather like in Portland?"):
259259
For streaming examples, see:
260260

261261
- [Azure AI streaming examples](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/azure_ai/azure_ai_basic.py)
262-
- [Azure OpenAI streaming examples](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/azure_openai/azure_openai_basic.py)
263-
- [OpenAI streaming examples](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/openai/openai_basic.py)
262+
- [Azure OpenAI streaming examples](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/azure_openai/azure_chat_client_basic.py)
263+
- [OpenAI streaming examples](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/openai/openai_chat_client_basic.py)
264264

265265
### Code Interpreter Tools
266266

@@ -285,8 +285,8 @@ async with (
285285
For code interpreter examples, see:
286286

287287
- [Azure AI with code interpreter](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/azure_ai/azure_ai_with_code_interpreter.py)
288-
- [Azure OpenAI Assistants with code interpreter](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/azure_assistants_client/azure_assistants_with_code_interpreter.py)
289-
- [OpenAI Assistants with code interpreter](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/openai_assistants_client/openai_assistants_with_code_interpreter.py)
288+
- [Azure OpenAI Assistants with code interpreter](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/azure_openai/azure_assistants_with_code_interpreter.py)
289+
- [OpenAI Assistants with code interpreter](https://github.com/microsoft/agent-framework/blob/main/python/samples/getting_started/agents/openai/openai_assistants_with_code_interpreter.py)
290290

291291
## Custom agents
292292

agent-framework/user-guide/observability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ using var tracerProvider = Sdk.CreateTracerProviderBuilder()
159159

160160
## Getting started
161161

162-
See a full example of an agent with OpenTelemetry enabled in the [Agent Framework repository](https://github.com/microsoft/agent-framework/tree/taochen/dotnet-workflow-observability-samples/dotnet/samples/GettingStarted/AgentOpenTelemetry).
162+
See a full example of an agent with OpenTelemetry enabled in the [Agent Framework repository](https://github.com/microsoft/agent-framework/tree/main/dotnet/samples/GettingStarted/AgentOpenTelemetry).
163163

164164
::: zone-end
165165

0 commit comments

Comments
 (0)