Mat-Ai ๐Ÿš€ Welcome to MAT-AI! I'm your AI journey companion. ๐Ÿค–โœจ Let's explore Artificial Intelligence.

25/04/2025

I can't believe this is not real. This is AI.

AI videos are at a turning point:

Meet the new Kling 2.0.

โ˜‘ Create full scenes with precise object control.
โ˜‘ Restyle videos with text, image or video prompts.
โ˜‘ Edit inside the video โ€” without third-party tools.

It's not just AI video anymore.

Itโ€™s a full creative studio inside one prompt bar.

Imagine what's next for:

โ†’ animation software
โ†’ restyling apps
โ†’ 3D motion suites
โ†’ visual FX platforms

And in just one update, Kling 2.0 now has:

โ˜‘ KLING Master โ€” smoother motion, better realism
โ˜‘ Multi-element editor โ€” build entire scenes from 0
โ˜‘ KOLORS โ€” full control over lighting and textures
โ˜‘ Frame-level control โ€” to edit everything

The Pixar of AI is being built.

24/04/2025

This is next-level productivity.

Gemini now works inside Google Sheets:

1. Analyze Your Data:

โ€ข Gemini can spot trends, outliers in your data.

โ€ข Use the "Help me analyze" feature to get insights.

โ€ข It guides you on where to start and what matters most.

2. Create Tables and Formulas:

โ€ข Need a table or formula? Describe it in simple words.

โ€ข Gemini will handle the rest, saving you time and effort.

3. Generate Charts and Visualizations:

โ€ข Gemini can create charts and graphs automatically.

โ€ข Advanced options like heatmaps for deeper insights.

4. Summarize and Report:

โ€ข Summarize datasets or files from Google Drive.

โ€ข Gemini generates summaries and actionable reports.

24/04/2025

This is next-level productivity.

Gemini now works inside Google Sheets:

1. Analyze Your Data:

โ€ข Gemini can spot trends, outliers in your data.

โ€ข Use the "Help me analyze" feature to get insights.

โ€ข It guides you on where to start and what matters most.

2. Create Tables and Formulas:

โ€ข Need a table or formula? Describe it in simple words.

โ€ข Gemini will handle the rest, saving you time and effort.

3. Generate Charts and Visualizations:

โ€ข Gemini can create charts and graphs automatically.

โ€ข Advanced options like heatmaps for deeper insights.

4. Summarize and Report:

โ€ข Summarize datasets or files from Google Drive.

โ€ข Gemini generates summaries and actionable reports.

MCP vs Agent-to-Agent vs Function CallingLetโ€™s start with the 'solutions', when to use which:โœ… Use ๐— ๐—–๐—ฃ when you want you...
23/04/2025

MCP vs Agent-to-Agent vs Function Calling

Letโ€™s start with the 'solutions', when to use which:

โœ… Use ๐— ๐—–๐—ฃ when you want your model to be context-aware โ€” knowing the user, tools, memory, rules, and task

โœ… Use ๐—™๐˜‚๐—ป๐—ฐ๐˜๐—ถ๐—ผ๐—ป ๐—–๐—ฎ๐—น๐—น๐—ถ๐—ป๐—ด when the model needs to do something โ€” search, fetch, trigger, retrieve

โœ… Use ๐—”๐Ÿฎ๐—” ๐—ฝ๐—ฟ๐—ผ๐˜๐—ผ๐—ฐ๐—ผ๐—น when your system needs multiple agents to collaborate, each with their own role and responsibility

Now, time for their stories!๐Ÿฃ

โž ๐— ๐—–๐—ฃ (๐— ๐—ผ๐—ฑ๐—ฒ๐—น-๐—–๐—ผ๐—ป๐˜๐—ฒ๐˜…๐˜ ๐—ฃ๐—ฟ๐—ผ๐˜๐—ผ๐—ฐ๐—ผ๐—น)
In short, itโ€™s a way to give LLMs a structured understanding of the world around them:
who the user is, what tools are available, what memory to retain.

Itโ€™s context-as-code, not just context-as-prompt.
(I shared more in my last post, Iโ€™ll drop the link in the comments)

But MCP is just one part of the picture.

