simulai-cli 0.1.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.
@@ -0,0 +1,71 @@
1
+ Metadata-Version: 2.4
2
+ Name: simulai-cli
3
+ Version: 0.1.0
4
+ Summary: Simul AI — Nigerian AI gateway CLI. Chat with 20+ models, analyze files, manage your wallet.
5
+ Author-email: Simul AI <hello@trysimulai.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://trysimulai.com
8
+ Project-URL: Documentation, https://docs.trysimulai.com
9
+ Project-URL: Repository, https://github.com/Gracemansam/simulai_client
10
+ Keywords: ai,llm,cli,nigeria,openai,claude,gemini
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Environment :: Console
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
+ Requires-Python: >=3.9
22
+ Description-Content-Type: text/markdown
23
+ Requires-Dist: typer>=0.9.0
24
+ Requires-Dist: rich>=13.0.0
25
+ Requires-Dist: httpx>=0.24.0
26
+ Requires-Dist: keyring>=24.0.0
27
+
28
+ # Simul AI CLI
29
+
30
+ The official command-line interface for [Simul AI](https://trysimulai.com) — Nigeria's AI gateway with Naira billing.
31
+
32
+ ## Installation
33
+
34
+ ```bash
35
+ pip install simulai-cli
36
+ ```
37
+
38
+ ## Quick Start
39
+
40
+ ```bash
41
+ # Configure with your API key
42
+ simulai setup
43
+
44
+ # List available models
45
+ simulai models
46
+
47
+ # Chat with any model
48
+ simulai chat "What is the capital of Nigeria?"
49
+
50
+ # Chat with a specific model
51
+ simulai chat "Explain quantum computing" --model openai/gpt-4o
52
+
53
+ # Analyze a file
54
+ simulai analyze mycode.py --instruction "Find all bugs"
55
+
56
+ # Check wallet balance
57
+ simulai wallet
58
+ ```
59
+
60
+ ## Features
61
+
62
+ - Chat with 20+ AI models including GPT-4o, Claude, Gemini, DeepSeek
63
+ - Naira billing — pay in ₦, no dollar card needed
64
+ - File analysis — code, CSV, PDF, DOCX
65
+ - Real-time streaming responses
66
+ - Wallet management
67
+
68
+ ## Links
69
+
70
+ - Website: [trysimulai.com](https://trysimulai.com)
71
+ - Dashboard: [app.trysimulai.com](https://trysimulai.com)
@@ -0,0 +1,44 @@
1
+ # Simul AI CLI
2
+
3
+ The official command-line interface for [Simul AI](https://trysimulai.com) — Nigeria's AI gateway with Naira billing.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install simulai-cli
9
+ ```
10
+
11
+ ## Quick Start
12
+
13
+ ```bash
14
+ # Configure with your API key
15
+ simulai setup
16
+
17
+ # List available models
18
+ simulai models
19
+
20
+ # Chat with any model
21
+ simulai chat "What is the capital of Nigeria?"
22
+
23
+ # Chat with a specific model
24
+ simulai chat "Explain quantum computing" --model openai/gpt-4o
25
+
26
+ # Analyze a file
27
+ simulai analyze mycode.py --instruction "Find all bugs"
28
+
29
+ # Check wallet balance
30
+ simulai wallet
31
+ ```
32
+
33
+ ## Features
34
+
35
+ - Chat with 20+ AI models including GPT-4o, Claude, Gemini, DeepSeek
36
+ - Naira billing — pay in ₦, no dollar card needed
37
+ - File analysis — code, CSV, PDF, DOCX
38
+ - Real-time streaming responses
39
+ - Wallet management
40
+
41
+ ## Links
42
+
43
+ - Website: [trysimulai.com](https://trysimulai.com)
44
+ - Dashboard: [app.trysimulai.com](https://trysimulai.com)
@@ -0,0 +1,45 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "simulai-cli"
7
+ version = "0.1.0"
8
+ description = "Simul AI — Nigerian AI gateway CLI. Chat with 20+ models, analyze files, manage your wallet."
9
+ readme = "README.md"
10
+ license = { text = "MIT" }
11
+ authors = [
12
+ { name = "Simul AI", email = "hello@trysimulai.com" }
13
+ ]
14
+ keywords = ["ai", "llm", "cli", "nigeria", "openai", "claude", "gemini"]
15
+ classifiers = [
16
+ "Development Status :: 3 - Alpha",
17
+ "Environment :: Console",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.9",
22
+ "Programming Language :: Python :: 3.10",
23
+ "Programming Language :: Python :: 3.11",
24
+ "Programming Language :: Python :: 3.12",
25
+ "Topic :: Software Development :: Libraries :: Python Modules",
26
+ ]
27
+ requires-python = ">=3.9"
28
+ dependencies = [
29
+ "typer>=0.9.0",
30
+ "rich>=13.0.0",
31
+ "httpx>=0.24.0",
32
+ "keyring>=24.0.0",
33
+ ]
34
+
35
+ [project.scripts]
36
+ simulai = "cli.main:app"
37
+
38
+ [project.urls]
39
+ Homepage = "https://trysimulai.com"
40
+ Documentation = "https://docs.trysimulai.com"
41
+ Repository = "https://github.com/Gracemansam/simulai_client"
42
+
43
+ [tool.setuptools.packages.find]
44
+ where = [".."]
45
+ include = ["cli*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+