Skip to content
Draft
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
2 changes: 2 additions & 0 deletions packages/data_layers/postgres/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# chainlit-postgres
Native Postgres backend for Chainlit.
20 changes: 20 additions & 0 deletions packages/data_layers/postgres/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[project]
name = "chainlit-postgres"
version = "0.1.0"
description = "Native Postgres backend for Chainlit."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
]

[dependency-groups]
dev = [
"pytest-chainlit",
]

[tool.uv.sources]
pytest-chainlit = { workspace = true }

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .data_layer import PostgresDataLayer

__all__ = ["PostgresDataLayer"]
Loading
Loading