bot-knows 0.1.0__py3-none-any.whl → 0.1.1__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.
bot_knows/__init__.py
CHANGED
|
@@ -26,29 +26,30 @@ Example usage:
|
|
|
26
26
|
topics = await bk.get_chat_topics(chat_id)
|
|
27
27
|
"""
|
|
28
28
|
|
|
29
|
-
__version__ = "0.1.
|
|
29
|
+
__version__ = "0.1.1"
|
|
30
30
|
|
|
31
31
|
# Orchestrator
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
from bot_knows.orchestrator import BotKnows, InsertResult
|
|
33
|
+
|
|
34
|
+
# Implementations
|
|
35
|
+
from bot_knows.infra.mongo.repositories import MongoStorageRepository
|
|
36
|
+
from bot_knows.infra.neo4j.graph_repository import Neo4jGraphRepository
|
|
37
|
+
from bot_knows.infra.llm.openai_provider import OpenAIProvider
|
|
38
|
+
from bot_knows.infra.llm.anthropic_provider import AnthropicProvider
|
|
34
39
|
|
|
35
40
|
# Import adapters
|
|
36
41
|
from bot_knows.importers.chatgpt import ChatGPTAdapter
|
|
37
42
|
from bot_knows.importers.claude import ClaudeAdapter
|
|
38
43
|
from bot_knows.importers.generic_json import GenericJSONAdapter
|
|
39
|
-
from bot_knows.infra.llm.anthropic_provider import AnthropicProvider
|
|
40
|
-
from bot_knows.infra.llm.openai_provider import OpenAIProvider
|
|
41
44
|
|
|
42
|
-
#
|
|
43
|
-
from bot_knows.
|
|
44
|
-
from bot_knows.infra.neo4j.graph_repository import Neo4jGraphRepository
|
|
45
|
+
# Interfaces
|
|
46
|
+
from bot_knows.importers.base import ChatImportAdapter
|
|
45
47
|
from bot_knows.interfaces.embedding import EmbeddingServiceInterface
|
|
46
48
|
from bot_knows.interfaces.graph import GraphServiceInterface
|
|
47
49
|
from bot_knows.interfaces.llm import LLMInterface
|
|
48
50
|
from bot_knows.interfaces.storage import StorageInterface
|
|
49
|
-
from bot_knows.orchestrator import BotKnows, InsertResult
|
|
50
51
|
|
|
51
|
-
__all__ = [
|
|
52
|
+
__all__ = [
|
|
52
53
|
# Orchestrator
|
|
53
54
|
"BotKnows",
|
|
54
55
|
"InsertResult",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: bot-knows
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Framework-agnostic Python library for graph-backed personal knowledge bases from chat data
|
|
5
5
|
Project-URL: Homepage, https://github.com/Snezhana/bot-knows
|
|
6
6
|
Project-URL: Documentation, https://github.com/Snezhana/bot-knows#readme
|
|
@@ -8,7 +8,6 @@ Project-URL: Repository, https://github.com/Snezhana/bot-knows
|
|
|
8
8
|
Project-URL: Issues, https://github.com/Snezhana/bot-knows/issues
|
|
9
9
|
Author-email: Your Name <your@email.com>
|
|
10
10
|
License-Expression: MIT
|
|
11
|
-
License-File: LICENSE
|
|
12
11
|
Keywords: chat,embedding,graph,knowledge-base,memory,nlp,recall
|
|
13
12
|
Classifier: Development Status :: 3 - Alpha
|
|
14
13
|
Classifier: Framework :: AsyncIO
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
bot_knows/__init__.py,sha256=
|
|
1
|
+
bot_knows/__init__.py,sha256=e71CcKrtbLf5acuMHMytJOQNgmqE_gFIq6qa8bLIbag,2231
|
|
2
2
|
bot_knows/config.py,sha256=1BLyyRWxloUCqkIrIWBE7iPyvbnxgoBUj3w901FpmbU,2972
|
|
3
3
|
bot_knows/logging.py,sha256=Hn7t7tw8dMbxzc10QNeJ8l0jllth3TUpA55PiyIbvPU,2715
|
|
4
4
|
bot_knows/orchestrator.py,sha256=5x93HLdCiBlWzC4TAvTeVShG5Op7v75GMCezx3M6VhE,15361
|
|
@@ -50,7 +50,6 @@ bot_knows/services/tasks.py,sha256=zZY1l6pqB_lRC086HxOoMabJQMbs5V7H-6En53FbNN8,3
|
|
|
50
50
|
bot_knows/services/topic_extraction.py,sha256=StKW_DJvH3Fz2V4zSLJXkc1Fz1BJiLsE3gHuDLlZSNk,6059
|
|
51
51
|
bot_knows/utils/__init__.py,sha256=nVhLzC1PyrKznRLNwAIzK-ezQbMI9deSH7b2NYWaJpE,414
|
|
52
52
|
bot_knows/utils/hashing.py,sha256=zojSIplC6QrrEdbY7IzxPOzhadGg_JEXLMP2jKBjH6w,3301
|
|
53
|
-
bot_knows-0.1.
|
|
54
|
-
bot_knows-0.1.
|
|
55
|
-
bot_knows-0.1.
|
|
56
|
-
bot_knows-0.1.0.dist-info/RECORD,,
|
|
53
|
+
bot_knows-0.1.1.dist-info/METADATA,sha256=0jd-aR5vR97PWOZhiAh58Bz2y8qq4h-rc6eCYzA9sc8,9245
|
|
54
|
+
bot_knows-0.1.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
55
|
+
bot_knows-0.1.1.dist-info/RECORD,,
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 Snezhana Stojanova
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
File without changes
|