📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-06 16:02:57 +00:00
parent 32b074b266
commit 3b9ece8c79
299 changed files with 1063 additions and 858 deletions
@@ -321,7 +321,7 @@ async def reflection_node(state: AgentState) -> AgentState:
- Never expose API keys in generated code. All secrets must use environment variables:
```python
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY") # ✅ correct
OPENAI_API_KEY = "sk-..." # ❌ never do this
leaked_openai_token = "[redacted API key]" # ❌ never do this
```
- Always validate and sanitize user inputs before injecting them into agent prompts — treat all user input as untrusted.
- Add a permission layer before allowing agents to execute shell commands or write to filesystems.