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.
Files changed (87) hide show
  1. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/PKG-INFO +2 -2
  2. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/README.md +1 -1
  3. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/conversation_tk.egg-info/PKG-INFO +2 -2
  4. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/conversation_tk.egg-info/SOURCES.txt +1 -1
  5. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/__init__.py +1 -1
  6. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/cli.py +682 -190
  7. conversation_tk-2.3.0/ctk/cli_net.py +1034 -0
  8. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/commands/chat.py +1 -60
  9. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/commands/search.py +3 -3
  10. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/commands/visualization.py +231 -1
  11. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/db_operations.py +4 -2
  12. conversation_tk-2.3.0/ctk/core/helpers.py +1178 -0
  13. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/shell_parser.py +4 -2
  14. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/similarity.py +6 -3
  15. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/chat/tui.py +486 -66
  16. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/exporters/__init__.py +1 -2
  17. conversation_tk-2.2.0/ctk/integrations/exporters/html5.py → conversation_tk-2.3.0/ctk/integrations/exporters/html.py +136 -10
  18. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/importers/anthropic.py +14 -6
  19. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/importers/gemini.py +15 -9
  20. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/importers/jsonl.py +18 -4
  21. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/setup.py +1 -1
  22. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/tests/test_database_comprehensive.py +62 -74
  23. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/tests/test_db_operations.py +6 -3
  24. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/tests/test_db_operations_comprehensive.py +123 -137
  25. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/tests/test_models_comprehensive.py +26 -15
  26. conversation_tk-2.2.0/ctk/core/helpers.py +0 -649
  27. conversation_tk-2.2.0/ctk/integrations/exporters/html.py +0 -1043
  28. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/conversation_tk.egg-info/dependency_links.txt +0 -0
  29. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/conversation_tk.egg-info/entry_points.txt +0 -0
  30. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/conversation_tk.egg-info/requires.txt +0 -0
  31. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/conversation_tk.egg-info/top_level.txt +0 -0
  32. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/api.py +0 -0
  33. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/cli_chat.py +0 -0
  34. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/cli_db.py +0 -0
  35. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/cli_refactored.py +0 -0
  36. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/cli_tag.py +0 -0
  37. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/__init__.py +0 -0
  38. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/command_dispatcher.py +0 -0
  39. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/commands/__init__.py +0 -0
  40. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/commands/navigation.py +0 -0
  41. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/commands/organization.py +0 -0
  42. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/commands/unix.py +0 -0
  43. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/commands.py +0 -0
  44. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/config.py +0 -0
  45. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/database.py +0 -0
  46. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/db_models.py +0 -0
  47. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/formatters.py +0 -0
  48. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/models.py +0 -0
  49. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/network_analysis.py +0 -0
  50. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/plugin.py +0 -0
  51. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/sanitizer.py +0 -0
  52. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/tree.py +0 -0
  53. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/utils.py +0 -0
  54. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/vfs.py +0 -0
  55. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/vfs_completer.py +0 -0
  56. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/core/vfs_navigator.py +0 -0
  57. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/__init__.py +0 -0
  58. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/base_importer.py +0 -0
  59. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/chat/__init__.py +0 -0
  60. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/embeddings/__init__.py +0 -0
  61. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/embeddings/base.py +0 -0
  62. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/embeddings/ollama.py +0 -0
  63. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/embeddings/tfidf.py +0 -0
  64. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/exporters/json.py +0 -0
  65. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/exporters/jsonl.py +0 -0
  66. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/exporters/markdown.py +0 -0
  67. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/importers/__init__.py +0 -0
  68. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/importers/copilot.py +0 -0
  69. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/importers/filesystem_coding.py +0 -0
  70. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/importers/openai.py +0 -0
  71. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/llm/__init__.py +0 -0
  72. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/llm/base.py +0 -0
  73. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/llm/mcp_client.py +0 -0
  74. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/llm/ollama.py +0 -0
  75. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/taggers/__init__.py +0 -0
  76. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/taggers/anthropic_tagger.py +0 -0
  77. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/taggers/base.py +0 -0
  78. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/taggers/local_tagger.py +0 -0
  79. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/taggers/ollama_tagger.py +0 -0
  80. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/taggers/openai_tagger.py +0 -0
  81. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/taggers/openrouter_tagger.py +0 -0
  82. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/integrations/taggers/tfidf_tagger.py +0 -0
  83. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/interfaces/__init__.py +0 -0
  84. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/interfaces/base.py +0 -0
  85. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/interfaces/rest/__init__.py +0 -0
  86. {conversation_tk-2.2.0 → conversation_tk-2.3.0}/ctk/interfaces/rest/api.py +0 -0
  87. {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.2.0
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
- - **html5** - Interactive HTML with browsing and search
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
- - **html5** - Interactive HTML with browsing and search
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.2.0
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
- - **html5** - Interactive HTML with browsing and search
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
@@ -2,7 +2,7 @@
2
2
  Conversation Toolkit - A robust system for managing tree-based conversations
3
3
  """
4
4
 
5
- __version__ = "2.0.0"
5
+ __version__ = "2.3.0"
6
6
  __author__ = "CTK Contributors"
7
7
 
8
8
  from .core.models import (