Skip to content

Commit

Permalink
Fixes requirements for examples
Browse files Browse the repository at this point in the history
We were missing dependencies in a few.
I think this fixes all of them assuming requirements.txt was
correct in the first place.
  • Loading branch information
skrawcz committed Apr 19, 2024
1 parent 9219d05 commit e38b5e7
Show file tree
Hide file tree
Showing 20 changed files with 21 additions and 18 deletions.
2 changes: 1 addition & 1 deletion examples/conversational-rag/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"outputs": [],
"source": [
"!pip install burr"
"!pip install burr[start] sf-hamilton[visualization] openai "
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions examples/conversational-rag/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
burr
burr[start]
faiss-cpu
hamilton
langchain
langchain-community
langchain-openai
sf-hamilton
2 changes: 1 addition & 1 deletion examples/email-assistant/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"outputs": [],
"source": [
"!pip install burr"
"!pip install burr[start] openai"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world-counter/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"outputs": [],
"source": [
"!pip install burr"
"!pip install burr[start]"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world-counter/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dw-burr[streamlit]
burr[streamlit,start]
2 changes: 1 addition & 1 deletion examples/image-telephone/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"outputs": [],
"source": [
"!pip install burr"
"!pip install burr[start] openai requests"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion examples/image-telephone/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
burr
openai
requests
sf-hamilton
sf-hamilton[visualization]
2 changes: 1 addition & 1 deletion examples/llm-adventure-game/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"outputs": [],
"source": [
"!pip install burr"
"!pip install burr[start]"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion examples/llm-adventure-game/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
burr
burr[start]
openai
2 changes: 1 addition & 1 deletion examples/multi-modal-chatbot/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"metadata": {},
"outputs": [],
"source": [
"!pip install burr"
"!pip install burr[start]"
]
},
{
Expand Down
3 changes: 1 addition & 2 deletions examples/multi-modal-chatbot/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
burr[hamilton]
burr[streamlit]
burr[streamlit,start]
openai
2 changes: 1 addition & 1 deletion examples/other-examples/cowsay/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"metadata": {},
"outputs": [],
"source": [
"!pip install burr"
"!pip install burr[start]"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion examples/other-examples/cowsay/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
burr[streamlit,graphviz]
burr[streamlit,graphviz,start]
cowsay
1 change: 1 addition & 0 deletions examples/simple-chatbot-intro/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
burr[start]
2 changes: 1 addition & 1 deletion examples/streaming-overview/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"metadata": {},
"outputs": [],
"source": [
"!pip install burr"
"!pip install burr[start]"
]
},
{
Expand Down
1 change: 1 addition & 0 deletions examples/streaming-overview/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
burr[start]
2 changes: 1 addition & 1 deletion examples/test-case-creation/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"metadata": {},
"outputs": [],
"source": [
"!pip install burr"
"!pip install burr[start]"
]
},
{
Expand Down
1 change: 1 addition & 0 deletions examples/test-case-creation/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
burr[start]
2 changes: 1 addition & 1 deletion examples/tracing-and-spans/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"metadata": {},
"outputs": [],
"source": [
"!pip install burr"
"!pip install burr[start]"
]
},
{
Expand Down
1 change: 1 addition & 0 deletions examples/tracing-and-spans/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
burr[start]

0 comments on commit e38b5e7

Please sign in to comment.