Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
resolver = "2"
members = ["crates/cortexkit-paths", "crates/cortexkit-lease", "crates/cortexkit-store-types", "crates/cortexkit-store", "crates/cortexkit-store-postgres", "crates/cortexkit-cache-core"]
members = ["crates/cortexkit-paths", "crates/cortexkit-lease", "crates/cortexkit-store-types", "crates/cortexkit-store", "crates/cortexkit-store-postgres", "crates/cortexkit-cache-core", "crates/cortexkit-model-catalog"]

# cortexkit/commons — neutral home for cross-product CortexKit primitives.
# Shared by subc, AFT, and Magic Context. Each crate is published independently
Expand Down
16 changes: 16 additions & 0 deletions crates/cortexkit-model-catalog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# cortexkit-model-catalog — the shared REPRESENTATION of the models.dev model
# catalog: types + parsing only, NO bundled data. Consumers (broca for
# capabilities, astrocyte for pricing) parse the same shape by construction;
# each brings its own snapshot and owns its own derived stores.
[package]
name = "cortexkit-model-catalog"
version = "0.1.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
description = "Shared parsing + types for the models.dev model catalog (no data): providers, models, capabilities, and exact integer-nanodollar cost rates."

[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Loading