Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,11 +1,13 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
import pandas as pd
|
|
|
|
| 3 |
import os
|
| 4 |
from io import BytesIO
|
| 5 |
import google.generativeai as genai
|
| 6 |
from typing import List, Dict
|
| 7 |
import json
|
| 8 |
import tempfile
|
|
|
|
| 9 |
|
| 10 |
# Initialize Google Gemini AI client
|
| 11 |
genai.configure(api_key=os.environ["GOOGLE_API_KEY"])
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
import pandas as pd
|
| 3 |
+
import numpy as np
|
| 4 |
import os
|
| 5 |
from io import BytesIO
|
| 6 |
import google.generativeai as genai
|
| 7 |
from typing import List, Dict
|
| 8 |
import json
|
| 9 |
import tempfile
|
| 10 |
+
import re
|
| 11 |
|
| 12 |
# Initialize Google Gemini AI client
|
| 13 |
genai.configure(api_key=os.environ["GOOGLE_API_KEY"])
|