โž ๐—”๐—ด๐—ฒ๐—ป๐˜-๐˜๐—ผ-๐—”๐—ด๐—ฒ๐—ป๐˜ ๐—ฃ๐—ฟ๐—ผ๐˜๐—ผ๐—ฐ๐—ผ๐—น๐˜€
This is about how multiple agents communicate with each other, not just the user anymore.

Instead of one big model doing everything, you break the task into smaller parts handled by different agents. They take on roles, pass tasks, and coordinate to solve more complex goals.

You might have a flow like:
- Planner agent: โ€œYou handle the research.โ€
- Research agent: โ€œHereโ€™s what I found.โ€
- Writer agent: โ€œGreat, Iโ€™ll start drafting.โ€

In most current systems, this is done through direct message passing, often one agent at a time, with fairly simple, turn-based logic.

The structure is usually custom and manually defined,
it's effective, but still early-stage.
Thatโ€™s why more standardization is starting to emerge, to make these systems more modular and scalable.

โž ๐—™๐˜‚๐—ป๐—ฐ๐˜๐—ถ๐—ผ๐—ป ๐—–๐—ฎ๐—น๐—น๐—ถ๐—ป๐—ด
This is probably the one weโ€™re most familiar with.

Itโ€™s when a model doesnโ€™t just respond with text โ€” it actually calls a tool.

Like when it says, โ€œLet me look that up,โ€ and triggers something like
search_web(query="...")

Itโ€™s how LLMs interact with APIs, databases, calendars, emails - basically anything external.

Function calling turns LLMs from passive responders into real action-takers.

๐Ÿ“MCP, A2A, Functional calling...
theyโ€™re not competing,
theyโ€™re ๐—ฏ๐˜‚๐—ถ๐—น๐—ฑ๐—ถ๐—ป๐—ด ๐—ฏ๐—น๐—ผ๐—ฐ๐—ธ๐˜€.

๐Ÿ’กAnd in practice, the most capable systems donโ€™t choose one, they combine all three.

MCP provides the structured context,
Function Calling connects agents to real tools,
A2A protocols coordinate the work across roles.

This layered approach is what powers the next generation of intelligent systems:
context-aware, tool-using, and multi-agent by design.

__________
I share my journey into AI here, join me and let's grow together.

22/04/2025

Want to quickly prototype a stylized game world for your project? I did this exercise to see how I could personally stretch our 3D toolchain. It's easier than you think! ๐ŸŽฎ

1๏ธโƒฃ To create the stylized room layout, I utilized Common Sense Machines's Chat to 3D feature, removing all objects except the walls. This tool excels at specifically removing and modifying objects within a scene. The underlying model powering this process is Gemini 2.0 native image, integrated with CSM's 3D pipeline.

2๏ธโƒฃ For decomposing the entire scene into individual components, GPT4o is currently the best image model available. You can easily input your original inspiration image along with this prompt: "generate all objects on a sheet, isolated, for image to 3D." Afterward, use Common Sense Machines's parts-based tool to generate all assets independently.

3๏ธโƒฃ With all the stylized assets and parts ready, I employed CSM's MCP add-on (https://lnkd.in/eQFaga6D) within Cursor, though any other client such as Claude Desktop will also work. I prefer Cursor as it integrates well with my other projects, allowing me to save prompts, create helper scripts, and write instruction READMEs for larger tasks.

4๏ธโƒฃ Once satisfied with the scene arrangement, I leveraged the text-to-animation feature available in CSM's MCP release. This enabled me to animate the robot, performing various actions that I could then seamlessly recompose into the final scene.

Visualizing Global AI Investment by Country ๐Ÿค–This visualization is part of AI Week, sponsored by Terzo, and uses data fr...
22/04/2025

