tarang 4.4.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.
tarang/__init__.py ADDED
@@ -0,0 +1,23 @@
1
+ """
2
+ Tarang - AI Coding Agent.
3
+
4
+ Just type your instructions. The orchestrator handles everything:
5
+ - Simple queries (explanations, questions)
6
+ - Complex tasks (multi-step implementations)
7
+ - Long-running jobs with phases and milestones
8
+
9
+ Architecture:
10
+ - Backend: Runs agents with reasoning/planning (protected IP)
11
+ - CLI: Executes tools locally via WebSocket (filesystem access)
12
+ - WebSocket: Bidirectional real-time communication
13
+
14
+ Usage:
15
+ tarang login # Authenticate
16
+ tarang config --openrouter-key KEY # Set API key
17
+ tarang "explain the project" # Run instruction
18
+ tarang "add user authentication" # Build features
19
+ tarang # Interactive mode
20
+ """
21
+
22
+ __version__ = "3.5.9"
23
+ __author__ = "Tarang Team"