Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -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

```

Expand Down
Loading