From 3f6d707035bcc1e31a7d391a136fa506f344e74d Mon Sep 17 00:00:00 2001 From: bmerkle Date: Wed, 27 Nov 2024 17:19:59 +0100 Subject: [PATCH] added requirements.txt for easy pip deployment --- 04-prompt-engineering-fundamentals/python/requirements.txt | 3 +++ 06-text-generation-apps/python/requirements.txt | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 04-prompt-engineering-fundamentals/python/requirements.txt create mode 100644 06-text-generation-apps/python/requirements.txt diff --git a/04-prompt-engineering-fundamentals/python/requirements.txt b/04-prompt-engineering-fundamentals/python/requirements.txt new file mode 100644 index 000000000..4958d83bd --- /dev/null +++ b/04-prompt-engineering-fundamentals/python/requirements.txt @@ -0,0 +1,3 @@ +openai==1.55.1 +python-dotenv==1.0.1 +tiktoken==0.4.0 diff --git a/06-text-generation-apps/python/requirements.txt b/06-text-generation-apps/python/requirements.txt new file mode 100644 index 000000000..0c84047e1 --- /dev/null +++ b/06-text-generation-apps/python/requirements.txt @@ -0,0 +1,2 @@ +openai==1.55.1 +python-dotenv==1.0.1