Minimal workshop scaffold in Python and C++.
Create a .env file from the example:
cp .env.example .envFill in:
OPENAI_BASE_URLOPENAI_API_KEY
The CLI:
- Loads the
.envfile - Prints the system prompt
- Runs
pwdvia bash - Prints the command output and exit code
- Sends one
/chat/completionsrequest - Prints the JSON response
Run:
uv run agentSelect a different model:
uv run agent --model openai/gpt-oss-120bBuild and run:
cmake -B build
cmake --build build -j
build/agentSelect a different model:
build/agent --model openai/gpt-oss-120b