You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,8 @@
1
+
# AI Tools for Developers
2
+
3
+
Agentic AI workflows enabled by Docker containers.
4
+
5
+
Source for many experiments in our [LinkedIn newsletter](https://www.linkedin.com/newsletters/docker-labs-genai-7204877599427194882/)
1
6
2
7
## Running Prompts
3
8
@@ -36,6 +41,11 @@ docker run --rm \
36
41
37
42
## Running a Conversation Loop
38
43
44
+
Set OpenAI key
45
+
```sh
46
+
echo$OPENAI_API_KEY>$HOME/.openai-api-key
47
+
```
48
+
Run
39
49
```sh
40
50
docker run --rm \
41
51
-it \
@@ -56,6 +66,11 @@ If you want to run a conversation loop with local prompts then you need to think
56
66
and the one that contains your prompts (let's call that $PROMPTS_DIR). Here's a command line for running the prompts when our $PWD is the project root and we've set the environment variable
57
67
$PROMPTS_DIR to point at the directory containing our prompts.
0 commit comments