agentchanti 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.
- agentchanti/__init__.py +13 -0
- agentchanti/agents/__init__.py +0 -0
- agentchanti/agents/analyser.py +1020 -0
- agentchanti/agents/base.py +101 -0
- agentchanti/agents/coder.py +150 -0
- agentchanti/agents/intent.py +2310 -0
- agentchanti/agents/planner.py +1442 -0
- agentchanti/agents/reviewer.py +159 -0
- agentchanti/agents/search.py +628 -0
- agentchanti/agents/tester.py +326 -0
- agentchanti/api.py +701 -0
- agentchanti/checkpoint.py +87 -0
- agentchanti/cli_display.py +1150 -0
- agentchanti/config.py +527 -0
- agentchanti/diff_display.py +661 -0
- agentchanti/editing/__init__.py +17 -0
- agentchanti/editing/chunk_editor.py +1138 -0
- agentchanti/editing/context_slicer.py +377 -0
- agentchanti/editing/diff_parser.py +373 -0
- agentchanti/editing/metrics.py +129 -0
- agentchanti/editing/patch_applier.py +310 -0
- agentchanti/editing/scope_resolver.py +388 -0
- agentchanti/embedding_store.py +121 -0
- agentchanti/embedding_store_sqlite.py +116 -0
- agentchanti/executor.py +1303 -0
- agentchanti/git_utils.py +80 -0
- agentchanti/kb/__init__.py +9 -0
- agentchanti/kb/cli.py +962 -0
- agentchanti/kb/context_builder.py +752 -0
- agentchanti/kb/global_kb/__init__.py +9 -0
- agentchanti/kb/global_kb/error_dict.py +436 -0
- agentchanti/kb/global_kb/seeder.py +3874 -0
- agentchanti/kb/global_kb/store.py +834 -0
- agentchanti/kb/global_kb/updater.py +497 -0
- agentchanti/kb/health.py +162 -0
- agentchanti/kb/local/__init__.py +6 -0
- agentchanti/kb/local/embedder.py +586 -0
- agentchanti/kb/local/graph.py +702 -0
- agentchanti/kb/local/indexer.py +457 -0
- agentchanti/kb/local/manifest.py +404 -0
- agentchanti/kb/local/parser.py +893 -0
- agentchanti/kb/local/searcher.py +467 -0
- agentchanti/kb/local/sqlite_vector_store.py +427 -0
- agentchanti/kb/local/watcher.py +304 -0
- agentchanti/kb/project_orientation.py +485 -0
- agentchanti/kb/runtime_watcher.py +344 -0
- agentchanti/kb/startup.py +400 -0
- agentchanti/knowledge.py +757 -0
- agentchanti/language.py +447 -0
- agentchanti/language_backend.py +718 -0
- agentchanti/llm/__init__.py +39 -0
- agentchanti/llm/anthropic_client.py +157 -0
- agentchanti/llm/base.py +173 -0
- agentchanti/llm/cancellation.py +73 -0
- agentchanti/llm/gemini_client.py +184 -0
- agentchanti/llm/lm_studio.py +191 -0
- agentchanti/llm/ollama.py +152 -0
- agentchanti/llm/openai_client.py +204 -0
- agentchanti/orchestrator/__init__.py +27 -0
- agentchanti/orchestrator/classification.py +349 -0
- agentchanti/orchestrator/cli.py +1448 -0
- agentchanti/orchestrator/dependency_check.py +1627 -0
- agentchanti/orchestrator/diagnosis.py +1218 -0
- agentchanti/orchestrator/error_router.py +380 -0
- agentchanti/orchestrator/memory.py +469 -0
- agentchanti/orchestrator/pipeline.py +5207 -0
- agentchanti/orchestrator/plan_optimizer.py +1000 -0
- agentchanti/orchestrator/plan_step.py +2110 -0
- agentchanti/orchestrator/step_handlers.py +6715 -0
- agentchanti/orchestrator/test_analyzer.py +630 -0
- agentchanti/plugins/__init__.py +58 -0
- agentchanti/plugins/registry.py +97 -0
- agentchanti/project_scanner.py +294 -0
- agentchanti/report.py +235 -0
- agentchanti/search_provider.py +317 -0
- agentchanti/step_cache.py +99 -0
- agentchanti/test_syntax.py +12 -0
- agentchanti/tui_editor.py +451 -0
- agentchanti-0.1.0.dist-info/METADATA +361 -0
- agentchanti-0.1.0.dist-info/RECORD +84 -0
- agentchanti-0.1.0.dist-info/WHEEL +5 -0
- agentchanti-0.1.0.dist-info/entry_points.txt +2 -0
- agentchanti-0.1.0.dist-info/licenses/LICENSE +21 -0
- agentchanti-0.1.0.dist-info/top_level.txt +1 -0
agentchanti/__init__.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""
|
|
2
|
+
agentchanti — Multi-Agent Local Coder (AgentChanti).
|
|
3
|
+
|
|
4
|
+
Public API for library usage::
|
|
5
|
+
|
|
6
|
+
from agentchanti import run_task, TaskResult
|
|
7
|
+
|
|
8
|
+
result = run_task(task="Add logging to all endpoints", auto=True)
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
from .api import run_task, TaskResult
|
|
12
|
+
|
|
13
|
+
__all__ = ["run_task", "TaskResult"]
|
|
File without changes
|