llm-cost-ops-cli 0.1.0

Command-line interface for LLM Cost Ops
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
# LLM Cost Ops - CLI

[![Crates.io](https://img.shields.io/crates/v/llm-cost-ops-cli.svg)](https://crates.io/crates/llm-cost-ops-cli)
[![Documentation](https://docs.rs/llm-cost-ops-cli/badge.svg)](https://docs.rs/llm-cost-ops-cli)
[![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](LICENSE)

**Command-line interface for LLM Cost Ops platform**

A powerful, user-friendly CLI tool for managing LLM costs, generating reports, and administering the Cost Ops platform.

## Features

- **Database Management** - Initialize, migrate, and manage databases
- **Data Import/Export** - Import usage data from various formats
- **Report Generation** - Generate and download cost/usage reports
- **Cost Queries** - Query and analyze cost data
- **User Management** - Create and manage users and API keys
- **Organization Management** - Manage organizations and permissions
- **Server Management** - Start and manage API servers
- **Interactive Mode** - REPL-style interactive shell

## Installation

### From crates.io

```bash
cargo install llm-cost-ops-cli
```

### From source

```bash
git clone https://github.com/globalbusinessadvisors/llm-cost-ops
cd llm-cost-ops
cargo install --path crates/llm-cost-ops-cli
```

### Verify installation

```bash
cost-ops --version
```

## Quick Start

### Initialize Database

```bash
# SQLite (default)
cost-ops init --database-url sqlite:cost-ops.db

# PostgreSQL
cost-ops init --database-url postgresql://user:pass@localhost/costops
```

### Import Usage Data

```bash
# Import from OpenAI format
cost-ops import \
  --file usage-data.json \
  --format openai \
  --organization org-123

# Import from Anthropic format
cost-ops import \
  --file claude-usage.csv \
  --format anthropic \
  --organization org-123

# Batch import
cost-ops import \
  --directory ./usage-logs \
  --format openai \
  --batch-size 1000
```

### Query Costs

```bash
# Query costs for organization
cost-ops query \
  --organization org-123 \
  --start-date 2024-01-01 \
  --end-date 2024-01-31

# Query with grouping
cost-ops query \
  --organization org-123 \
  --group-by provider,model \
  --output table

# Export to CSV
cost-ops query \
  --organization org-123 \
  --output csv \
  --output-file costs.csv
```

### Generate Reports

```bash
# Cost report
cost-ops report \
  --type cost \
  --organization org-123 \
  --format pdf \
  --output monthly-report.pdf

# Usage report
cost-ops report \
  --type usage \
  --organization org-123 \
  --format excel \
  --output usage-report.xlsx

# Email report
cost-ops report \
  --type cost \
  --organization org-123 \
  --format csv \
  --email finance@example.com
```

### Forecast Costs

```bash
# 30-day forecast
cost-ops forecast \
  --organization org-123 \
  --horizon 30 \
  --model linear-trend

# Anomaly detection
cost-ops forecast anomalies \
  --organization org-123 \
  --lookback-days 90
```

### User Management

```bash
# Create user
cost-ops user create \
  --username user@example.com \
  --organization org-123 \
  --role admin

# Generate API key
cost-ops user api-key \
  --username user@example.com \
  --expires-in 90d

# List users
cost-ops user list --organization org-123

# Update roles
cost-ops user update-roles \
  --username user@example.com \
  --roles admin,analyst
```

### Organization Management

```bash
# Create organization
cost-ops org create \
  --name "Acme Corp" \
  --id acme-corp

# Set budget
cost-ops org budget \
  --organization org-123 \
  --amount 10000 \
  --period monthly

# List organizations
cost-ops org list
```

### Server Management

```bash
# Start API server
cost-ops server start \
  --port 8080 \
  --database-url postgresql://user:pass@localhost/costops

# Start with custom config
cost-ops server start --config config.toml

# Health check
cost-ops server health --url http://localhost:8080
```

## Commands

### Database Commands

```bash
# Initialize database
cost-ops init --database-url <url>

# Run migrations
cost-ops migrate up

# Rollback migrations
cost-ops migrate down

# Reset database (WARNING: deletes all data)
cost-ops migrate reset --confirm

# Database status
cost-ops db status
```

### Import Commands

```bash
# Import usage data
cost-ops import \
  --file <path> \
  --format <openai|anthropic|vertex|azure> \
  --organization <org-id>

# Import pricing data
cost-ops import pricing \
  --file pricing.json \
  --provider openai

# Import batch
cost-ops import batch \
  --directory <path> \
  --pattern "*.json"
```

### Query Commands

```bash
# Query costs
cost-ops query \
  [--organization <org-id>] \
  [--provider <provider>] \
  [--model <model>] \
  [--start-date <date>] \
  [--end-date <date>] \
  [--group-by <field>] \
  [--output <format>]

# Top consumers
cost-ops query top \
  --by cost \
  --limit 10

# Usage summary
cost-ops query summary \
  --organization org-123 \
  --period monthly
```

### Report Commands

```bash
# Generate report
cost-ops report \
  --type <cost|usage|forecast|audit> \
  --organization <org-id> \
  --format <csv|excel|json|pdf> \
  [--output <file>] \
  [--email <address>]

# List reports
cost-ops report list [--organization <org-id>]

# Download report
cost-ops report download --id <report-id> --output <file>

# Schedule report
cost-ops report schedule \
  --type cost \
  --cron "0 0 * * 1" \
  --email finance@example.com
```

### Forecast Commands

```bash
# Cost forecast
cost-ops forecast cost \
  --organization <org-id> \
  --horizon <days> \
  [--model <linear-trend|moving-average|exponential-smoothing>]

# Usage forecast
cost-ops forecast usage \
  --organization <org-id> \
  --horizon <days>

# Detect anomalies
cost-ops forecast anomalies \
  --organization <org-id> \
  --lookback-days <days>
```

### User Commands

```bash
# Create user
cost-ops user create \
  --username <email> \
  --organization <org-id> \
  --role <role>

# List users
cost-ops user list [--organization <org-id>]

# Generate API key
cost-ops user api-key \
  --username <email> \
  [--expires-in <duration>]

# Revoke API key
cost-ops user revoke-key --key-id <id>

# Update roles
cost-ops user update-roles \
  --username <email> \
  --roles <role1,role2>
```

### Organization Commands

```bash
# Create organization
cost-ops org create --name <name> --id <id>

# List organizations
cost-ops org list

# Set budget
cost-ops org budget \
  --organization <org-id> \
  --amount <amount> \
  --period <monthly|quarterly|yearly>

# View budget status
cost-ops org budget-status --organization <org-id>
```

### Server Commands

```bash
# Start server
cost-ops server start \
  [--port <port>] \
  [--host <host>] \
  [--database-url <url>] \
  [--config <file>]

# Health check
cost-ops server health --url <url>

# Generate config
cost-ops server config --output config.toml
```

## Configuration

### Configuration File

Create `~/.config/cost-ops/config.toml`:

```toml
[database]
url = "postgresql://user:pass@localhost/costops"

[server]
host = "0.0.0.0"
port = 8080

[auth]
jwt_secret = "your-secret-key"

[defaults]
organization = "org-123"
output_format = "table"
```

### Environment Variables

```bash
export COST_OPS_DATABASE_URL="postgresql://user:pass@localhost/costops"
export COST_OPS_API_URL="http://localhost:8080"
export COST_OPS_API_KEY="your-api-key"
export COST_OPS_ORG="org-123"
```

## Interactive Mode

Start an interactive shell:

```bash
cost-ops shell
```

```
cost-ops> query --organization org-123
cost-ops> report --type cost --format csv
cost-ops> forecast --horizon 30
cost-ops> exit
```

## Output Formats

- **table** - Formatted ASCII table (default)
- **json** - JSON format
- **csv** - CSV format
- **yaml** - YAML format
- **excel** - Excel spreadsheet
- **pdf** - PDF report

## Examples

### Monthly Cost Report Pipeline

```bash
#!/bin/bash
# Generate monthly cost report and email it

ORG="org-123"
MONTH=$(date +%Y-%m)

cost-ops report \
  --type cost \
  --organization $ORG \
  --format pdf \
  --start-date "${MONTH}-01" \
  --output "monthly-report-${MONTH}.pdf" \
  --email finance@example.com
```

### Import and Analyze

```bash
#!/bin/bash
# Import usage data and analyze

cost-ops import \
  --file ./usage-data.json \
  --format openai \
  --organization org-123

cost-ops query \
  --organization org-123 \
  --group-by model \
  --output table
```

## License

Licensed under the Apache License, Version 2.0. See [LICENSE](LICENSE) for details.

## Links

- **Documentation**: [https://docs.rs/llm-cost-ops-cli]https://docs.rs/llm-cost-ops-cli
- **Core Library**: [https://crates.io/crates/llm-cost-ops]https://crates.io/crates/llm-cost-ops
- **Repository**: [https://github.com/globalbusinessadvisors/llm-cost-ops]https://github.com/globalbusinessadvisors/llm-cost-ops