conversation-tk 2.2.0__tar.gz → 2.3.0__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.
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/PKG-INFO +2 -2
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/README.md +1 -1
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/conversation_tk.egg-info/PKG-INFO +2 -2
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/conversation_tk.egg-info/SOURCES.txt +1 -1
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/__init__.py +1 -1
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/cli.py +682 -190
- conversation_tk-2.3.0/ctk/cli_net.py +1034 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/commands/chat.py +1 -60
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/commands/search.py +3 -3
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/commands/visualization.py +231 -1
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/db_operations.py +4 -2
- conversation_tk-2.3.0/ctk/core/helpers.py +1178 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/shell_parser.py +4 -2
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/similarity.py +6 -3
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/chat/tui.py +486 -66
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/exporters/__init__.py +1 -2
- conversation_tk-2.2.0/ctk/integrations/exporters/html5.py → conversation_tk-2.3.0/ctk/integrations/exporters/html.py +136 -10
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/importers/anthropic.py +14 -6
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/importers/gemini.py +15 -9
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/importers/jsonl.py +18 -4
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/setup.py +1 -1
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/tests/test_database_comprehensive.py +62 -74
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/tests/test_db_operations.py +6 -3
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/tests/test_db_operations_comprehensive.py +123 -137
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/tests/test_models_comprehensive.py +26 -15
- conversation_tk-2.2.0/ctk/core/helpers.py +0 -649
- conversation_tk-2.2.0/ctk/integrations/exporters/html.py +0 -1043
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/conversation_tk.egg-info/dependency_links.txt +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/conversation_tk.egg-info/entry_points.txt +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/conversation_tk.egg-info/requires.txt +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/conversation_tk.egg-info/top_level.txt +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/api.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/cli_chat.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/cli_db.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/cli_refactored.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/cli_tag.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/__init__.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/command_dispatcher.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/commands/__init__.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/commands/navigation.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/commands/organization.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/commands/unix.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/commands.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/config.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/database.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/db_models.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/formatters.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/models.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/network_analysis.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/plugin.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/sanitizer.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/tree.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/utils.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/vfs.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/vfs_completer.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/vfs_navigator.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/__init__.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/base_importer.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/chat/__init__.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/embeddings/__init__.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/embeddings/base.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/embeddings/ollama.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/embeddings/tfidf.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/exporters/json.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/exporters/jsonl.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/exporters/markdown.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/importers/__init__.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/importers/copilot.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/importers/filesystem_coding.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/importers/openai.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/llm/__init__.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/llm/base.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/llm/mcp_client.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/llm/ollama.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/taggers/__init__.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/taggers/anthropic_tagger.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/taggers/base.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/taggers/local_tagger.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/taggers/ollama_tagger.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/taggers/openai_tagger.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/taggers/openrouter_tagger.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/taggers/tfidf_tagger.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/interfaces/__init__.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/interfaces/base.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/interfaces/rest/__init__.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/interfaces/rest/api.py +0 -0
- {conversation_tk-2.2.0 → conversation_tk-2.3.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: conversation-tk
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.3.0
|
|
4
4
|
Summary: A robust toolkit for managing tree-based conversations from multiple sources
|
|
5
5
|
Home-page: https://github.com/yourusername/ctk
|
|
6
6
|
Author: CTK Contributors
|
|
@@ -511,7 +511,7 @@ sanitizer.add_rule(SanitizationRule(
|
|
|
511
511
|
- **jsonl** - JSONL for fine-tuning (multiple formats)
|
|
512
512
|
- **json** - Native CTK format, OpenAI, Anthropic, or generic JSON
|
|
513
513
|
- **markdown** - Human-readable with tree visualization
|
|
514
|
-
- **
|
|
514
|
+
- **html** - Interactive HTML with browsing and search
|
|
515
515
|
|
|
516
516
|
### List Available Plugins
|
|
517
517
|
```bash
|
|
@@ -479,7 +479,7 @@ sanitizer.add_rule(SanitizationRule(
|
|
|
479
479
|
- **jsonl** - JSONL for fine-tuning (multiple formats)
|
|
480
480
|
- **json** - Native CTK format, OpenAI, Anthropic, or generic JSON
|
|
481
481
|
- **markdown** - Human-readable with tree visualization
|
|
482
|
-
- **
|
|
482
|
+
- **html** - Interactive HTML with browsing and search
|
|
483
483
|
|
|
484
484
|
### List Available Plugins
|
|
485
485
|
```bash
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: conversation-tk
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.3.0
|
|
4
4
|
Summary: A robust toolkit for managing tree-based conversations from multiple sources
|
|
5
5
|
Home-page: https://github.com/yourusername/ctk
|
|
6
6
|
Author: CTK Contributors
|
|
@@ -511,7 +511,7 @@ sanitizer.add_rule(SanitizationRule(
|
|
|
511
511
|
- **jsonl** - JSONL for fine-tuning (multiple formats)
|
|
512
512
|
- **json** - Native CTK format, OpenAI, Anthropic, or generic JSON
|
|
513
513
|
- **markdown** - Human-readable with tree visualization
|
|
514
|
-
- **
|
|
514
|
+
- **html** - Interactive HTML with browsing and search
|
|
515
515
|
|
|
516
516
|
### List Available Plugins
|
|
517
517
|
```bash
|
|
@@ -11,6 +11,7 @@ ctk/api.py
|
|
|
11
11
|
ctk/cli.py
|
|
12
12
|
ctk/cli_chat.py
|
|
13
13
|
ctk/cli_db.py
|
|
14
|
+
ctk/cli_net.py
|
|
14
15
|
ctk/cli_refactored.py
|
|
15
16
|
ctk/cli_tag.py
|
|
16
17
|
ctk/core/__init__.py
|
|
@@ -50,7 +51,6 @@ ctk/integrations/embeddings/ollama.py
|
|
|
50
51
|
ctk/integrations/embeddings/tfidf.py
|
|
51
52
|
ctk/integrations/exporters/__init__.py
|
|
52
53
|
ctk/integrations/exporters/html.py
|
|
53
|
-
ctk/integrations/exporters/html5.py
|
|
54
54
|
ctk/integrations/exporters/json.py
|
|
55
55
|
ctk/integrations/exporters/jsonl.py
|
|
56
56
|
ctk/integrations/exporters/markdown.py
|