Skip to content

Commit c0aa602

Browse files
authored
Merge pull request #8 from dmaniloff/opening-post
2 parents c5e051b + a80733e commit c0aa602

File tree

2 files changed

+188
-0
lines changed

2 files changed

+188
-0
lines changed

src/components/TeamGrid.astro

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
---
2+
interface TeamMember {
3+
name: string;
4+
avatar: string;
5+
slug: string;
6+
}
7+
8+
interface Props {
9+
members: TeamMember[];
10+
}
11+
12+
const { members } = Astro.props;
13+
---
14+
15+
<div class="team-grid">
16+
{members.map((member) => (
17+
<a href={`/authors/${member.slug}`} class="team-member">
18+
<div class="member-avatar">
19+
<img src={member.avatar} alt={`${member.name} avatar`} />
20+
</div>
21+
<div class="member-info">
22+
<h3 class="member-name">{member.name}</h3>
23+
</div>
24+
</a>
25+
))}
26+
</div>
27+
28+
<style>
29+
.team-grid {
30+
display: grid;
31+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
32+
gap: 2rem;
33+
margin: 2rem 0;
34+
}
35+
36+
.team-member {
37+
display: flex;
38+
flex-direction: column;
39+
align-items: center;
40+
text-align: center;
41+
padding: 1.5rem;
42+
border-radius: 12px;
43+
background: rgba(var(--accent), 0.05);
44+
border: 1px solid rgba(var(--accent), 0.1);
45+
transition: all 0.3s ease;
46+
text-decoration: none;
47+
color: inherit;
48+
}
49+
50+
.team-member:hover {
51+
transform: translateY(-4px);
52+
box-shadow: 0 8px 25px rgba(var(--accent), 0.15);
53+
border-color: rgba(var(--accent), 0.2);
54+
text-decoration: none;
55+
color: inherit;
56+
}
57+
58+
.member-avatar {
59+
width: 120px;
60+
height: 120px;
61+
border-radius: 50%;
62+
overflow: hidden;
63+
margin-bottom: 1rem;
64+
border: 3px solid rgba(var(--accent), 0.2);
65+
}
66+
67+
.member-avatar img {
68+
width: 100%;
69+
height: 100%;
70+
object-fit: cover;
71+
}
72+
73+
.member-name {
74+
font-size: 1.25rem;
75+
font-weight: 600;
76+
margin: 0;
77+
color: rgb(var(--black));
78+
}
79+
80+
@media (max-width: 768px) {
81+
.team-grid {
82+
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
83+
gap: 1.5rem;
84+
}
85+
86+
.team-member {
87+
padding: 1rem;
88+
}
89+
90+
.member-avatar {
91+
width: 100px;
92+
height: 100px;
93+
}
94+
}
95+
</style>
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
---
2+
title: "Welcome to TrustyAI: Making AI Safety Practical and Accessible"
3+
description: "Hello and welcome to the TrustyAI blog! We're excited to launch it and share our journey toward creating trustworthy artificial intelligence."
4+
pubDate: 2025-06-25
5+
heroImage: "/blog-placeholder-1.jpg"
6+
authors: ['trustyai-team']
7+
track: "community"
8+
---
9+
10+
import TeamGrid from '../../../components/TeamGrid.astro';
11+
12+
Hello and welcome to the TrustyAI blog! We're excited to launch it and share our journey toward creating trustworthy artificial intelligence.
13+
14+
## **Why Are We Here?**
15+
16+
In today's rapidly evolving technological landscape, AI is becoming an integral part of our lives, powering everything from daily apps to complex systems in healthcare, finance, and beyond. While this is exciting, the focus on "what AI can do" has overshadowed "how it can do it safely," creating a gap that researchers call an **"alignment tax"** - the extra cost to ensure AI systems behave as intended. Without proper tools and frameworks, the alignment tax compounds over time, placing an increasing burden on developers and organizations.
17+
18+
The opportunity lies in transforming AI safety from an expensive afterthought into an integrated practice that enables – rather than hinders – innovation. That's where TrustyAI comes in:
19+
20+
_We aim to make AI safety both practical and accessible. **Practical** in the sense that you can implement it today, reducing complexity to facilitate adoption by developers and organizations in real-world environments, and **Accessible** in the sense that our tools are open source and free from vendor lock-in._
21+
22+
More specifically, we aim to make AI **trustworthy** - a term we choose deliberately because "AI safety" means different things to different stakeholders. **Trustworthy** **AI** provides a unified framework that transforms how the industry approaches AI development:
23+
24+
- **AI Security** becomes seamlessly integrated, protecting systems from external threats, preventing adversarial attacks and data breaches, and ensuring integrity and confidentiality through robust defense mechanisms that don't slow innovation.
25+
- **Responsible AI** shifts from compliance checkbox to a competitive advantage, enabling ethical development and deployment by addressing bias, ensuring fairness, and promoting transparency and accountability in how AI systems make decisions - creating products users actually trust.
26+
- **AI Safety** evolves from theoretical concern to practical reality, preventing unintended harmful consequences by ensuring AI systems behave predictably and align with human values, even as they become more capable.
27+
28+
## **The Hats That We Wear**
29+
30+
The TrustyAI team wears two hats: **engineering** and **community**. With our engineering hat on, we build tools for
31+
32+
- **Explainability** to help practitioners understand individual predictions and overall model behavior;
33+
- **Evaluation** to be the central hub for AI evaluation, offering a unified API to access popular benchmarking, red-teaming frameworks for LLMs and agentic systems;
34+
- **Guardrails** to implement protection against different attacks and also uphold an organization's standards, policies, and values; and
35+
- **Agentic Trustworthiness** to establish thought leadership through dedicated research and development.
36+
37+
Crucially, we bring a holistic view of how these tools work together, and provide consistent APIs across diverse targets and platforms. This way, you might evaluate your model for specific risks, then implement protective measures such as content filtering based on the results, and finally confirm effectiveness through another round of evaluation. Or, use observability traces as inputs to explainability tools to understand not just what your model decided, but why.
38+
39+
With **our community hat** on, we are committed to developing open source tools that enable trustworthy AI without vendor lock-in, sharing knowledge through research findings and educational content, and participating in communities of researchers, developers, policymakers, and users.
40+
41+
## **Our Goals and Vision**
42+
43+
Our goal is to provide practitioners with production-ready trustworthy AI components that work seamlessly together, eliminating the need to cobble together disparate tools or build everything from scratch.
44+
45+
We envision a future in which trustworthy AI development becomes inherently collaborative and accessible. Rather than each organization solving AI safety in isolation, we create shared infrastructure and knowledge that elevates the entire ecosystem, making safe AI deployment the default rather than the exception.
46+
47+
## **Meet The Team**
48+
49+
<TeamGrid members={[
50+
{
51+
name: "Christina Xu",
52+
avatar: "/authors/christina-xu.jpg",
53+
slug: "christina-xu"
54+
},
55+
{
56+
name: "Diego",
57+
avatar: "/authors/diego.jpg",
58+
slug: "diego"
59+
},
60+
{
61+
name: "Evaline",
62+
avatar: "/authors/evaline.JPG",
63+
slug: "evaline"
64+
},
65+
{
66+
name: "Mac Misiura",
67+
avatar: "/authors/mac.jpg",
68+
slug: "mac"
69+
},
70+
{
71+
name: "Rob Geada",
72+
avatar: "/authors/rob-geada.jpg",
73+
slug: "rob-geada"
74+
},
75+
{
76+
name: "Rui Vieira",
77+
avatar: "/authors/rui-vieira.jpg",
78+
slug: "rui-vieira"
79+
},
80+
{
81+
name: "Sai Chandra Pandraju",
82+
avatar: "/authors/sai-chandra.jpg",
83+
slug: "sai-chandra"
84+
}
85+
]} />
86+
87+
## **Join Our Journey**
88+
89+
We invite you to join us on this exciting journey. Whether you're an AI enthusiast, a developer, or simply someone curious about the future of technology, we believe you'll find valuable insights and resources here.
90+
91+
Stay tuned for our upcoming posts, where we'll delve deeper into our projects, methodologies, and the latest developments in trustworthy AI.
92+
93+
Thank you for being a part of the TrustyAI community!

0 commit comments

Comments
 (0)