Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,8 +2,9 @@ import os
|
|
2 |
import streamlit as st
|
3 |
import openai
|
4 |
import pandas as pd
|
5 |
-
from uuid import uuid4
|
6 |
import time
|
|
|
|
|
7 |
|
8 |
# 🔑 Set the OpenAI API key from an environment variable
|
9 |
openai.api_key = os.getenv("OPENAI_API_KEY")
|
|
|
2 |
import streamlit as st
|
3 |
import openai
|
4 |
import pandas as pd
|
|
|
5 |
import time
|
6 |
+
from typing import List, Tuple # Add Tuple import here
|
7 |
+
from uuid import uuid4
|
8 |
|
9 |
# 🔑 Set the OpenAI API key from an environment variable
|
10 |
openai.api_key = os.getenv("OPENAI_API_KEY")
|