-
Notifications
You must be signed in to change notification settings - Fork 1.4k
fix: openai python sdk package export #432
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: openai python sdk package export #432
Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
supermemory-app | 1c8b037 | Commit Preview URL Branch Preview URL |
Sep 20 2025, 09:52 PM |
How to use the Graphite Merge QueueAdd the label Main to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
Code Review Feedback✅ Positive Changes
🔧 Technical Issues1. Breaking Import Path (Critical)The existing tests are importing from # Current test imports (line 16)
from supermemory_openai_sdk import SupermemoryTools
# But package structure suggests:
from supermemory_openai import SupermemoryToolsRecommendation: Verify the intended import path and ensure backward compatibility. 2. Removed Version ConstantThe # This will now fail:
import supermemory_openai
print(supermemory_openai.__version__)Recommendation: Re-add version constant or use dynamic version from 3. Build Configuration IssuesThe build configuration changes may not work as expected: # Old (explicit)
[tool.hatch.build.targets.wheel]
packages = ["src"]
# New (potentially problematic)
[tool.hatch.build]
include = ["src/*"]
[tool.hatch.build.targets.wheel]
packages = ["src/supermemory_openai"]Recommendation: Test the build process to ensure the package structure is correct. 🧪 Test Coverage Concerns
Recommendations:
🛡️ Security & Best PracticesGood practices maintained:
Areas for improvement:
⚡ Performance Considerations
🔍 Additional Recommendations
|


No description provided.