Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions PyBay/content/code-of-conduct/code-of-conduct-policy/contents.lr
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
_model: redirect
---
target: /code-of-conduct
_model: page
---
_slug: code-of-conduct-policy
---
short: Code Of Conduct Policy
---
title: CoC Redirect
title: Code Of Conduct Policy
---
body:

<p>PyBay’s Code of Conduct is maintained on the BAPyA website.</p>

<p>Please use the link below to view the current version.</p>

<p>
<a class="btn btn-secondary btn-lg" target="_blank" rel="noopener noreferrer" href="https://www.bapya.org/coc">Read the full Code of Conduct on BAPyA (external site)</a>
</p>

This file was deleted.

2 changes: 0 additions & 2 deletions PyBay/content/code-of-conduct/contents.lr
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ Speakers, presenters, and open space organizers</p>

<p>If you believe that someone is violating the Code of Conduct during one of our events, please contact the CoC team immediately by emailing us at conduct@pybay.com.</p>

<p>To help us respond in the best way to the situation, please follow the Code of Conduct Reporting. The CoC representatives employ the Code of Conduct Response to handle reports.</p>

<p>If you believe a member of staff is violating our Code of Conduct, please reach out to one of the conference chairs, Slava (slavabal@gmail.com) or Hemanti (hemantisd@gmail.com).</p>

<p>All reports will be kept confidential where legally possible. In some cases a public statement might be required (for example in a CoC transparency report following conferences), but these reports are anonymized and do not include any personally identifying information. In the event of involvement with law enforcement, we will comply with their requests as legally required.
Expand Down
22 changes: 11 additions & 11 deletions PyBay/content/speaking/workshops/contents.lr
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ Reserve your spot when you buy your ticket. If you have already bought a ticket,

<br>

#####Workshop 1: Azure Database for PostgreSQL workshop#####
######Time: 10:30am - 12:30pm######
######Title: Build Agentic AI with Semantic Kernel and Graph RAG on PostgreSQL######
######Abstract######
## Workshop 1: Azure Database for PostgreSQL workshop
### Time: 10:30am - 12:30pm
### Title: Build Agentic AI with Semantic Kernel and Graph RAG on PostgreSQL
### Abstract
In this hands-on lab, you will build an agent-driven Retrieval-Augmented Generation (RAG) application using a U.S. Case Law dataset. You will work with Azure Database for PostgreSQL, Visual Studio Code, and the Semantic Kernel Agent Framework to explore AI-powered text and vector search. The lab also introduces GraphRAG with Apache AGE, enabling enriched querying across structured and graph-based data. By the end, you'll gain practical skills in semantic search, vector indexing, and intelligent data retrieval.
######Topics Covered######
### Topics Covered
Setup your Azure PostgreSQL Database<br>
Launch PSQL Command Line Shell in VS Code<br>
Using AI-driven features in Postgres<br>
Expand All @@ -28,12 +28,12 @@ Semantic Agent Configuration and Plugin Assembly<br>

<br>

#####Workshop 2: Azure Cosmos DB workshop#####
######Time: 1:30pm - 3:30pm######
######Title: Building a Full-Stack FastAPI App with Open Source DocumentDB via Docker######
######Abstract######
## Workshop 2: Azure Cosmos DB workshop
### Time: 1:30pm - 3:30pm
### Title: Building a Full-Stack FastAPI App with Open Source DocumentDB via Docker
### Abstract
This hands-on lab guides you through the process of building a modern, full-stack web application using FastAPI for the backend and open source DocumentDB as the database, all orchestrated with Docker containers. Attendees will learn how to rapidly prototype and deploy scalable Python APIs, leverage containerization for consistent development and testing, and integrate with DocumentDB for flexible, cloud-ready data storage.
######Topics covered######
### Topics covered
Setting up a FastAPI backend and connecting it to DocumentDB using Docker Compose.<br>
Best practices for local development, testing, and CI/CD integration with Docker.<br>
How open source DocumentDB enables rapid iteration and seamless migration to cloud environments.<br>
Expand All @@ -43,7 +43,7 @@ By the end of the lab, you’ll have a working application, a deeper understandi

<br>

####Workshop Sponsor: Microsoft Azure Databases####
## Workshop Sponsor: Microsoft Azure Databases
Azure enriches the database platforms that Python developers rely on to build intelligent apps and agents with less friction. Our fully-managed database services come backed with industry-leading security, compliance and reliability and are equipped with advanced features to support modern workloads. Azure Cosmos DB is a serverless and scalable, low-latency NoSQL database with built-in vector and hybrid search, perfect for powering AI, RAG pipelines, and multi-agent systems. Azure Database for PostgreSQL combines the power of open-source Postgres with enterprise-ready scale and security, is infused with genAI capabilities and natively supports vector data and advanced RAG techniques. And with DocumentDB—our new open-source, MongoDB-compatible engine—you get flexibility and choice backed by the Linux Foundation. All three services integrate seamlessly with Python SDKs and tools, so you can build apps, APIs, and AI workloads faster, without worrying about infrastructure.

<br>
Expand Down
12 changes: 11 additions & 1 deletion PyBay/templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -295,10 +295,20 @@
color: #ffefb0 !important;
}

body.coc-policy-page {
min-height: 100vh;
display: flex;
flex-direction: column;
}

body.coc-policy-page #main {
flex: 1;
}

</style>
</head>

<body>
<body{% if this._path == '/code-of-conduct/code-of-conduct-policy' %} class="coc-policy-page"{% endif %}>
<!-- Bootstrap 5.3.3 JS Bundle (includes Popper.js) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>

Expand Down