-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
7 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
- **General Information:** The digital assistant is an automated system powered by an LLM. Despite my best efforts, I cannot guarantee the accuracy, completeness, or timeliness of the answers. (In fact, creating an accurate and reliable digital assistant is a rather difficult task where even large companies can fail). | ||
- **Responsibility:** You are solely responsible for your interactions with the digital assistant and any reliance you place on the information provided. It is important that you exercise caution and discretion in interpreting and acting upon the digital assistant's responses. I cannot be held liable for any actions, losses or damages resulting from the use of my digital assistant. | ||
- **Privacy and Security:** Please be aware that conversations are logged and may be reviewed by me to improve the responses of the digital assistant. Also, the providers (e.g. [Groq](https://groq.com/)) of the Model API may use parts of your conversation. Do not include sensitive or personal information in your conversations. | ||
- **Privacy and Security:** Please be aware that conversations are logged and may be reviewed by me to improve the responses of the digital assistant. Also, the LLM API provider ([Groq](https://groq.com/)) of the Model API may use parts of your conversation. Do not include sensitive information in your conversations, which you would not want to share with others. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
A vibrant, colorful header image filled with a variety of edible plants such as fresh fruits, vegetables, leafy greens, and herbs like carrots, tomatoes, bell peppers, spinach, avocados, berries, broccoli, cucumbers, and herbs. In the middle, show the head of a friendly, human-like robot with a smiling, gentle expression. To symbolize that this is science-based, add subtle scientific elements like DNA strands, molecular structures, and beakers with healthy-looking liquids. These should be integrated naturally into the scene, blending with the colorful plants and the robot. No text or letters should be included. |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import streamlit as st | ||
|
||
# Page title | ||
st.title("Redirecting...") | ||
|
||
# Specify the URL to redirect to | ||
redirect_url = "https://nutrify-your-life.streamlit.app/" # Replace with the desired URL | ||
|
||
# Automatically redirect after 2 seconds | ||
st.markdown( | ||
f""" | ||
<meta http-equiv="refresh" content="2; url={redirect_url}"> | ||
If you are not redirected automatically, click <a href="{redirect_url}">here</a>. | ||
""", | ||
unsafe_allow_html=True, | ||
) |