supermemory/apps/sdk-playground/python/pyproject.toml
Dhravya Shah 93f92cdd58 feat(sdk-playground): add interactive chat playground for SDK testing
Next.js UI with TypeScript and Python chat backends, context panel,
API key management, tools reference, and middleware configuration.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-07 19:40:34 -07:00

15 lines
380 B
TOML

[project]
name = "sdk-playground-python"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"python-dotenv>=1.0.1",
"supermemory>=3.16.0",
"openai>=1.102.0",
"supermemory-openai-sdk",
]
[tool.uv.sources]
supermemory-openai-sdk = { path = "../../../packages/openai-sdk-python", editable = true }