Update app.py
Browse files
app.py
CHANGED
@@ -4,8 +4,8 @@ from anthropic import Anthropic
|
|
4 |
from pypdf import PdfReader
|
5 |
|
6 |
# Set up username and password
|
7 |
-
username =
|
8 |
-
password =
|
9 |
|
10 |
# Add the path to your desired knowledge base
|
11 |
reference_document = "The Learning Cycle.pdf"
|
|
|
4 |
from pypdf import PdfReader
|
5 |
|
6 |
# Set up username and password
|
7 |
+
username = os.getenv('username')
|
8 |
+
password = os.getenv('password')
|
9 |
|
10 |
# Add the path to your desired knowledge base
|
11 |
reference_document = "The Learning Cycle.pdf"
|