Publish harness and TUI open-source
initial sync from the monorepo
This commit is contained in:
commit
c68e39f604
2734 changed files with 1437016 additions and 0 deletions
42
crates/codegen/xai-grok-agent/Cargo.toml
Normal file
42
crates/codegen/xai-grok-agent/Cargo.toml
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
[package]
|
||||
license = "Apache-2.0"
|
||||
name = "xai-grok-agent"
|
||||
version = "0.1.0"
|
||||
edition.workspace = true
|
||||
description = "Agent builder, definition parsing, and system prompt assembly"
|
||||
|
||||
[dependencies]
|
||||
dunce = { workspace = true }
|
||||
xai-grok-hooks = { path = "../xai-grok-hooks" }
|
||||
xai-grok-sampling-types = { path = "../xai-grok-sampling-types" }
|
||||
xai-grok-tools = { path = "../xai-grok-tools" }
|
||||
xai-token-estimation = { workspace = true }
|
||||
minijinja = { version = "2", features = ["custom_syntax"] }
|
||||
git2 = { version = "0.20", default-features = false, features = ["vendored-libgit2"] }
|
||||
regex = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
serde_yaml = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
tokio = { workspace = true, features = ["rt", "macros", "sync"] }
|
||||
tracing = { workspace = true }
|
||||
chrono = { workspace = true }
|
||||
ignore = { workspace = true }
|
||||
dirs = "6"
|
||||
xai-grok-config = { workspace = true }
|
||||
sha2 = { workspace = true }
|
||||
strum = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
zeroize = "1"
|
||||
xai-tool-types.workspace = true
|
||||
|
||||
[features]
|
||||
default = []
|
||||
default-bazel = []
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
serial_test = { workspace = true }
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
Loading…
Reference in a new issue