formal-ai 0.31.0

Formal symbolic AI proof of concept with OpenAI-compatible APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM rust:1.82-slim AS builder

WORKDIR /app
COPY . .
RUN cargo build --release

FROM debian:bookworm-slim

COPY --from=builder /app/target/release/formal-ai /usr/local/bin/formal-ai

EXPOSE 8080
ENTRYPOINT ["formal-ai"]
CMD ["serve", "--host", "0.0.0.0", "--port", "8080"]