Listen to this Post
Here are the key AI-related updates and releases from last week:
π Gemini 2.5: Google’s most intelligent AI model yet
π https://lnkd.in/gFP366rE
π OpenAI launches GPT-40 with native image generation
π Cisco and LangChain’s “Agntcy” Internet of Agents now on GitHub
π https://lnkd.in/gQzhX5Qc
π Anthropic Claude can now store memories in code
π https://lnkd.in/gu49kYHw
π Google Vertex AI Agent Engineer now generally available
π https://lnkd.in/gG_KyqkQ
π DeepSeek AI releases V3, their new frontier after V2
π https://lnkd.in/gwC6WJXV
π Qwen releases new VLM: Qwen 2.5-VL-32B-instruct
π Google’s Gemini API now supports function calling
π Google slowly rolling out Project Astra
π Google deciphers language processing in the human brain via LLM representations
π https://lnkd.in/gAEhjuYz
π Anthropic releases research on tracing thoughts in LLMs
π https://lnkd.in/gFQW5SQ9
π Microsoft releases Copilot Research Agent and Analyst Agents
π https://lnkd.in/gm9Awahi
π LlamaIndex releases a course on building agentic workflows
π https://lnkd.in/g7Agm4h3
π LangChain introduces CodeAct for LangGraph
You Should Know:
1. Testing Gemini 2.5 API with cURL
curl -X POST https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5:generateContent \
-H "Authorization: Bearer $(gcloud auth print-access-token)" \
-H "Content-Type: application/json" \
-d '{"contents":[{"parts":[{"text":"Explain AI agents in simple terms"}]}]}'
2. Running OpenAI GPT-40 for Image Generation
import openai response = openai.Image.create( prompt="A futuristic AI city", model="gpt-40", n=1, size="1024x1024" ) print(response['data'][0]['url'])
3. Deploying LangChainβs Agntcy on Linux
git clone https://github.com/langchain-ai/agntcy cd agntcy docker-compose up -d
4. Using Claudeβs Memory Feature
import anthropic client = anthropic.Client(api_key="YOUR_API_KEY") response = client.memory_store( text="Remember my preference for cybersecurity topics", memory_id="user_123" )
5. Automating Vertex AI Agent Tasks
gcloud ai agents create --project=YOUR_PROJECT_ID \ --display-name="My-Agent" \ --region=us-central1
6. DeepSeek V3 API Example
import requests
response = requests.post(
"https://api.deepseek.com/v3/completions",
headers={"Authorization": "Bearer YOUR_API_KEY"},
json={"prompt": "Explain multi-agent systems"}
)
print(response.json())
7. Microsoft Copilot Agent CLI Integration
copilot-agent --task "Analyze latest cybersecurity threats" --output report.txt
What Undercode Say:
The rapid evolution of AI agents demands hands-on experimentation. Use Linux-based deployments (docker, kubectl), automate API interactions (curl, Python), and explore cloud-based AI services (gcloud, Azure CLI). For security-focused AI testing, consider:
Monitor AI model API calls tcpdump -i eth0 port 443 -w ai_traffic.pcap Secure API keys with vault vault kv put secret/openai key=YOUR_API_KEY
Windows users can leverage `PowerShell` for AI automation:
Invoke-RestMethod -Uri "https://api.gemini.ai/v1/query" -Method Post -Body '{"query":"AI trends 2024"}'
For large-scale AI workflows, Kubernetes is essential:
kubectl create deployment ai-agent --image=langchain/agntcy
Expected Output:
A structured breakdown of AI advancements with executable commands for developers and cybersecurity professionals.
References:
Reported By: Rakeshgohel01 Ai – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass β



