Skip to content

Commit 70cd673

Browse files
author
Symbiont OSS Sync
committed
Prep release
1 parent 8f5362a commit 70cd673

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "symbi"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["Jascha Wanger / ThirdKey.ai"]
66
description = "AI-native agent framework for building autonomous, policy-aware agents that can safely collaborate with humans, other agents, and large language models"

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ RUN mkdir -p src crates/dsl/src crates/runtime/src/bin && \
4848
# Build dependencies only with optimized settings (cached layer)
4949
RUN --mount=type=cache,target=/usr/local/cargo/registry \
5050
--mount=type=cache,target=/app/target \
51-
cargo build --release --features "http-input" && \
51+
cargo build --release && \
5252
rm -rf target/release/deps/symbi* target/release/symbi*
5353

5454
# Copy actual source code (invalidates cache only when source changes)
@@ -58,7 +58,7 @@ COPY crates/ ./crates/
5858
# Build the unified symbi binary with cached dependencies
5959
RUN --mount=type=cache,target=/usr/local/cargo/registry \
6060
--mount=type=cache,target=/app/target \
61-
cargo build --release --features "http-input" && \
61+
cargo build --release && \
6262
cp target/release/symbi /tmp/symbi
6363

6464
# Runtime stage - minimal security-hardened image

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ cargo build --features http-api
5959

6060
# Or add to Cargo.toml
6161
[dependencies]
62-
symbi-runtime = { version = "0.1.0", features = ["http-api"] }
62+
symbi-runtime = { version = "0.1.2", features = ["http-api"] }
6363
```
6464
6565
**Key Endpoints:**
@@ -257,3 +257,7 @@ Contact [ThirdKey](https://thirdkey.ai) for Enterprise licensing.
257257
---
258258
259259
*Symbi enables secure collaboration between AI agents and humans through intelligent policy enforcement, cryptographic verification, and comprehensive audit trails.*
260+
261+
<div align="right">
262+
<img src="symbi-trans.png" alt="Symbi Transparent Logo" width="120">
263+
</div>

crates/dsl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "symbi-dsl"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["Jascha Wanger / ThirdKey.ai"]
66
description = "Symbi DSL - AI-native programming language with Tree-sitter integration"

crates/runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "symbi-runtime"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["Jascha Wanger / ThirdKey.ai"]
66
description = "Agent Runtime System for the Symbi platform"

0 commit comments

Comments
 (0)