You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-10Lines changed: 3 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,16 +38,11 @@ A minimal Reason-and-Act (ReAct) agent for knowledge retrieval, implemented with
38
38
-**[1.1 ReAct Agent for RAG](src/1_basics/1_react_rag/README.md)**
39
39
Basic ReAct agent for step-by-step retrieval and answer generation.
40
40
41
-
42
41
## Getting Started
43
42
44
-
Set your API keys in `.env`. Use `.env.example` as a template.
45
-
46
-
```bash
47
-
cp -v .env.example .env
48
-
```
43
+
If you successfully created a workspace in Coder, you should already have a `.env` file in the repo.
49
44
50
-
Run integration tests to validate that your API keys are set up correctly.
45
+
In that case you can verify that the API keys work by running integration tests with the following command:
51
46
52
47
```bash
53
48
uv run --env-file .env pytest -sv tests/tool_tests/test_integration.py
@@ -91,7 +86,6 @@ As noted above, these are unnecessarily verbose for real applications.
91
86
# uv run --env-file .env gradio src/1_basics/1_react_rag/app.py
92
87
```
93
88
94
-
95
89
### 2. Frameworks
96
90
97
91
Reason-and-Act Agent without the boilerplate- using the OpenAI Agent SDK.
@@ -105,15 +99,14 @@ Multi-agent examples, also via the OpenAI Agent SDK.
105
99
106
100
```bash
107
101
uv run --env-file .env gradio src/2_frameworks/2_multi_agent/efficient.py
108
-
# Verbose option- greater control over the agent flow, but less flexible.
102
+
# Verbose option- greater control over the agent flow, but less flexible.
109
103
# uv run --env-file .env gradio src/2_frameworks/2_multi_agent/verbose.py
110
104
```
111
105
112
106
Python Code Interpreter demo- using the OpenAI Agent SDK, E2B for secure code sandbox, and LangFuse for observability. Refer to [src/2_frameworks/3_code_interpreter/README.md](src/2_frameworks/3_code_interpreter/README.md) for details.
113
107
114
108
MCP server integration example also via OpenAI Agents SDK with Gradio and Langfuse tracing. Refer to [src/2_frameworks/4_mcp/README.md](src/2_frameworks/4_mcp/README.md) for more details.
0 commit comments