Spaces:
Runtime error
Runtime error
Commit ·
bcffa84
1
Parent(s): 94a3112
Update app.py
Browse files
app.py
CHANGED
|
@@ -15,7 +15,7 @@ import os # Added for file path handling
|
|
| 15 |
import openai
|
| 16 |
|
| 17 |
|
| 18 |
-
openai.api_key = "sk-
|
| 19 |
|
| 20 |
# Download the necessary NLTK datasets
|
| 21 |
nltk.download('punkt')
|
|
@@ -75,7 +75,7 @@ def main():
|
|
| 75 |
st.title("Cryptocurrency Price Prediction and Trading Bot")
|
| 76 |
|
| 77 |
# Specify the path to the CSV file
|
| 78 |
-
csv_path = '/
|
| 79 |
|
| 80 |
# Check if the CSV file exists at the specified path
|
| 81 |
if not os.path.exists(csv_path):
|
|
|
|
| 15 |
import openai
|
| 16 |
|
| 17 |
|
| 18 |
+
openai.api_key = "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"
|
| 19 |
|
| 20 |
# Download the necessary NLTK datasets
|
| 21 |
nltk.download('punkt')
|
|
|
|
| 75 |
st.title("Cryptocurrency Price Prediction and Trading Bot")
|
| 76 |
|
| 77 |
# Specify the path to the CSV file
|
| 78 |
+
csv_path = './crypto_dataset (9).csv' # Update with your specific file path
|
| 79 |
|
| 80 |
# Check if the CSV file exists at the specified path
|
| 81 |
if not os.path.exists(csv_path):
|