File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
- name = " fms-orchestr8"
2
+ name = " fms-guardrails- orchestr8"
3
3
version = " 0.1.0"
4
4
edition = " 2021"
5
5
authors = [" Evaline Ju" , " Gaurav Kumbhat" , " Dan Clark" ]
@@ -10,7 +10,7 @@ build = "build.rs"
10
10
path = " src/lib.rs"
11
11
12
12
[[bin ]]
13
- name = " fms-orchestr8"
13
+ name = " fms-guardrails- orchestr8"
14
14
path = " src/main.rs"
15
15
16
16
[dependencies ]
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ COPY rust-toolchain.toml rust-toolchain.toml
21
21
RUN rustup component add rustfmt
22
22
23
23
# # Orchestrator builder #########################################################
24
- FROM rust-builder as fms-orchestr8-builder
24
+ FROM rust-builder as fms-guardrails- orchestr8-builder
25
25
26
26
COPY build.rs *.toml LICENSE /app
27
27
COPY config/ /app/config
@@ -38,7 +38,7 @@ RUN cargo install --root /app/ --path .
38
38
39
39
FROM ${UBI_MINIMAL_BASE_IMAGE}:${UBI_BASE_IMAGE_TAG}
40
40
41
- COPY --from=fms-orchestr8-builder /app/bin/ /app/bin/
41
+ COPY --from=fms-guardrails- orchestr8-builder /app/bin/ /app/bin/
42
42
COPY config /app/config
43
43
44
44
RUN microdnf install -y --disableplugin=subscription-manager shadow-utils && \
@@ -53,4 +53,4 @@ USER orchestr8
53
53
54
54
ENV ORCHESTRATOR_CONFIG /app/config/config.yaml
55
55
56
- CMD /app/bin/fms-orchestr8
56
+ CMD /app/bin/fms-guardrails- orchestr8
Original file line number Diff line number Diff line change 1
- # FMS Orchestr8
1
+ # FMS Guardrails Orchestrator
2
2
3
3
Orchestrator server for invocation of detectors on text generation input and output [ name subject to change]
4
4
@@ -15,7 +15,7 @@ cargo install --path .
15
15
16
16
To run the server locally:
17
17
``` sh
18
- cargo run --bin fms-orchestr8
18
+ cargo run --bin fms-guardrails- orchestr8
19
19
```
20
20
21
21
To run tests:
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use std::{
4
4
} ;
5
5
6
6
use clap:: Parser ;
7
- use fms_orchestr8 :: server;
7
+ use fms_guardrails_orchestr8 :: server;
8
8
use tracing_subscriber:: { layer:: SubscriberExt , util:: SubscriberInitExt , EnvFilter } ;
9
9
10
10
#[ derive( Parser , Debug ) ]
You can’t perform that action at this time.
0 commit comments