Skip to content

Commit 3d80459

Browse files
committed
wip 2
1 parent 9e51aee commit 3d80459

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/update-docs.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- main
7+
- update-docs-job
78
paths:
89
- 'docs/**'
910

@@ -18,7 +19,12 @@ jobs:
1819
uses: actions/checkout@v3
1920
with:
2021
fetch-depth: 0
21-
22+
- name: Setup uv
23+
uses: astral-sh/setup-uv@v5
24+
with:
25+
enable-cache: true
26+
- name: Install dependencies
27+
run: make sync
2228
- name: Build full docs
2329
run: make build-full-docs
2430

docs/context.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ Context is an overloaded term. There are two main classes of context you might c
77

88
## Local context
99

10+
11+
TEST
12+
13+
1014
This is represented via the [`RunContextWrapper`][agents.run_context.RunContextWrapper] class and the [`context`][agents.run_context.RunContextWrapper.context] property within it. The way this works is:
1115

1216
1. You create any Python object you want. A common pattern is to use a dataclass or a Pydantic object.

0 commit comments

Comments
 (0)