diff options
author | shelbys | 2025-01-27 13:05:18 -0600 |
---|---|---|
committer | shelbys | 2025-01-27 13:05:18 -0600 |
commit | 997742a6f0da09418b727f08318719182ac703f1 (patch) | |
tree | 29403bdb54bab610b7c4bcd8af2c96b9ebcdea8c | |
parent | 00cba4b9a1e88891f1f96a1199320092c1962343 (diff) | |
download | gn-ai-997742a6f0da09418b727f08318719182ac703f1.tar.gz |
add environment file for docker image
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | gnqa/docker-compose.yml | 6 | ||||
-rw-r--r-- | gnqa/example.env | 1 |
3 files changed, 7 insertions, 3 deletions
@@ -5,4 +5,5 @@ gnqa/paper2_eval/sys gnqa/paper2_eval/pd gnqa/paper2_eval/os gnqa/paper2_eval/json -.venv
\ No newline at end of file +.venv +rag.env diff --git a/gnqa/docker-compose.yml b/gnqa/docker-compose.yml index b4455b5..cd3e308 100644 --- a/gnqa/docker-compose.yml +++ b/gnqa/docker-compose.yml @@ -1,7 +1,9 @@ services: rag_eval_devenv: - image: paper_eval_img:0.5 + image: r2r_rag tty: true + env_file: + - rag.env volumes: - the_code_two:/code @@ -11,4 +13,4 @@ volumes: driver_opts: o: bind type: none - device: /home/shebes/Coding/gn-ai/gnqa + device: /home/shebes/Research/code/gn-ai/gnqa diff --git a/gnqa/example.env b/gnqa/example.env new file mode 100644 index 0000000..e570b8b --- /dev/null +++ b/gnqa/example.env @@ -0,0 +1 @@ +OPENAI_API_KEY= |