Skip to content

Commit a04ccd3

Browse files
committed
Adding pagination
1 parent 7dcf1b3 commit a04ccd3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+608
-149
lines changed

agentex/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ agentex agents run --manifest manifest.yaml
8484

8585
### Further Reading
8686

87-
- Check out the [Agentex Python SDK repository](https://github.com/scaleapi/agentex-python) for examples and tutorials
87+
- Check out the [Agentex Python SDK repository](https://github.com/scaleapi/scale-agentex-python) for examples and tutorials
8888
- Read the documentation at [dev.agentex.scale.com/docs](https://dev.agentex.scale.com/docs)
8989

agentex/docs/docs/acp/agentic/base.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,5 +189,5 @@ Used in `@acp.on_task_cancel` for cleanup:
189189

190190
- **Ready for production?** Learn about [Temporal Agentic ACP](temporal.md)
191191
- **Need to upgrade?** See the [Migration Guide](../../concepts/migration_guide.md)
192-
- **New to Agentex?** Follow the [Quick Start Guide on GitHub](https://github.com/scaleai/agentex#quick-start)
193-
- **Ready to build?** Check out [Base Agentic Tutorials on GitHub](https://github.com/scaleapi/agentex-python/tree/main/examples/tutorials/10_agentic/000_base)
192+
- **New to Agentex?** Follow the [Quick Start Guide on GitHub](https://github.com/scaleapi/scale-agentex#quick-start)
193+
- **Ready to build?** Check out [Base Agentic Tutorials on GitHub](https://github.com/scaleapi/scale-agentex-python/tree/main/examples/tutorials/10_agentic/000_base)

agentex/docs/docs/acp/agentic/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,5 +167,5 @@ Production-ready with durable execution and automatic fault tolerance.
167167
- **Getting started?** Learn about [Base Agentic ACP](base.md) first
168168
- **Ready for production?** Explore [Temporal Agentic ACP](temporal.md)
169169
- **Need to upgrade?** Check the [Migration Guide](../../concepts/migration_guide.md)
170-
- **New to Agentex?** Follow the [Quick Start Guide on GitHub](https://github.com/scaleapi/agentex#quick-start)
171-
- **Ready to build?** Check out [Agentic Tutorials on GitHub](https://github.com/scaleapi/agentex-python/tree/main/examples/tutorials/10_agentic)
170+
- **New to Agentex?** Follow the [Quick Start Guide on GitHub](https://github.com/scaleapi/scale-agentex#quick-start)
171+
- **Ready to build?** Check out [Agentic Tutorials on GitHub](https://github.com/scaleapi/scale-agentex-python/tree/main/examples/tutorials/10_agentic)

agentex/docs/docs/acp/agentic/temporal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,5 +322,5 @@ if __name__ == "__main__":
322322

323323
- **Getting started?** Learn about [Base Agentic ACP](base.md) first
324324
- **Need to migrate?** Check the [Migration Guide](../../concepts/migration_guide.md)
325-
- **New to Agentex?** Follow the [Quick Start Guide on GitHub](https://github.com/scaleapi/agentex#quick-start)
326-
- **Ready to build?** Check out [Temporal Tutorials on GitHub](https://github.com/scaleapi/agentex-python/tree/main/examples/tutorials/10_agentic/100_temporal)
325+
- **New to Agentex?** Follow the [Quick Start Guide on GitHub](https://github.com/scaleapi/scale-agentex#quick-start)
326+
- **Ready to build?** Check out [Temporal Tutorials on GitHub](https://github.com/scaleapi/scale-agentex-python/tree/main/examples/tutorials/10_agentic/100_temporal)

agentex/docs/docs/acp/best-practices.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ Guidelines for building robust, maintainable, and secure agents with ACP.
2828

2929
## Next Steps
3030

31-
- **New to ACP?** Follow the [Quick Start Guide on GitHub](https://github.com/scaleapi/agentex#quick-start)
32-
- **Ready to build?** Check out [Tutorials on GitHub](https://github.com/scaleapi/agentex-python/tree/main/examples/tutorials)
31+
- **New to ACP?** Follow the [Quick Start Guide on GitHub](https://github.com/scaleapi/scale-agentex#quick-start)
32+
- **Ready to build?** Check out [Tutorials on GitHub](https://github.com/scaleapi/scale-agentex-python/tree/main/examples/tutorials)
3333
- **Need help choosing?** Read [Developing Agentex Agents](../developing_agentex_agents.md)

agentex/docs/docs/acp/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@ Powerful event-driven approach for complex agents. Choose between Base (learning
7272

7373
## Next Steps
7474

75-
- **New to Agentex?** Follow the [Quick Start Guide on GitHub](https://github.com/scaleapi/agentex#quick-start)
76-
- **Ready to build?** Check out [Tutorials on GitHub](https://github.com/scaleapi/agentex-python/tree/main/examples/tutorials)
75+
- **New to Agentex?** Follow the [Quick Start Guide on GitHub](https://github.com/scaleapi/scale-agentex#quick-start)
76+
- **Ready to build?** Check out [Tutorials on GitHub](https://github.com/scaleapi/scale-agentex-python/tree/main/examples/tutorials)
7777
- **Need help choosing?** Read [Developing Agentex Agents](../developing_agentex_agents.md)

agentex/docs/docs/acp/sync.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,5 +109,5 @@ The `@acp.on_message_send` handler receives:
109109

110110
- **Need more complexity?** Learn about [Agentic ACP](agentic/overview.md)
111111
- **Ready to upgrade?** See the [Migration Guide](../concepts/migration_guide.md)
112-
- **New to Agentex?** Follow the [Quick Start Guide on GitHub](https://github.com/scaleapi/agentex#quick-start)
113-
- **Ready to build?** Check out [Sync ACP Tutorials on GitHub](https://github.com/scaleapi/agentex-python/tree/main/examples/tutorials/00_sync)
112+
- **New to Agentex?** Follow the [Quick Start Guide on GitHub](https://github.com/scaleapi/scale-agentex#quick-start)
113+
- **Ready to build?** Check out [Sync ACP Tutorials on GitHub](https://github.com/scaleapi/scale-agentex-python/tree/main/examples/tutorials/00_sync)

agentex/docs/docs/concepts/architecture.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,6 @@ To respond to client requests, agent developers only need to implement a fixed s
7373

7474
## Next Steps
7575

76-
- **New to Agentex?** Follow the [Quick Start Guide on GitHub](https://github.com/scaleapi/agentex#quick-start)
77-
- **Ready to build?** Check out [Tutorials on GitHub](https://github.com/scaleapi/agentex-python/tree/main/examples/tutorials)
76+
- **New to Agentex?** Follow the [Quick Start Guide on GitHub](https://github.com/scaleapi/scale-agentex#quick-start)
77+
- **Ready to build?** Check out [Tutorials on GitHub](https://github.com/scaleapi/scale-agentex-python/tree/main/examples/tutorials)
7878
- **Understand the protocol:** Read about [Agent Client Protocol (ACP)](../acp/overview.md)

agentex/docs/docs/concepts/state_machines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,4 +304,4 @@ This foundation provides a robust, type-safe, and traceable framework for buildi
304304

305305
## Related Documentation
306306

307-
- **[State Machine Tutorial](https://github.com/scaleapi/agentex-python/tree/main/examples/tutorials/10_agentic/010_temporal/020_state_machine)**: See how state machines are used in practice with the deep research agent tutorial
307+
- **[State Machine Tutorial](https://github.com/scaleapi/scale-agentex-python/tree/main/examples/tutorials/10_agentic/010_temporal/020_state_machine)**: See how state machines are used in practice with the deep research agent tutorial

agentex/docs/docs/design_patterns/human_in_the_loop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,4 +244,4 @@ This pattern enables **true transactional agent behavior:**
244244
- **[OpenAI SDK Integration Guide](../guides/openai_temporal_integration.md)** - Setup and configuration
245245
- **[Multi-Activity Tools Pattern](multi_activity_tools.md)** - Combine with multi-step operations
246246
- **[Temporal Signals](https://docs.temporal.io/develop/python/message-passing)** - Deep dive into signals
247-
- **[GitHub Example](https://github.com/scaleapi/agentex-python/tree/main/examples/tutorials/10_agentic/010_temporal/080_open_ai_agents_sdk_human_in_the_loop)** - Full working code
247+
- **[GitHub Example](https://github.com/scaleapi/scale-agentex-python/tree/main/examples/tutorials/10_agentic/010_temporal/080_open_ai_agents_sdk_human_in_the_loop)** - Full working code

0 commit comments

Comments
 (0)