Skip to content
Merged
Show file tree
Hide file tree
Changes from 10 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
8 changes: 0 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,6 @@ on:

jobs:
# --------------------------------------------------------------------------------
tracel-macros:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
with:
crate: tracel-macros
secrets:
CRATES_IO_API_TOKEN: ${{ secrets.CRATES_IO_API_TOKEN }}
# --------------------------------------------------------------------------------
tracel-inference:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
with:
Expand Down Expand Up @@ -80,7 +73,6 @@ jobs:
- tracel-experiment
- tracel-fleet
- tracel-inference
- tracel-macros
- tracel-app
secrets:
CRATES_IO_API_TOKEN: ${{ secrets.CRATES_IO_API_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@
target/

examples/**/.env
.claude/
133 changes: 91 additions & 42 deletions Cargo.lock

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

25 changes: 9 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ readme = "README.md"
license = "MIT OR Apache-2.0"
rust-version = "1.87.0"
authors = ["Tracel Technologies Inc."]
repository = "https://github.com/tracel-ai/burn-central"
keywords = ["tracel", "burn-central", "burn", "sdk"]
repository = "https://github.com/tracel-ai/tracel"
keywords = ["tracel", "burn", "sdk"]
categories = ["development-tools"]

[workspace.dependencies]
Expand Down Expand Up @@ -47,7 +47,9 @@ crossbeam = { version = "0.8.4", default-features = false, features = [
"crossbeam-channel",
"std",
] }
json-patch = { version = "4.2.0", default-features = false }
json-patch = { version = "4.1.0", default-features = false }
axum = "0.8"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net"] }
variadics_please = "1.1.0"
tynm = { version = "0.2.0", features = ["info"] }
derive_more = { version = "2.1.1", default-features = false, features = [
Expand All @@ -63,29 +65,20 @@ tracing-subscriber = "0.3.23"
opentelemetry = { version = "0.31.0", features = ["metrics"] }

## External Crate
# tracel-client = { git = "https://github.com/tracel-ai/burn-central-client", rev = "cea0a58fde9fdcf85de2c147dd361f92613d8d84", default-features = false, features = [
# "tracel",
# "station",
# ] }
# tracel-client = { git = "https://github.com/tracel-ai/burn-central-client", branch = "fix/use-rustls", default-features = false, features = [
# "tracel",
# "station",
# ] }
tracel-client = { version = "0.8.1", default-features = false, features = ["tracel", "station" ] }


tracel-client = { git = "https://github.com/tracel-ai/tracel-client", rev = "cea0a58fde9fdcf85de2c147dd361f92613d8d84", default-features = false, features = [
"tracel",
"station",
] }
Comment thread
Marc-AnthonyG marked this conversation as resolved.
Outdated

## Crate
tracel-app = { path = "crates/tracel-app", version = "0.7.0" }
tracel-macros = { path = "crates/tracel-macros", version = "0.7.0" }
tracel-inference = { path = "crates/tracel-inference", version = "0.7.0" }
tracel-fleet = { path = "crates/tracel-fleet", version = "0.7.0" }
tracel-artifact = { path = "crates/tracel-artifact", version = "0.7.0" }
tracel-experiment = { path = "crates/tracel-experiment", version = "0.7.0" }
tracel-core = { path = "crates/tracel-core", version = "0.7.0" }
tracel = { path = "crates/tracel", version = "0.7.0" }


### For xtask crate ###
tracel-xtask = "4.19.0"

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[![Current Crates.io Version](https://img.shields.io/crates/v/burn-central)](https://crates.io/crates/burn-central)
[![Minimum Supported Rust Version](https://img.shields.io/crates/msrv/burn-central)](https://crates.io/crates/burn-central)
[![Test Status](https://github.com/tracel-ai/burn-central/actions/workflows/ci.yml/badge.svg)](https://github.com/tracel-ai/burn-central/actions/workflows/ci.yml)
[![Test Status](https://github.com/tracel-ai/tracel/actions/workflows/ci.yml/badge.svg)](https://github.com/tracel-ai/burn-central/actions/workflows/ci.yml)
Comment thread
Copilot marked this conversation as resolved.
Outdated
![license](https://shields.io/badge/license-MIT%2FApache--2.0-blue)

---
Expand All @@ -17,7 +17,7 @@ Tracel is a new way of using Burn. It aims at providing a central platform for e

This repository contains the SDK associated with the project. It offers macros that help attach to your code and send training data to our application. To use this project you must first create an account on the [application](https://s1-central.burn.dev/).

Also needed to use this is the new [burn-cli](https://github.com/tracel-ai/burn-central-cli).
Also needed to use this is the new [burn-cli](https://github.com/tracel-ai/tracel-cli).
Comment thread
Zatiji marked this conversation as resolved.
Outdated

## Installation

Expand Down Expand Up @@ -104,13 +104,13 @@ let learner = LearnerBuilder::new(artifact_dir)

### 3. Run your training

Once integrated, run your training using the [burn-cli](https://github.com/tracel-ai/burn-central-cli) to automatically track metrics, checkpoints, and logs on Burn Central.
Once integrated, run your training using the [burn-cli](https://github.com/tracel-ai/tracel-cli) to automatically track metrics, checkpoints, and logs on Burn Central.

## Requirements

- Rust 1.87.0 or higher
- A Burn Central account (create one at [central.burn.dev](https://central.burn.dev/))
- The [burn-cli](https://github.com/tracel-ai/burn-central-cli)
- The [burn-cli](https://github.com/tracel-ai/tracel-cli)

## Contribution

Expand Down
6 changes: 6 additions & 0 deletions crates/tracel-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,16 @@ repository.workspace = true
keywords.workspace = true
categories.workspace = true

[features]
default = []
server = ["dep:axum", "dep:tokio"]

[dependencies]
clap.workspace = true
tracel-experiment.workspace = true
serde.workspace = true
serde_json.workspace = true
json-patch.workspace = true
thiserror.workspace = true
axum = { workspace = true, optional = true }
tokio = { workspace = true, optional = true }
Loading
Loading