mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-11 22:51:05 +00:00
## Summary - Add `apps/sdk-playground` — chat UI to test TS/Python SDK integrations - Context panel with document memories, API keys in dashboard, tools reference tab - Python FastAPI server on port 8792; portless entry in `portless.json` Stacked on #1436 ## Test plan - [ ] `cd apps/sdk-playground && bun run check-types` - [ ] `bun run dev` with Supermemory + OpenAI keys in UI - [ ] Switch SDKs and verify chat + context panel Made with [Cursor](https://cursor.com)
16 lines
408 B
TOML
16 lines
408 B
TOML
[project]
|
|
name = "sdk-playground-python"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.115.0",
|
|
"httpx>=0.28.0",
|
|
"uvicorn[standard]>=0.32.0",
|
|
"python-dotenv>=1.0.1",
|
|
"supermemory>=3.50.0",
|
|
"openai>=1.102.0",
|
|
"supermemory-openai-sdk[async]",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
supermemory-openai-sdk = { path = "../../../packages/openai-sdk-python", editable = true }
|