tisit-cli 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.
- tisit_cli/__init__.py +2 -0
- tisit_cli/auth.py +54 -0
- tisit_cli/client.py +392 -0
- tisit_cli/commands/__init__.py +0 -0
- tisit_cli/commands/article_commands.py +132 -0
- tisit_cli/commands/auth_commands.py +91 -0
- tisit_cli/commands/book_commands.py +186 -0
- tisit_cli/commands/browse_commands.py +76 -0
- tisit_cli/commands/chat_commands.py +94 -0
- tisit_cli/commands/focus_commands.py +198 -0
- tisit_cli/commands/graph_commands.py +126 -0
- tisit_cli/commands/note_commands.py +131 -0
- tisit_cli/commands/paper_commands.py +134 -0
- tisit_cli/commands/patent_commands.py +138 -0
- tisit_cli/commands/podcast_commands.py +132 -0
- tisit_cli/commands/radar_commands.py +246 -0
- tisit_cli/commands/search_commands.py +42 -0
- tisit_cli/commands/status_commands.py +50 -0
- tisit_cli/commands/tweet_commands.py +132 -0
- tisit_cli/commands/video_commands.py +132 -0
- tisit_cli/config.py +53 -0
- tisit_cli/display.py +582 -0
- tisit_cli/exceptions.py +29 -0
- tisit_cli/main.py +68 -0
- tisit_cli-0.1.0.dist-info/METADATA +114 -0
- tisit_cli-0.1.0.dist-info/RECORD +29 -0
- tisit_cli-0.1.0.dist-info/WHEEL +4 -0
- tisit_cli-0.1.0.dist-info/entry_points.txt +2 -0
- tisit_cli-0.1.0.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tisit-cli
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: CLI for the TISIT learning platform — learn anything, explained intelligently
|
|
5
|
+
Project-URL: Homepage, https://tisit.ai
|
|
6
|
+
Project-URL: Repository, https://github.com/VeeDuvv/tisitv0
|
|
7
|
+
Project-URL: Issues, https://github.com/VeeDuvv/tisitv0/issues
|
|
8
|
+
Author-email: Vamsi Duvvuri <admin@tisit.ai>
|
|
9
|
+
License-Expression: MIT
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Keywords: ai,cli,knowledge,learning,tisit
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Environment :: Console
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Topic :: Education
|
|
22
|
+
Classifier: Topic :: Utilities
|
|
23
|
+
Requires-Python: >=3.10
|
|
24
|
+
Requires-Dist: httpx>=0.25.0
|
|
25
|
+
Requires-Dist: keyring>=24.0.0
|
|
26
|
+
Requires-Dist: rich>=13.0.0
|
|
27
|
+
Requires-Dist: tomli-w>=1.0.0
|
|
28
|
+
Requires-Dist: tomli>=2.0.0; python_version < '3.11'
|
|
29
|
+
Requires-Dist: typer[all]>=0.9.0
|
|
30
|
+
Provides-Extra: dev
|
|
31
|
+
Requires-Dist: flake8>=6.0; extra == 'dev'
|
|
32
|
+
Requires-Dist: pytest>=7.0; extra == 'dev'
|
|
33
|
+
Requires-Dist: respx>=0.20.0; extra == 'dev'
|
|
34
|
+
Description-Content-Type: text/markdown
|
|
35
|
+
|
|
36
|
+
# tisit-cli
|
|
37
|
+
|
|
38
|
+
Terminal-native client for the [TISIT](https://tisit.ai) learning platform. If you can do it on the web, you can do it from the shell.
|
|
39
|
+
|
|
40
|
+
## Install
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
pip install tisit-cli
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Quick Start
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
# Authenticate (get your API token from tisit.ai settings)
|
|
50
|
+
tisit login
|
|
51
|
+
|
|
52
|
+
# Explore your knowledge
|
|
53
|
+
tisit note list
|
|
54
|
+
tisit search "machine learning"
|
|
55
|
+
tisit chat ask "What are transformers?"
|
|
56
|
+
|
|
57
|
+
# Add content
|
|
58
|
+
tisit note add "Neural Networks" "Deep Learning"
|
|
59
|
+
tisit paper add https://arxiv.org/pdf/1706.03762
|
|
60
|
+
tisit article add https://example.com/article
|
|
61
|
+
tisit video add https://youtube.com/watch?v=abc
|
|
62
|
+
tisit book search "Deep Learning"
|
|
63
|
+
|
|
64
|
+
# Intelligence monitoring
|
|
65
|
+
tisit radar status
|
|
66
|
+
tisit radar topic add "AI Safety" --keywords "alignment,safety"
|
|
67
|
+
|
|
68
|
+
# Knowledge graph
|
|
69
|
+
tisit graph stats
|
|
70
|
+
tisit graph neighbors "machine learning"
|
|
71
|
+
tisit graph paths "Neural Networks" "NLP"
|
|
72
|
+
|
|
73
|
+
# Deep dive learning
|
|
74
|
+
tisit focus create "Quantum Computing"
|
|
75
|
+
tisit focus list
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## Commands
|
|
79
|
+
|
|
80
|
+
| Command | Description |
|
|
81
|
+
|---------|-------------|
|
|
82
|
+
| `tisit login/logout/whoami` | Authentication |
|
|
83
|
+
| `tisit status` | System health check |
|
|
84
|
+
| `tisit note add/list/view/delete` | Learning notes |
|
|
85
|
+
| `tisit paper add/list/view/delete` | Research papers |
|
|
86
|
+
| `tisit article add/list/view/delete` | Web articles |
|
|
87
|
+
| `tisit video add/list/view/delete` | YouTube videos |
|
|
88
|
+
| `tisit tweet add/list/view/delete` | Tweets / X posts |
|
|
89
|
+
| `tisit book search/add/list/view/delete` | Books |
|
|
90
|
+
| `tisit podcast add/list/view/delete` | Podcast episodes |
|
|
91
|
+
| `tisit patent add/list/view/delete` | Patents |
|
|
92
|
+
| `tisit search "query"` | Semantic search |
|
|
93
|
+
| `tisit browse --type notes` | Unified content browsing |
|
|
94
|
+
| `tisit chat` | Interactive RAG chat |
|
|
95
|
+
| `tisit chat ask "question"` | One-shot question |
|
|
96
|
+
| `tisit radar status/topic/run/source` | Radar sweep monitoring |
|
|
97
|
+
| `tisit graph stats/neighbors/paths` | Knowledge graph |
|
|
98
|
+
| `tisit focus list/create/view/delete` | Focus mode (deep dive) |
|
|
99
|
+
|
|
100
|
+
All commands support `--json` for scripted output.
|
|
101
|
+
|
|
102
|
+
## Configuration
|
|
103
|
+
|
|
104
|
+
Config is stored at `~/.tisit/config.toml`. Override the server URL:
|
|
105
|
+
|
|
106
|
+
```bash
|
|
107
|
+
tisit login --api-url https://your-server.com
|
|
108
|
+
# or
|
|
109
|
+
export TISIT_API_URL=https://your-server.com
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
## License
|
|
113
|
+
|
|
114
|
+
MIT
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
tisit_cli/__init__.py,sha256=eU-KTT8bA13zBAyzrtBUl6l-vFao_XBryot31SBgzVs,98
|
|
2
|
+
tisit_cli/auth.py,sha256=OkAc2vkItRUBAQOphKgwopz9_FSSqwRkGF2kNnZ0pVE,1428
|
|
3
|
+
tisit_cli/client.py,sha256=2H4gkpLxjudtUSu3pAzPi1lmQ1kAWoefm0zSVoMtEtY,15003
|
|
4
|
+
tisit_cli/config.py,sha256=KaT-qCsRyDETTiQ5uEK3HZwCFM8GoEjKLQJhl8zcGDs,1417
|
|
5
|
+
tisit_cli/display.py,sha256=d5p719eSAoiGpGd9SJ4bF6zp3SzGSls9qhLHhb3pt8o,19759
|
|
6
|
+
tisit_cli/exceptions.py,sha256=QGtRJ6EmZOtdvwi2MKzQ0AeTsPk1XZvRixpPC-2SAcU,744
|
|
7
|
+
tisit_cli/main.py,sha256=F3NqxIDDaULmGOGqt1ic4lwf4DlAzesTWC0_ufSJie0,2036
|
|
8
|
+
tisit_cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
tisit_cli/commands/article_commands.py,sha256=f7EiBeyCjM6dJHLatBdEuEiInbBc0jQKcJIIrg1GbHc,4124
|
|
10
|
+
tisit_cli/commands/auth_commands.py,sha256=KZKB5Js1fhETE2LAqIBVMINipfFkPEf-XvuRicgFP4A,2512
|
|
11
|
+
tisit_cli/commands/book_commands.py,sha256=xydNP-k1pTGVZnUYqEBYdFEY2y-if-EN51ZUatb8L2o,6299
|
|
12
|
+
tisit_cli/commands/browse_commands.py,sha256=p9RX5wAR7qKkeAdhR4OZnvVB68uNzptG6S6dbQI2GdU,2620
|
|
13
|
+
tisit_cli/commands/chat_commands.py,sha256=ZMq9ZJrMctqkt6f1Ne_TM371XtcQkNeuyQ1yEU5Gxe4,2907
|
|
14
|
+
tisit_cli/commands/focus_commands.py,sha256=k7ZXjl9q_UZS2dH1n1mn3jgzq8dO8LJLaCpw3rbO_sQ,6759
|
|
15
|
+
tisit_cli/commands/graph_commands.py,sha256=Q_yfZJcIKfQ-sFxCqgrHZmRL-T1H55p8ywTYfWCSPuw,4361
|
|
16
|
+
tisit_cli/commands/note_commands.py,sha256=8XPscZa7IzsPtGQp0yo4z3GhxdNsreVLpdoMaYm25Wk,4000
|
|
17
|
+
tisit_cli/commands/paper_commands.py,sha256=zeA6enOtSbtiAqukTQavxHJd5obE45qdqIdrYN4jAVA,4268
|
|
18
|
+
tisit_cli/commands/patent_commands.py,sha256=_8nRhzxYMku_y6a5G-ETvBr_DswxV75g-J5tWsoZr7I,4271
|
|
19
|
+
tisit_cli/commands/podcast_commands.py,sha256=61uJXV69x6iNRocgnKbpwZmmtPE82NbhsRzhsuQnffk,4210
|
|
20
|
+
tisit_cli/commands/radar_commands.py,sha256=eZ7wjm9OzRhpf6coVScEVxvhSkbydxVVKWy6qzkIdGI,7856
|
|
21
|
+
tisit_cli/commands/search_commands.py,sha256=PO9q3hlNuA6LupDxAOmIUqXm1E2zmcPdXPWyS6x5dNg,1328
|
|
22
|
+
tisit_cli/commands/status_commands.py,sha256=lKqXTP05MxecoydHTcetPIHxgknu9CHhvnLdX77dms4,1496
|
|
23
|
+
tisit_cli/commands/tweet_commands.py,sha256=RXbhdiUrsnqDxo6U1Zq8l14wXwMhEkylcwg-Kn0Rc-c,3977
|
|
24
|
+
tisit_cli/commands/video_commands.py,sha256=6q3SGyS72vTgt9jZTsmlXLorqQHQAPYQ8XYNqgGjoTo,4046
|
|
25
|
+
tisit_cli-0.1.0.dist-info/METADATA,sha256=IBHD6iFPLcGbgoRgCMDrtWA263Apo6LWHRXVfgexrbg,3559
|
|
26
|
+
tisit_cli-0.1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
27
|
+
tisit_cli-0.1.0.dist-info/entry_points.txt,sha256=S-WCU3PDRsaeG3ncgsl4TscRwY3TVay_kA389KjDLKQ,45
|
|
28
|
+
tisit_cli-0.1.0.dist-info/licenses/LICENSE,sha256=1rpGAmBqjlnWmMAil8rdLPp8I8KJFtyzQ9Z5xLxvisY,1070
|
|
29
|
+
tisit_cli-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Vamsi Duvvuri
|
|
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.
|