Update app.py
Browse files
app.py
CHANGED
@@ -67,7 +67,7 @@ load_dotenv() #
|
|
67 |
groq_api_key = os.environ['GROQ_API_KEY']
|
68 |
# groq_api_key = "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" # os.environ['GROQ_API_KEY']
|
69 |
# groq_api_key = "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" # JB OK 24-03-2024
|
70 |
-
print("groq_api_key: ", groq_api_key)
|
71 |
|
72 |
# st.title("Chat with Docs - Groq Edition :) ")
|
73 |
# # st.title ("this is the app title")
|
@@ -266,7 +266,7 @@ while True:
|
|
266 |
key = f"input_{i}"
|
267 |
# text_input = st.text_input(f"Enter value for {item}", key=key)
|
268 |
# Access the value directly
|
269 |
-
|
270 |
|
271 |
i=i+1
|
272 |
|
|
|
67 |
groq_api_key = os.environ['GROQ_API_KEY']
|
68 |
# groq_api_key = "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" # os.environ['GROQ_API_KEY']
|
69 |
# groq_api_key = "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" # JB OK 24-03-2024
|
70 |
+
# print("groq_api_key: ", groq_api_key)
|
71 |
|
72 |
# st.title("Chat with Docs - Groq Edition :) ")
|
73 |
# # st.title ("this is the app title")
|
|
|
266 |
key = f"input_{i}"
|
267 |
# text_input = st.text_input(f"Enter value for {item}", key=key)
|
268 |
# Access the value directly
|
269 |
+
print(f"Value for {item}: {text_input}")
|
270 |
|
271 |
i=i+1
|
272 |
|