You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,10 @@ generate:
25
25
generate-schema:
26
26
$(GO) run ./cmd/jsonschema-gen
27
27
28
+
# Update bundled pricing data from models.dev
29
+
update-pricing:
30
+
$(GO) run pricing/scripts/update-pricing.go
31
+
28
32
# Verify Event JSON Schema is up-to-date
29
33
verify-schema: generate-schema
30
34
@git diff --exit-code schema/event.schema.json || (echo "ERROR: schema/event.schema.json is out of date. Run 'make generate-schema' and commit the result."&&exit 1)
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -324,6 +324,7 @@ Gryph installs lightweight hooks into your AI agents. When the agent performs an
324
324
| Use Case | Description |
325
325
| --- | --- |
326
326
|[AI Coding Observability](examples/ai-coding-observability/)| Centralized observability for AI coding agents across developer endpoints using Gryph + OpenSearch. Includes SOC dashboards, threat detection alerts, and synthetic data generation. |
327
+
| Cost & Token Tracking | Track per-session token usage and estimated costs across models and agents. Group by model, agent, or day. See [docs/cost.md](docs/cost.md). |
0 commit comments