diff --git a/packages/agent-framework-python/README.md b/packages/agent-framework-python/README.md index afe1f2c91..57b5d25ba 100644 --- a/packages/agent-framework-python/README.md +++ b/packages/agent-framework-python/README.md @@ -25,7 +25,7 @@ For async HTTP support (recommended): ```bash uv add supermemory-agent-framework[async] # or -pip install supermemory-agent-framework[async] +pip install 'supermemory-agent-framework[async]' ``` ## Quick Start diff --git a/packages/openai-sdk-python/README.md b/packages/openai-sdk-python/README.md index be121f9a6..7e5b68aa5 100644 --- a/packages/openai-sdk-python/README.md +++ b/packages/openai-sdk-python/README.md @@ -23,7 +23,7 @@ For async HTTP support (recommended): ```bash uv add supermemory-openai-sdk[async] # or -pip install supermemory-openai-sdk[async] +pip install 'supermemory-openai-sdk[async]' ``` ## Quick Start @@ -416,7 +416,7 @@ Optional for testing: Install with async support: ```bash -pip install supermemory-openai-sdk[async] +pip install 'supermemory-openai-sdk[async]' ``` ## Development diff --git a/skills/supermemory/references/quickstart.md b/skills/supermemory/references/quickstart.md index ca6735691..512ff1441 100644 --- a/skills/supermemory/references/quickstart.md +++ b/skills/supermemory/references/quickstart.md @@ -24,7 +24,7 @@ npm install supermemory ```bash pip install supermemory # Or for async support with aiohttp -pip install supermemory[aiohttp] +pip install 'supermemory[aiohttp]' ``` 📦 View on PyPI: [https://pypi.org/project/supermemory/](https://pypi.org/project/supermemory/) diff --git a/skills/supermemory/references/sdk-guide.md b/skills/supermemory/references/sdk-guide.md index eaa4b2d0a..c7c435b7d 100644 --- a/skills/supermemory/references/sdk-guide.md +++ b/skills/supermemory/references/sdk-guide.md @@ -21,7 +21,7 @@ pnpm add supermemory ```bash pip install supermemory # Or for async support with aiohttp -pip install supermemory[aiohttp] +pip install 'supermemory[aiohttp]' ``` 📦 View on PyPI: [https://pypi.org/project/supermemory/](https://pypi.org/project/supermemory/)