Skip to content
This repository was archived by the owner on Mar 19, 2026. It is now read-only.

Commit 7838847

Browse files
committed
Add updated project repositories
Generated automatically by the following commands: ```bash # Delete previous versions of repositories rm -rf diplomacy_cicero/ # Clone new copies of repositories # `--revision` option was added in Git `2.49.0` git clone --revision 39e8478d2ad47166694b07e1c6ab250ea627e1e4 --depth 1 git@github.com:ALLAN-DIP/baseline-models.git git clone --revision 9f6303f104d3949b91e4a381698eb5d3733be1a8 --depth 1 git@github.com:ALLAN-DIP/chiron-utils.git git clone --revision 33b28982ba2b294e0508a263662ec92f7cff89b9 --depth 1 git@github.com:ALLAN-DIP/diplomacy.git # The `--force` argument is needed because some committed files were included in `.gitignore`, # and some are required for Cicero to build! git clone --revision 98570d0fdac1d66e80eceba855d2eec62a1b8246 --depth 1 --recurse-submodules --shallow-submodules git@github.com:ALLAN-DIP/diplomacy_cicero.git # Add cloned repositories to this repository rm -rf */.git git add . git add --force diplomacy_cicero/{thirdparty,unit_tests}/ # Re-arrange directories for proper building mv diplomacy/ baseline-models/ mv baseline-models/ chiron-utils/ mv chiron-utils/ diplomacy_cicero/ # Add LR model wget https://github.com/ALLAN-DIP/large-file-storage/raw/refs/heads/main/lr_models/lr_20250114.zip unzip lr_20250114.zip mv lr_20250114/ diplomacy_cicero/chiron-utils/lr_model rm lr_20250114.zip ```
1 parent fcc748d commit 7838847

File tree

318 files changed

+207
-87
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

318 files changed

+207
-87
lines changed

diplomacy_cicero/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ RUN pip install --no-cache-dir -e ./thirdparty/github/fairinternal/postman/nest/
4545
&& pip install --no-cache-dir -e ./thirdparty/github/fairinternal/postman/postman/
4646

4747
# Install application requirements
48-
COPY chiron-utils/ chiron-utils/
4948
COPY requirements-lock.txt .
5049
RUN pip install --no-cache-dir -r requirements-lock.txt \
5150
&& spacy download en_core_web_sm

diplomacy_cicero/chiron-utils/CONTRIBUTING.md

Lines changed: 9 additions & 6 deletions

diplomacy_cicero/chiron-utils/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
# Use the command `hadolint Dockerfile` to test
55
# Adding Hadolint to `pre-commit` is non-trivial, so the command must be run manually
66

7+
FROM ghcr.io/allan-dip/chiron-utils:baseline-lr-model-2025-01-14 AS baseline-lr-model
8+
79
FROM python:3.11.13-slim-bookworm AS base
810

911
# Allow bot to detect whether running in a container
@@ -22,8 +24,6 @@ RUN pip install --no-cache-dir --upgrade pip==25.1.1 \
2224
&& pip uninstall --yes setuptools wheel
2325

2426
# Install required packages
25-
COPY baseline-models/ baseline-models/
26-
COPY diplomacy/ diplomacy/
2727
COPY requirements-lock.txt .
2828
COPY pyproject.toml .
2929
ARG TARGET
@@ -44,4 +44,4 @@ LABEL org.opencontainers.image.source=https://github.com/ALLAN-DIP/chiron-utils
4444

4545
FROM base AS baseline-lr
4646

47-
COPY lr_model/ lr_model/
47+
COPY --from=baseline-lr-model lr_model/ lr_model/

diplomacy_cicero/chiron-utils/README.md

Lines changed: 20 additions & 8 deletions

diplomacy_cicero/chiron-utils/baseline-models/README.md

Lines changed: 39 additions & 12 deletions

diplomacy_cicero/chiron-utils/diplomacy/.dockerignore renamed to diplomacy_cicero/chiron-utils/baseline-models/diplomacy/.dockerignore

File renamed without changes.

diplomacy_cicero/chiron-utils/diplomacy/.editorconfig renamed to diplomacy_cicero/chiron-utils/baseline-models/diplomacy/.editorconfig

File renamed without changes.

diplomacy_cicero/chiron-utils/diplomacy/.github/workflows/checks.yaml renamed to diplomacy_cicero/chiron-utils/baseline-models/diplomacy/.github/workflows/checks.yaml

File renamed without changes.

diplomacy_cicero/chiron-utils/diplomacy/.gitignore renamed to diplomacy_cicero/chiron-utils/baseline-models/diplomacy/.gitignore

File renamed without changes.

diplomacy_cicero/chiron-utils/diplomacy/.markdownlint.yaml renamed to diplomacy_cicero/chiron-utils/baseline-models/diplomacy/.markdownlint.yaml

File renamed without changes.

0 commit comments

Comments
 (0)