- AI Agents Report
- Posts
- Google Co-Founder Larry Page Launches Dynatomics
Google Co-Founder Larry Page Launches Dynatomics
Build AI Agents with Botpress Studio

Hey,
Welcome to AI Agents Report – your essential guide to mastering AI agents.
Get the highest-quality news, tutorials, papers, models, and repos, expertly distilled into quick, actionable summaries by our human editors. Always insightful, always free.
In Today’s Report:
🕒 Estimated Reading Time: 5 minutes 15 seconds
📌 Top News:
Google Co-Founder Larry Page Launches Dynatomics, an AI startup focused on integrating AI-driven automation into next-generation manufacturing.
⚡️Trending AI Reports:
AI-Powered Drug Discovery: Insilico Medicine has received approval for its AI-driven drug, Rentosertib, marking a significant advancement in AI-assisted pharmaceutical development.
Meta Expands Voice-Powered AI with LLaMA 4: Meta has unveiled LLaMA 4, a new voice-powered AI model designed to enhance AI assistants, automated customer service, and real-time translation capabilities.
Shield AI Raises $240M for AI-Powered Autonomy: Shield AI has secured $240 million in funding to expand its AI-powered autonomy platform, Hivemind Enterprise, which enables autonomous military aircraft operations.
💻 Top Tutorials:
Building AI Agents with CrewAI Framework: Learn how to create AI agents using the CrewAI framework, focusing on task orchestration and agent development. This tutorial covers setting up a project, defining tasks, and integrating AI models like GPT-4o9.
Creating AI Agents with Botpress Studio: Discover how to build AI agents using Botpress Studio, emphasizing autonomous nodes and structured flows. This guide helps you create agents that can make decisions independently5.
AI Agent Development with Accenture’s AI Refinery: Explore Accenture’s AI Refinery platform, which allows users to build and customize AI agents without coding. This tutorial covers creating industry-specific solutions using NVIDIA reasoning models12.
🛠️ How-to:
Build Your First AI Agent in 30 minutes with Copilotkit: By leveraging CopilotKit and LangGraph these tools, you can integrate AI capabilities into your applications without extensive coding knowledge.
📰 BREAKING NEWS

Image source: Dev Community
Overview
Larry Page, the co-founder of Google, has launched Dynatomics, a startup focused on integrating AI into product manufacturing. Dynatomics aims to revolutionize the manufacturing industry by leveraging AI to generate highly optimized product designs that can be manufactured at scale. This approach aligns with the broader trend of using AI to enhance efficiency and precision in manufacturing.
Key Features of Dynatomics:
AI-Powered Design: Dynatomics uses AI to create optimized designs for manufacturing, potentially reducing production time and costs.
Industry Impact: The startup's technology could significantly impact industries like automotive and aerospace by improving design-to-manufacturing workflows.
Leadership: Led by Chris Anderson, former CTO of Kittyhawk, Dynatomics is in stealth mode but has already garnered attention for its innovative approach.
If you find AI Agents Report insightful, pass it along to a friend or colleague who might too!
⚡️TRENDING AI REPORTS

Image source: T
Insilico Medicine has developed Rentosertib, the first drug where both the target and compound were discovered using generative AI. This breakthrough marks a significant milestone in AI-driven drug discovery, offering a new approach to treating idiopathic pulmonary fibrosis (IPF).
Key Points:
AI-Driven Discovery: Rentosertib was developed using Insilico's Pharma.AI platform, which analyzed vast datasets to identify a promising target and design the compound.
Clinical Progress: The drug has shown positive results in Phase II trials, demonstrating safety and efficacy in improving lung function for IPF patients.
Future Prospects: Rentosertib could become the first AI-discovered therapy to reach patients, potentially transforming the treatment landscape for IPF.
Meta is set to release LLaMA 4, an AI model designed to enhance conversational AI capabilities with native speech processing. This model aims to support more natural and fluid dialogue between users and AI assistants.
Key Features:
Omni Model Capabilities: LLaMA 4 allows for native speech interpretation and output, improving multilingual support and contextual understanding.
Potential Applications: The model could revolutionize voice-powered AI assistants, enabling more interactive and responsive user experiences.
Integration with Meta Ecosystem: LLaMA 4 will integrate with Meta's broader ecosystem, including smart glasses, to enhance user interaction.
Shield AI has secured significant funding to expand its AI-powered autonomy platform, Hivemind Enterprise. This platform supports the development of autonomous systems for defense applications.
Key Points:
Hivemind Enterprise: The platform provides modular and scalable AI software for unmanned systems, enabling autonomous operations in challenging environments.
Partnerships: Shield AI is partnering with companies like Korea Aerospace Industries (KAI) to integrate its technology into future air combat platforms.
Autonomy Capabilities: Hivemind Enterprise supports functions like perception, action, and cognition, allowing for advanced autonomous behaviors.
💻 TOP TUTORIALS

