memorysync 1.0.0__tar.gz → 1.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,45 @@
1
+ # ==============================================================================
2
+ # MemorySync — Git Ignore Rules (Transparency-First Philosophy)
3
+ # ==============================================================================
4
+
5
+ # -------------------------
6
+ # Category 1: Secrets & Credentials (NEVER COMMIT)
7
+ # -------------------------
8
+ .env
9
+ .env.*
10
+ !memorysync-benchmark/longmemeval/.env.example
11
+ *.pem
12
+ *.key
13
+ *.crt
14
+ secrets/
15
+
16
+ # -------------------------
17
+ # Category 2: User / Customer / Private Data (NEVER COMMIT)
18
+ # -------------------------
19
+ uploads/
20
+ backups/
21
+ storage/
22
+ chroma/
23
+ chroma_data/
24
+ *.db
25
+ *.sqlite
26
+ *.sqlite3
27
+ *.dump
28
+ *.bak
29
+
30
+ # -------------------------
31
+ # Category 3: Massive Dependency / Build / Cache Artifacts (BLOAT)
32
+ # -------------------------
33
+ node_modules/
34
+ venv/
35
+ .venv/
36
+ __pycache__/
37
+ .pytest_cache/
38
+ .next/
39
+ dist/
40
+ build/
41
+ htmlcov/
42
+ .coverage
43
+ *.cover
44
+ out/
45
+ /dashboard/tsconfig.tsbuildinfo
@@ -1,9 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: memorysync
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Official Python client for the MemorySync API.
5
- Project-URL: Homepage, https://memorysync.dev
6
- Project-URL: Documentation, https://memorysync.dev/docs
5
+ Project-URL: Homepage, https://memorysync.io
6
+ Project-URL: Documentation, https://docs.memorysync.io
7
7
  Author: MemorySync
8
8
  License: MIT
9
9
  License-File: LICENSE
@@ -38,7 +38,7 @@ from memorysync import MemorySyncClient
38
38
 
39
39
  ms = MemorySyncClient(
40
40
  api_key="...",
41
- base_url="https://api.memorysync.dev",
41
+ base_url="https://api.memorysync.io",
42
42
  project_id="proj_xxxxxxxxxxxxxxxx", # optional
43
43
  end_user_id="user_42", # optional
44
44
  )
@@ -13,7 +13,7 @@ from memorysync import MemorySyncClient
13
13
 
14
14
  ms = MemorySyncClient(
15
15
  api_key="...",
16
- base_url="https://api.memorysync.dev",
16
+ base_url="https://api.memorysync.io",
17
17
  project_id="proj_xxxxxxxxxxxxxxxx", # optional
18
18
  end_user_id="user_42", # optional
19
19
  )
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "memorysync"
7
- version = "1.0.0"
7
+ version = "1.0.1"
8
8
  description = "Official Python client for the MemorySync API."
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -29,8 +29,8 @@ dependencies = [
29
29
  ]
30
30
 
31
31
  [project.urls]
32
- Homepage = "https://memorysync.dev"
33
- Documentation = "https://memorysync.dev/docs"
32
+ Homepage = "https://memorysync.io"
33
+ Documentation = "https://docs.memorysync.io"
34
34
 
35
35
  [tool.hatch.build.targets.wheel]
36
36
  packages = ["src/memorysync"]
@@ -0,0 +1 @@
1
+ __version__ = "1.0.1"
@@ -1,15 +0,0 @@
1
- *.iml
2
- .gradle
3
- /local.properties
4
- /.idea/caches
5
- /.idea/libraries
6
- /.idea/modules.xml
7
- /.idea/workspace.xml
8
- /.idea/navEditor.xml
9
- /.idea/assetWizardSettings.xml
10
- .DS_Store
11
- /build
12
- /captures
13
- .externalNativeBuild
14
- .cxx
15
- local.properties
@@ -1 +0,0 @@
1
- __version__ = "1.0.0"
File without changes