Visualizing Global AI Investment by Country ๐Ÿค–
This visualization is part of AI Week, sponsored by Terzo, and uses data from the 2025 AI Index Report to reveal which countries are placing the biggest bets on AI. From the United States and China dominating the leaderboard, to surprising climbs from smaller European and Asian nations, itโ€™s clear that AI isnโ€™t just the future, itโ€™s the focus of todayโ€™s national strategies. Unfortunately, and much of the African continent is nowhere near the top, which means weโ€™re at risk of being left out of the next wave of innovation and economic opportunity.
So, what can we do to change this?
1. Drive Publicโ€“Private Collaboration: Governments, venture capital, and local enterprises need to unite around clear AI roadmaps with real funding for startups, data infrastructure, and pilot projects.
2. Invest in Skills & Research: Letโ€™s expand AI curricula at our universities, sponsor research chairs, and create more hands on labs so our talent can build world class models and applications.
3. Foster Pan African Ecosystems: By pooling resources across borders sharing data, co investing in regional incubators, and harmonizing regulation, we can reach the scale needed to compete globally.
4. Champion Inclusive Policy: Advocating for open data policies, ethical frameworks, and startup friendly regulations will help level the playing field for innovators everywhere.
AI is too powerful and transformative to be the preserve of a few. If we want Africa to lead in the Fourth Industrial Revolution, we must start by making bold, coordinated investments today. What ideas or initiatives have you seen that are already moving us forward? Letโ€™s share, collaborate, and invest in our collective future. ๐ŸŒ๐Ÿ’ก

All courses are free to enroll, except the two from Google. I use Coursera, but you can also find them by searching the ...
21/04/2025

All courses are free to enroll, except the two from Google. I use Coursera, but you can also find them by searching the course names on other platforms.
PS. Coursera is offering a 40% off on their subscription, time limited. Worth checking: https://lnkd.in/gs49PT5S
Courses links below:
IBM:
https://bit.ly/4ifVngy
https://lnkd.in/g5xCkqj9
https://lnkd.in/g_NcVdiT
AWS + DL:
https://lnkd.in/ggbmy2xG
Vanderbilt:
https://lnkd.in/gnmh_rgt
https://lnkd.in/gD6NNtEd
Google:
https://lnkd.in/gvYMFjJ3
https://lnkd.in/gS_Dpwux
The numbers (1, 2, 3) are just there to show the general depth and length of each course, not the orders.
If you plan to go through, such as, IBMโ€™s Generative AI Engineering course (Course 2), no need to take GenAI Prompt Engineering first, since that content is already covered in the Engineering course. Same idea applies to the others.
Both IBM Course 2 and 3 are practical and job-focused. But course 2 is more laser-focused on GenAI, especially NLP; while Course 3 touches on a wider range of topics like computer vision, cloud computing, etc.
All of these are beginner-friendly, except Generative AI with Large Language Models. Itโ€™s only 16 hours, but itโ€™s best if you already have some Python experience and a basic idea of how LLMs work. Still a really solid option if you want to go a bit deeper.
Happy learning!
__________
I share my journey into AI here, join me and let's grow together.

All courses are free to enroll, except the two from Google. I use Coursera, but you can also find them by searching the ...
21/04/2025

All courses are free to enroll, except the two from Google. I use Coursera, but you can also find them by searching the course names on other platforms.

PS. Coursera is offering a 40% off on their subscription, time limited. Worth checking: https://lnkd.in/gs49PT5S

Courses links below:

IBM:
https://bit.ly/4ifVngy
https://lnkd.in/g5xCkqj9
https://lnkd.in/g_NcVdiT

AWS + DL:
https://lnkd.in/ggbmy2xG

Vanderbilt:
https://lnkd.in/gnmh_rgt
https://lnkd.in/gD6NNtEd

Google:
https://lnkd.in/gvYMFjJ3
https://lnkd.in/gS_Dpwux

The numbers (1, 2, 3) are just there to show the general depth and length of each course, not the orders.

If you plan to go through, such as, IBMโ€™s Generative AI Engineering course (Course 2), no need to take GenAI Prompt Engineering first, since that content is already covered in the Engineering course. Same idea applies to the others.

Both IBM Course 2 and 3 are practical and job-focused. But course 2 is more laser-focused on GenAI, especially NLP; while Course 3 touches on a wider range of topics like computer vision, cloud computing, etc.

All of these are beginner-friendly, except Generative AI with Large Language Models. Itโ€™s only 16 hours, but itโ€™s best if you already have some Python experience and a basic idea of how LLMs work. Still a really solid option if you want to go a bit deeper.

Happy learning!
__________
I share my journey into AI here, join me and let's grow together.

Address

Kabega Park
Port Elizabeth
6025

Alerts

Be the first to know and let us send you an email when Mat-Ai posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Contact The Business

Send a message to Mat-Ai:

Share