Skip to content

Fix typo and support install from source #74

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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
17 changes: 17 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[project]
name = "memobase"
version = "0.1.0"
description = "MemoBase client"
readme = "README.md"
requires-python = ">=3.8"

[project.urls]
Homepage = "https://example.com"

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
package-dir = {"" = "src/client"}
packages = ["memobase"]
1 change: 1 addition & 0 deletions src/client/memobase/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
__version__ = "0.0.17"
__url__ = "https://github.com/memodb-io/memobase"
__license__ = "Apache-2.0"
__all__ = ["MemoBaseClient", "User", "ChatBlob", "Memobase", "AsyncMemoBaseClient", "AsyncUser"]
4 changes: 2 additions & 2 deletions src/server/api/memobase_server/prompts/merge_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,12 @@
## Old Memo
User need to prepare for the interview in 2025-03-21[mentioned on 2025-03-11]
## New Memo
User need to develop a Memobase Playgeound App before 2025-05-01[mentioned on 2025-04-05]
User need to develop a Memobase Playground App before 2025-05-01[mentioned on 2025-04-05]
""",
"response": """User can have multiple current working plans, I can merge the two plans.
But based on the requirements, the old memo is outdated(today is 04-05, but the interview is in 03-21), so I need to discard the old memo.
---
- UPDATE{tab}User need to develop a Memobase Playgeound App before 2025-05-01[mentioned on 2025-04-05]
- UPDATE{tab}User need to develop a Memobase Playground App before 2025-05-01[mentioned on 2025-04-05]
""",
},
],
Expand Down