
Security News
Open VSX Begins Implementing Pre-Publish Security Checks After Repeated Supply Chain Incidents
Following multiple malicious extension incidents, Open VSX outlines new safeguards designed to catch risky uploads earlier.
trpc.group/trpc-go/trpc-agent-go/examples/graph_debugserver
Advanced tools
This example demonstrates both LLM Agent and Graph Agent working together in a debug server environment, connected to ADK Web. It showcases:
# From repository root
cd examples/graph_debugserver
# Build and start the server
go build -o graph_debugserver main.go
OPENAI_BASE_URL="https://api.deepseek.com/v1" OPENAI_API_KEY="your-api-key" ./graph_debugserver -addr :8080
# Or run directly
OPENAI_BASE_URL="https://api.deepseek.com/v1" OPENAI_API_KEY="your-api-key" go run main.go -addr :8080
-model: Name of the model to use (default: "deepseek-chat")-addr: Listen address (default: ":8080")Clone and serve the front-end:
git clone https://github.com/google/adk-web.git
cd adk-web
npm install
# Point the UI to our Go backend
npm run serve --backend=http://localhost:8080 -- --port=4200 --host=localhost
Open http://localhost:4200 in your browser. You'll see two available agents:
Ask mathematical questions like:
The Graph Agent processes mathematical expressions through a structured workflow:
User Input → LLM → Tool Call → Tool Response → Final Answer
User Input → Parse Input Node → Calculator Tool → Format Result Node → Final Answer
The workflow uses these state keys:
original_expression: The input mathematical expressionparsed_numbers: Extracted numbers from inputoperation: Mathematical operation to performmessages: LLM conversation historyuser_input: Original user inputlast_response: Most recent responseBoth agents have access to:
To customize the example:
When running, the server exposes:
POST /agent/simple-agent/chat - LLM Agent endpointPOST /agent/workflow-agent/chat - Graph Agent endpoint"stream": true in request bodyNote: The example uses DeepSeek API by default. Adjust OPENAI_BASE_URL and OPENAI_API_KEY for other providers.
FAQs
Unknown package
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Following multiple malicious extension incidents, Open VSX outlines new safeguards designed to catch risky uploads earlier.

Research
/Security News
Threat actors compromised four oorzc Open VSX extensions with more than 22,000 downloads, pushing malicious versions that install a staged loader, evade Russian-locale systems, pull C2 from Solana memos, and steal macOS credentials and wallets.

Security News
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.