From 91a251e63087b06e0a57a3742ee6095975a7764f Mon Sep 17 00:00:00 2001 From: Manuel Scionti Date: Sat, 9 May 2026 03:16:26 +0200 Subject: [PATCH] docs: updated stale Getting Started example commands Signed-off-by: Manuel Scionti --- docs/getting_started.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/getting_started.md b/docs/getting_started.md index 157a2f095..0ac7345af 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -34,7 +34,7 @@ Agentics is a lightweight, Python-native framework for building structured, agen ### 🎯 Set Environment Variables -Create a `.env` file in the root directory with your environment variables. See `.env.sample` for an example. +Create a `.env` file in the root directory with your environment variables. See `.env_sample` for an example. Set Up LLM provider, Chose one of the following: @@ -78,9 +78,9 @@ ollama pull ollama/deepseek-r1:latest test hello world example (need to set up llm credentials first) ```bash -python python examples/hello_world.py -python examples/self_transduction.py -python examples/agentics_web_search_report.py +uv run python examples/hello_world.py +uv run python examples/self_transduction.py +uv run python examples/agentics_web_search_report.py ```