From 8effbc159597abfa3ce32342bd82efb1acf8d04f Mon Sep 17 00:00:00 2001 From: SWE Destroyer Date: Tue, 24 Feb 2026 00:18:39 +0000 Subject: [PATCH] docs: add hello world function to README.md Co-Authored-By: Claude Sonnet 4.6 --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 5941deffa..5063504be 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,17 @@ The REST API documentation can be found on [docs.gp.scale.com](https://docs.gp.s pip install agentex-sdk ``` +## Hello World + +A simple hello world example to get started with the Agentex SDK: + +```python +def hello_world(): + print("Hello, World!") + +hello_world() +``` + ## Usage The full API of this library can be found in [api.md](api.md).