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.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "puma"
version = "0.0.2"
version = "0.0.3"
edition = "2021"
description = "A lightweight, high-performance inference engine for local AI."
license = "Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,19 +228,19 @@ name: inftyai/tiny-random-gpt2
kind: Model
spec:
author: inftyai
provider: huggingface
model_series: gpt2
task: text-generation
license: MIT
model_series: gpt2
context_window: 2.05K
safetensors:
total: 7.00B
parameters:
f32: 7.00B
provider: huggingface
cache:
revision: abc123de
size: 1.24 GB
cache_path: ~/.puma/cache/...
path: ~/.puma/cache/...
Comment thread
kerthcet marked this conversation as resolved.
status:
created: 2 hours ago
updated: 2 hours ago
Expand Down
2 changes: 1 addition & 1 deletion src/cli/inspect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ pub fn display(model: &ModelInfo) {
" author: {}",
model.author.as_deref().unwrap_or("N/A")
);
println!(" provider: {}", model.provider);
println!(
" model_series: {}",
model.model_series.as_deref().unwrap_or("N/A")
Expand Down Expand Up @@ -66,6 +65,7 @@ pub fn display(model: &ModelInfo) {
println!(" safetensors: N/A");
}

println!(" provider: {}", model.provider);
// Cache section
println!(" cache:");
println!(" revision: {}", model.metadata.cache.revision);
Expand Down
Loading