diff options
author | ShelbySolomonDarnell | 2024-10-01 18:58:56 +0300 |
---|---|---|
committer | ShelbySolomonDarnell | 2024-10-01 18:58:56 +0300 |
commit | 2c1e9099d34a0600918cfbe87b32d0a05003b3ef (patch) | |
tree | f3ff878edb210543f1a336b1913f84c8024f2f16 /gnqa/Dockerfile | |
parent | 184339563b23627ca41bac8736f864d1c6bbfcba (diff) | |
download | gn-ai-2c1e9099d34a0600918cfbe87b32d0a05003b3ef.tar.gz |
Got R2R responses for all human questions.
Diffstat (limited to 'gnqa/Dockerfile')
-rw-r--r-- | gnqa/Dockerfile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnqa/Dockerfile b/gnqa/Dockerfile new file mode 100644 index 0000000..43ae97e --- /dev/null +++ b/gnqa/Dockerfile @@ -0,0 +1,10 @@ +FROM python:latest +RUN pip install --no-cache-dir ragas r2r langchain_together + +RUN mkdir /code + +RUN apt update && apt -y upgrade +RUN apt install -y vim + +CMD ["/bin/sh", "-c", "bash"] + |