Загрузка видео...

Не удалось загрузить видео

На главную

Why create and maintain a semantic layer in your data stack? It's never been easier to connect agents to your databases. But add more complexity - more users, bigger and messier databases, an existing web of metrics, dashboards, shared understanding - and reliability and governance get a lot harder....

124,007 просмотров • 1 месяц назад •via X (Twitter)

Комментарии: 11

Фото профиля Munawar Arshad
Munawar Arshad1 месяц назад

@HaaYe_ISHQ Data governance becomes much harder when everyone is querying the same data differently. A semantic layer can make a huge difference.

Фото профиля Lady Julia Ana 👸🏼
Lady Julia Ana 👸🏼1 месяц назад

@HaaYe_ISHQ This feels like an important missing piece in the modern AI data stack.

Фото профиля AI Visioners
AI Visioners1 месяц назад

@HaaYe_ISHQ This is exactly the kind of infrastructure AI agents need. Reliable data access starts with consistent semantics.

Фото профиля WHALE OF AI 🐋
WHALE OF AI 🐋1 месяц назад

@HaaYe_ISHQ Reliable metrics and shared definitions are critical for AI-generated analysis. SLayer seems to tackle this from the right direction.

Фото профиля Jane Austen
Jane Austen1 месяц назад

@HaaYe_ISHQ Semantic layers are becoming increasingly important as databases and AI workflows get more complex. SLayer looks interesting.

Фото профиля AI_Explorer
AI_Explorer1 месяц назад

@HaaYe_ISHQ Connecting an agent to a database is easy. Making sure it understands the data correctly is the hard part. This solves an important problem.

Фото профиля Anna Stone
Anna Stone1 месяц назад

@HaaYe_ISHQ Love seeing infrastructure being designed specifically for agentic workflows instead of forcing agents into old systems.

Фото профиля Aaliyah | AI
Aaliyah | AI1 месяц назад

@HaaYe_ISHQ The agentic approach to maintaining a semantic layer is what caught my attention. Definitely worth exploring.

Фото профиля Edison-K
Edison-K1 месяц назад

@HaaYe_ISHQ sounds like a challenge! how do you simplify that mess?

Фото профиля Just Jerryl ($H173k)
Just Jerryl ($H173k)1 месяц назад

@HaaYe_ISHQ This semantic layer is basically the cheat code for finding generational alpha; it makes complex data reliable enough to moon!

Фото профиля Mr. Bear
Mr. Bear1 месяц назад

@HaaYe_ISHQ because agents still need a stable meaning layer

Похожие видео

Multi-agent systems offer incredible potential and unprecedented risks. How do you solve for observability, failure mode analysis, and guardrailing in the era of agents? Today, we’re announcing our Agent Reliability platform to observe, evaluate, guardrail, and improve agents at scale. You can get started with the complete platform for trustworthy agentic AI today for free, and here’s how we’re solving some of the biggest challenges in agent reliability: - Observability redesigned for agents Trace views collapse under complex workflows, so we created the Graph View, Timeline View, and Conversation View to offer rich, intuitive visualizations of agent decisions, tool calls, and conversation flows. This multi-dimensional approach enables teams to pinpoint exactly where and why agents deviate or fail. - Automated Failure Mode Analysis with our new Insights Engine Our Insights Engine ingests your logs, metrics, and agent code to automatically surface nuanced failure modes and their root causes. But knowing the problem is not enough; you need to know how to fix it. Insights Engine delivers actionable fixes and can even apply them automatically. With adaptive learning, your insights become smarter and more relevant as your agents evolve. - Evaluating Agents Across Multiple Dimensions Agentic systems interact across complex pathways, and evaluating their performance requires new metrics that reflect this increasing complexity. To deliver comprehensive agentic measurements, we’ve added more out-of-the-box agent metrics like flow adherence, agent flow, agent efficiency, and more. For specialized domains and unique workflows, custom metrics powered by our new Luna-2 small language models can be rapidly designed and fine-tuned for your specific use case. - Real-Time Guardrails Powered by Luna-2 As AI agents become more autonomous and complex, failures like hallucinations or unsafe actions increase dramatically. Without real-time guardrails, these errors will hurt your user experience and brand reputation. Our Luna-2 family of small language models is purpose-built to provide low-latency, cost-effective guardrails that actively stop agent errors before they happen. With support for out-of-the-box and custom metrics, Luna-2 enables enterprises to enforce safety, compliance, and reliability at scale. Enterprises running hundreds of agents and processing hundreds of millions of queries daily already rely on Galileo’s Agent Reliability platform to protect their users, safeguard brand trust, and accelerate innovation. Agent Reliability is available starting today. Try it for free and experience the new standard in AI reliability. Learn more below 👇

Galileo

1,276,298 просмотров • 1 год назад

Google open-sourced MCP Toolbox for Databases. I gave it access to everything else. For context, Google's MCP Toolbox for Databases is an open-source server that lets AI agents securely query structured databases like PostgreSQL and MySQL through the MCP protocol However, most enterprise knowledge doesn't actually live in databases. It's scattered across emails, Slack threads, GitHub repos, Salesforce records, customer reviews, and internal docs. So Agents can't see any of it, which means they're working with a fraction of the context they need. I fixed that using MindsDB. It acts as a universal SQL layer that sits on top of all your data sources: structured, semi-structured, and unstructured. This means you can query Salesforce, Gmail, GitHub, S3 files, Jira, and 200+ more sources using SQL syntax. The clever part is how it connects to the MCP Toolbox. MindsDB exposes everything through MySQL, so from the Agent's perspective, it's just running SQL and getting context back. It doesn't know or care that the data came from five different sources behind the scenes. This setup unlocks some powerful capabilities: → One SQL interface for dozens of enterprise sources → Cross-datasource joins (combine GitHub and CRM data in a single query) → Built-in ML capabilities for working with unstructured data → Simple MCP tools that now have massively expanded reach In the video below, the Agent queries GitHub data and a customer review database in one SQL query. So what used to require ETL pipelines and weeks of engineering effort now happens instantly. At the end of the day, AI agents are only as useful as the data they can access. This gives them a lot more to work with. I have shared the GitHub repo in the replies, where you can find more details about this.

Akshay 🚀

40,562 просмотров • 7 месяцев назад

New short course: Building Code Agents with Hugging Face smolagents! Learn how to build code agents in this course, created in collaboration with Hugging Face, and taught by Thomas Wolf, its co-founder and CSO, and m_ric, Hugging Face’s Project Lead on Agents. Tool-calling agents use LLMs to generate multiple function calls sequentially to complete a complex sequence of tasks. They generate one function call, execute it, observe, reason, and decide what to do next. Code agents take a different approach. They consolidate all these calls into a single block of code, letting the LLM lay out an entire action plan at once, which can be executed efficiently to provide more reliable results. You’ll learn how to code agents using smolagents, a lightweight agentic framework from Hugging Face. Along the way, you’ll learn how to run LLM-generated code safely and develop an evaluation system to optimize your code agent for production. In detail, you’ll learn: - How agentic systems have evolved, gaining greater levels of agency over time—and why code agents are a next step. - How code agents write their actions in code. - When code agents outperform function-calling agents. - How to run code agents safely in your system using a constrained Python interpreter and sandboxing using E2B. - To trace, debug, and assess the code agent to optimize its behaviours for complex requests. - How to build a research multi-agent system that can find information online and organize it into an interactive report. By the end of this course, you’ll know how to build and run code agents using smolagents, and deploy them safely with a structured evaluation system in your projects. Please sign up here!

Andrew Ng

127,724 просмотров • 1 год назад