Skip to content

Commit

Permalink
Move llm_core (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixTJDietrich authored Oct 11, 2024
1 parent 9521121 commit 2d62940
Show file tree
Hide file tree
Showing 19 changed files with 2,042 additions and 1,814 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Build llm_core image
id: set-image-core_llm
run: |
cd modules/llm_core
cd ./llm_core
docker build -t llm_core .
cd ..
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
command: echo "Athena build succeeded, exiting (this is normal)"

llm_core:
build: modules/llm_core
build: ./llm_core
depends_on:
- athena
image: llm_core
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1,056 changes: 524 additions & 532 deletions modules/llm_core/poetry.lock → llm_core/poetry.lock

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT"

[tool.poetry.dependencies]
python = "3.11.*"
athena = {path = "../../athena", develop = true}
athena = {path = "../athena", develop = true}
langsmith = ">=0.1.0,<0.2.0"
gitpython = "3.1.41"
langchain = "0.2.15"
Expand Down
831 changes: 477 additions & 354 deletions modules/modeling/module_modeling_llm/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion modules/modeling/module_modeling_llm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
python = "3.11.*"
athena = { path = "../../../athena", develop = true }
#athena = { git = "https://github.com/ls1intum/Athena.git", rev = "d9ff3bd", subdirectory = "athena"}
llm_core = { path = "../../llm_core", develop = true }
llm_core = { path = "../../../llm_core", develop = true }
python-dotenv = "1.0.0"
nltk = "3.8.1"
gitpython = "3.1.41"
Expand Down
897 changes: 509 additions & 388 deletions modules/programming/module_programming_llm/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion modules/programming/module_programming_llm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ python = "3.11.*"
# athena = { path = "../athena", develop = true }
athena = { path = "../../../athena", develop = true }
#athena = { git = "https://github.com/ls1intum/Athena.git", rev = "2da2d33", subdirectory = "athena"}
llm_core = { path = "../../llm_core", develop = true }
llm_core = { path = "../../../llm_core", develop = true }
gitpython = "^3.1.41"
tiktoken = "0.7.0"
promptlayer = "^0.1.85"
Expand Down
1,060 changes: 526 additions & 534 deletions modules/text/module_text_llm/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion modules/text/module_text_llm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
python = "3.11.*"
athena = { path = "../../../athena", develop = true }
# athena = { git = "https://github.com/ls1intum/Athena.git", rev = "2da2d33", subdirectory = "athena"}
llm_core = { path = "../../llm_core", develop = true }
llm_core = { path = "../../../llm_core", develop = true }
langsmith = ">=0.1.0,<0.2.0"
gitpython = "3.1.41"
nltk = "3.8.1"
Expand Down

0 comments on commit 2d62940

Please sign in to comment.