Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move llm_core #346

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
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
Loading