gaius-memory 0.1.0__py3-none-any.whl

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.
gaius/__init__.py ADDED
@@ -0,0 +1,50 @@
1
+ """gaius — Session memory lifecycle manager for Claude Code projects.
2
+
3
+ Import key symbols from the core module for programmatic access.
4
+ """
5
+
6
+ from gaius._core import (
7
+ # Entry point
8
+ main,
9
+ # DB
10
+ init_db,
11
+ DB_PATH,
12
+ # Embedding
13
+ _embed_text,
14
+ _embed_texts,
15
+ _embed_via_daemon,
16
+ _get_embed_model,
17
+ _EMBED_DIM,
18
+ _EMBED_DAEMON_SOCK,
19
+ # Facts
20
+ upsert_fact,
21
+ # Skills
22
+ load_skills,
23
+ compute_skill_score,
24
+ # Config
25
+ DOMAIN_DIR,
26
+ SKILLS_DIR,
27
+ STAGING_DIR,
28
+ CORPUS_DIR,
29
+ )
30
+
31
+ __version__ = "0.1.0"
32
+
33
+ __all__ = [
34
+ "main",
35
+ "init_db",
36
+ "DB_PATH",
37
+ "_embed_text",
38
+ "_embed_texts",
39
+ "_embed_via_daemon",
40
+ "_get_embed_model",
41
+ "_EMBED_DIM",
42
+ "_EMBED_DAEMON_SOCK",
43
+ "upsert_fact",
44
+ "load_skills",
45
+ "compute_skill_score",
46
+ "DOMAIN_DIR",
47
+ "SKILLS_DIR",
48
+ "STAGING_DIR",
49
+ "CORPUS_DIR",
50
+ ]
gaius/__main__.py ADDED
@@ -0,0 +1,3 @@
1
+ """gaius package entry point — allows `python -m gaius`."""
2
+ from gaius._core import main
3
+ main()