Skip to content

Commit b2c160d

Browse files
authored
Merge pull request #27 from caikit/rename_project
🚚 Rename project to fms guardrails orchestr8
2 parents b6f5030 + 354caa7 commit b2c160d

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "fms-orchestr8"
2+
name = "fms-guardrails-orchestr8"
33
version = "0.1.0"
44
edition = "2021"
55
authors = ["Evaline Ju", "Gaurav Kumbhat", "Dan Clark"]
@@ -10,7 +10,7 @@ build = "build.rs"
1010
path = "src/lib.rs"
1111

1212
[[bin]]
13-
name = "fms-orchestr8"
13+
name = "fms-guardrails-orchestr8"
1414
path = "src/main.rs"
1515

1616
[dependencies]

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ COPY rust-toolchain.toml rust-toolchain.toml
2121
RUN rustup component add rustfmt
2222

2323
## Orchestrator builder #########################################################
24-
FROM rust-builder as fms-orchestr8-builder
24+
FROM rust-builder as fms-guardrails-orchestr8-builder
2525

2626
COPY build.rs *.toml LICENSE /app
2727
COPY config/ /app/config
@@ -38,7 +38,7 @@ RUN cargo install --root /app/ --path .
3838

3939
FROM ${UBI_MINIMAL_BASE_IMAGE}:${UBI_BASE_IMAGE_TAG}
4040

41-
COPY --from=fms-orchestr8-builder /app/bin/ /app/bin/
41+
COPY --from=fms-guardrails-orchestr8-builder /app/bin/ /app/bin/
4242
COPY config /app/config
4343

4444
RUN microdnf install -y --disableplugin=subscription-manager shadow-utils && \
@@ -53,4 +53,4 @@ USER orchestr8
5353

5454
ENV ORCHESTRATOR_CONFIG /app/config/config.yaml
5555

56-
CMD /app/bin/fms-orchestr8
56+
CMD /app/bin/fms-guardrails-orchestr8

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# FMS Orchestr8
1+
# FMS Guardrails Orchestrator
22

33
Orchestrator server for invocation of detectors on text generation input and output [name subject to change]
44

@@ -15,7 +15,7 @@ cargo install --path .
1515

1616
To run the server locally:
1717
```sh
18-
cargo run --bin fms-orchestr8
18+
cargo run --bin fms-guardrails-orchestr8
1919
```
2020

2121
To run tests:

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use std::{
44
};
55

66
use clap::Parser;
7-
use fms_orchestr8::server;
7+
use fms_guardrails_orchestr8::server;
88
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt, EnvFilter};
99

1010
#[derive(Parser, Debug)]

0 commit comments

Comments
 (0)