Image source: Medium
This tutorial focuses on creating AI agents using the CrewAI framework, which automates complex tasks with minimal human input. CrewAI integrates adaptive workflows and real-time data analysis to enhance agent capabilities.
Key Steps:
Define Agent Roles: Identify the tasks and goals for each AI agent.
Set Up CrewAI: Use the CrewAI framework to manage workflows and integrate tools.
Iterative Improvements: Continuously refine agent performance through iterative testing and feedback.
Botpress Studio allows users to build AI agents without coding, using a drag-and-drop interface to design workflows and integrate knowledge bases.
Key Steps:
Set Up the Project: Create a new project in Botpress Studio and select a template.
Add a Knowledge Base: Integrate external data sources to enhance agent responses.
Deploy the Agent: Publish and test your AI agent across various platforms.
Accenture's AI Refinery platform enables users to create customized AI agents without coding. This platform leverages Nvidia's AI Enterprise software to support rapid agent development.
Key Features:
Preconfigured Agents: Use existing templates to build new agents quickly.
Customization: Adapt agents to changing business needs with minimal technical expertise.
Integration: Deploy agents across major cloud platforms and integrate with third-party tools. HOW TO TUTORIAL
🎥 HOW TO
Overview: This tutorial guides you through creating a fully functional AI agent using CopilotKit and LangGraph in just 30 minutes. By leveraging these tools, you can integrate AI capabilities into your applications without extensive coding knowledge.
Step 1: Introduction to AI Agents and Prerequisites
Understanding AI Agents: AI agents are autonomous software programs that perform tasks and interact with their environment using AI. They can conduct research, process information, and engage with humans.
Prerequisites:
Basic understanding of React or Next.js.
Python installed on your computer.
Access to LangGraph and OpenAI API keys.
Step 2: Clone the Starter Repository
Clone CoAgents Starter Repository: Use the following command to clone the CoAgents starter repository from CopilotKit's GitHub:
git clone https://github.com/CopilotKit/CopilotKit cd CopilotKit/examples/coagents-starter/agent-py
Directory Structure: The cloned repository includes directories for the LangGraph agent (
agent
) and the frontend application (ui
).
Step 3: Set Up the Frontend
Create a New Next.js App (Optional): If you don't have a frontend, create a new Next.js app with TypeScript:
npx create-next-app@latest ui --typescript
Install CopilotKit Packages: Install the necessary CopilotKit packages for React integration:
npm install @copilotkit/react-ui @copilotkit/react-core
Run the Frontend: Start the frontend application using:
pnpm run dev
Step 4: Configure the LangGraph Agent
Install Dependencies: Navigate to the
agent-py
directory and install dependencies using Poetry:cd agent/agent-py poetry install
Start the LangGraph Agent: Use the LangGraph SDK to start the agent. This will provide an API URL for integration with CopilotKit.
Step 5: Integrate with CopilotKit
Create a Tunnel: Use the following command to create a tunnel for the LangGraph agent, ensuring Copilot Cloud can connect to it:
npx copilotkit@latest dev --port <port_number>
Configure API Keys: Set up environment variables for OpenAI, Copilot Cloud, and LangSmith API keys in a
.env
file.
Step 6: Build the UI with CopilotKit
Wrap with CopilotKit Provider: In your React app, wrap the relevant components with the
<CopilotKit>
component to integrate the AI agent:import { CopilotKit } from "@copilotkit/react-core"; export default function RootLayout({ children }) { return ( <html> <body> <CopilotKit publicApiKey={process.env.NEXT_PUBLIC_COPILOT_CLOUD_API_KEY} agent="agent" > {children} </CopilotKit> </body> </html> ); }
Step 7: Test Your AI Agent
Run the Application: Start both the frontend and the LangGraph agent. Interact with your AI agent through the UI to see it in action.
Thanks for sticking around…
That’s all for now—catch you next time!

What did you think of today’s AI Agents Report?Share your feedback below to help us make it even better! |
Have any thoughts or questions? Feel free to reach out at community@aiagentsreport.com – we’re always eager to chat.
P.S.: Do follow me on LinkedIn and enjoy a little treat!
Jahanzaib
Reply