Skip to content

Commit

Permalink
Merge pull request #52 from alkem-io/fix-build
Browse files Browse the repository at this point in the history
Update dependencies and fix build
  • Loading branch information
valeksiev authored Dec 4, 2024
2 parents 0ba9285 + 467f350 commit b96c53e
Show file tree
Hide file tree
Showing 3 changed files with 92 additions and 56 deletions.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Use an official Python runtime as a parent image
ARG PYTHON_VERSION=3.11
FROM python:${PYTHON_VERSION}-slim-bullseye as builder
FROM python:${PYTHON_VERSION}-slim-bullseye AS builder

RUN apt-get update
RUN apt-get install git -y

# Set the working directory in the container to /app
WORKDIR /app
Expand Down
129 changes: 81 additions & 48 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "virtual-contributor-engine-expert"
version = "0.9.0"
version = "0.9.1"
description = "Alkemio Generative AI Virtul Persona"
authors = ["Alkemio BV <[email protected]>"]
license = "EUPL-1.2"
Expand All @@ -9,18 +9,18 @@ package-mode = false

[tool.poetry.dependencies]
python = "~3.11"
langchain = "0.2.7"
langchain-core= "0.2.37"
langchain-community = "0.2.7"
openai = "1.43.0"
langchain = "0.3.9"
langchain-core = "0.3.21"
langchain-community = "0.3.9"
openai = "1.56.1"
load-dotenv = "0.1.0"
async-timeout = "4.0.3"
aio-pika = "9.3.1"
aiormq = "6.7.7"
chromadb-client = "0.4.25.dev0"
azure-ai-inference = "1.0.0b4"
langchain-openai = "0.1.23"
alkemio-virtual-contributor-engine = {git = "[email protected]:alkem-io/alkemio-virtual-contributor-engine.git", rev = "v0.0.1"}
langchain-openai = "0.2.9"
alkemio-virtual-contributor-engine = {git = "https://[email protected]/alkem-io/virtual-contributor-engine.git", rev = "v0.0.1"}

[tool.poetry.group.dev.dependencies]
flake8 = "6.1.0"
Expand Down

0 comments on commit b96c53e

Please sign in to comment.