File size: 11,921 Bytes
8d426c6 5dbc77d 8d426c6 5dbc77d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 |
import streamlit as st
import os
import gc
from firecrawl import FirecrawlApp
from dotenv import load_dotenv
import time
import pandas as pd
from typing import Dict, Any
import base64
from pydantic import BaseModel, Field
import inspect
from langchain_openai import ChatOpenAI
from langchain.schema import HumanMessage
from langchain.callbacks.base import BaseCallbackHandler
from langdetect import detect
# Page configuration
st.set_page_config(
page_title="Multilingual Website Data Extractor",
page_icon="π",
layout="wide"
)
# Define supported languages
languages = [
"English", "Hindi", "Gujarati", "Bengali", "Tamil",
"Telugu", "Kannada", "Malayalam", "Punjabi", "Marathi",
"Urdu", "Assamese", "Odia", "Sanskrit", "Korean",
"Japanese", "Arabic", "French", "German", "Spanish",
"Portuguese", "Russian", "Chinese", "Vietnamese", "Thai",
"Indonesian", "Turkish", "Polish", "Ukrainian", "Dutch",
"Italian", "Greek", "Hebrew", "Persian", "Swedish",
"Norwegian", "Danish", "Finnish", "Czech", "Hungarian",
"Romanian", "Bulgarian", "Croatian", "Serbian", "Slovak",
"Slovenian", "Estonian", "Latvian", "Lithuanian", "Malay",
"Tagalog", "Swahili"
]
# Language code mapping
language_codes = {
"English": "en", "Hindi": "hi", "Gujarati": "gu", "Bengali": "bn", "Tamil": "ta",
"Telugu": "te", "Kannada": "kn", "Malayalam": "ml", "Punjabi": "pa", "Marathi": "mr",
"Urdu": "ur", "Assamese": "as", "Odia": "or", "Sanskrit": "sa", "Korean": "ko",
"Japanese": "ja", "Arabic": "ar", "French": "fr", "German": "de", "Spanish": "es",
"Portuguese": "pt", "Russian": "ru", "Chinese": "zh", "Vietnamese": "vi", "Thai": "th",
"Indonesian": "id", "Turkish": "tr", "Polish": "pl", "Ukrainian": "uk", "Dutch": "nl",
"Italian": "it", "Greek": "el", "Hebrew": "he", "Persian": "fa", "Swedish": "sv",
"Norwegian": "no", "Danish": "da", "Finnish": "fi", "Czech": "cs", "Hungarian": "hu",
"Romanian": "ro", "Bulgarian": "bg", "Croatian": "hr", "Serbian": "sr", "Slovak": "sk",
"Slovenian": "sl", "Estonian": "et", "Latvian": "lv", "Lithuanian": "lt", "Malay": "ms",
"Tagalog": "tl", "Swahili": "sw"
}
# Streaming callback handler
class StreamHandler(BaseCallbackHandler):
def __init__(self, container, initial_text=""):
self.container = container
self.text = initial_text
self.run_id_ignore_token = None
def on_llm_new_token(self, token: str, **kwargs):
self.text += token
self.container.markdown(self.text)
load_dotenv()
firecrawl_api_key = os.getenv("FIRECRAWL_API_KEY")
sutra_api_key = os.getenv("SUTRA_API_KEY")
@st.cache_resource
def load_app():
app = FirecrawlApp(api_key=firecrawl_api_key)
return app
# Initialize the ChatOpenAI model
@st.cache_resource
def get_chat_model():
if not st.session_state.get("sutra_api_key"):
raise ValueError("SUTRA API key is not set. Please enter your API key in the sidebar.")
return ChatOpenAI(
api_key=st.session_state.sutra_api_key,
base_url="https://api.two.ai/v2",
model="sutra-v2",
temperature=0.7,
)
def translate_text(text: str, target_lang: str = "en") -> str:
"""Translate text to target language using Sutra model."""
try:
chat = get_chat_model()
# Make the translation prompt more specific and strict
prompt = f"""Translate the following text to {target_lang}.
Important:
1. Only provide the translation, no explanations
2. Maintain the exact same format and structure
3. If it's a table, keep the table format
4. If it's a list, keep the list format
5. Ensure the output is strictly in {target_lang} language
6. Do not include any other language in the response
7. If the text is already in {target_lang}, return it as is
Text to translate: {text}"""
response = chat.invoke([HumanMessage(content=prompt)])
return response.content.strip()
except ValueError as ve:
st.error(str(ve))
return text
except Exception as e:
st.error(f"Translation error: {str(e)}")
return text
# Initialize session state
if "messages" not in st.session_state:
st.session_state.messages = []
if "urls" not in st.session_state:
st.session_state.urls = [""] # Initialize with one empty URL
def add_url():
st.session_state.urls.append("")
def remove_url(index):
if len(st.session_state.urls) > 1: # Keep at least one URL input
st.session_state.urls.pop(index)
def reset_chat():
st.session_state.messages = []
gc.collect()
def convert_to_table(data):
"""Convert a list of dictionaries to a simple markdown table."""
if not data:
return ""
if isinstance(data, dict):
data = [data]
elif isinstance(data, list):
pass
else:
return ""
df = pd.DataFrame(data)
return df.to_markdown(index=False)
def stream_text(text: str, delay: float = 0.001) -> None:
"""Stream text with a typing effect."""
placeholder = st.empty()
displayed_text = ""
for char in text:
displayed_text += char
placeholder.markdown(displayed_text)
time.sleep(delay)
return placeholder
# Main content area
st.markdown(
f'<h1><img src="https://framerusercontent.com/images/9vH8BcjXKRcC5OrSfkohhSyDgX0.png" width="60" style="vertical-align: middle;"/>Multilingual Chat via URLs <img src="https://static.vecteezy.com/system/resources/previews/036/004/783/non_2x/website-logo-searching-illustration-free-png.png" width="70" height="70" style="vertical-align: middle;"/></h1>',
unsafe_allow_html=True
)
# Sidebar
with st.sidebar:
st.header("Configuration")
# API Key sections
st.markdown("### API Keys")
st.markdown("**SUTRA API**")
st.markdown("Get your free API key from [SUTRA API](https://www.two.ai/sutra/api)")
sutra_api_key = st.text_input("Enter your Sutra API Key:",
value=st.session_state.get("sutra_api_key", ""),
type="password",
label_visibility="collapsed")
if sutra_api_key:
st.session_state.sutra_api_key = sutra_api_key
st.markdown("**Firecrawl API**")
st.markdown("Get your API key from [Firecrawl](https://firecrawl.dev/)")
firecrawl_api_key = st.text_input("Enter your Firecrawl API Key:",
value=st.session_state.get("firecrawl_api_key", ""),
type="password",
label_visibility="collapsed")
if firecrawl_api_key:
st.session_state.firecrawl_api_key = firecrawl_api_key
# Language selector
selected_language = st.selectbox("Select output language:", languages)
# Website URLs input with plus button
st.markdown("### Website URLs")
for i, url in enumerate(st.session_state.urls):
col1, col2 = st.columns([4, 1])
with col1:
st.session_state.urls[i] = st.text_input(
f"URL {i+1}",
value=url,
placeholder="https://example.com",
key=f"url_{i}"
)
with col2:
if i == len(st.session_state.urls) - 1: # Only show plus button on last URL input
st.button("β", key=f"add_{i}", on_click=add_url)
if len(st.session_state.urls) > 1: # Show remove button if more than one URL
st.button("β", key=f"remove_{i}", on_click=lambda i=i: remove_url(i))
# Chat interface
for message in st.session_state.messages:
with st.chat_message(message["role"]):
st.markdown(message["content"])
if prompt := st.chat_input("Ask about the website in any language..."):
st.session_state.messages.append({"role": "user", "content": prompt})
with st.chat_message("user"):
st.markdown(prompt)
with st.chat_message("assistant"):
# Filter out empty URLs
valid_urls = [url for url in st.session_state.urls if url.strip()]
if not valid_urls:
st.error("Please enter at least one website URL!")
elif not st.session_state.get("sutra_api_key"):
st.error("Please enter your SUTRA API key in the sidebar!")
elif not st.session_state.get("firecrawl_api_key"):
st.error("Please enter your Firecrawl API key in the sidebar!")
else:
try:
with st.spinner("Processing your request..."):
# Get target language code
target_lang = language_codes[selected_language]
# Detect input language
input_lang = detect(prompt)
# Translate to English if not already in English
if input_lang != 'en':
translated_prompt = translate_text(prompt, "en")
else:
translated_prompt = prompt
# Extract data from website
app = load_app()
extract_params = {
'prompt': translated_prompt
}
# Process all valid URLs
all_data = []
for url in valid_urls:
try:
# Call extract with correct parameters - URLs must be in an array
data = app.extract([url], extract_params)
if isinstance(data, dict) and 'data' in data:
all_data.append(data['data'])
else:
all_data.append(data)
except Exception as e:
st.warning(f"Error processing URL {url}: {str(e)}")
continue
if not all_data:
st.error("No data could be extracted from any of the provided URLs.")
else:
# Combine all data
if len(all_data) == 1:
response = str(all_data[0])
else:
response = "\n\n".join([f"Results from {url}:\n{str(data)}"
for url, data in zip(valid_urls, all_data)])
# Always translate to selected language if not English
if target_lang != 'en':
# Add a verification step for translation
st.info(f"Translating to {selected_language}...")
response = translate_text(response, target_lang)
# Verify the translation
detected_lang = detect(response)
if detected_lang != target_lang:
# If translation is not in the correct language, try again with more strict prompt
st.warning(f"Detected language ({detected_lang}) doesn't match target language ({target_lang}). Retrying translation...")
response = translate_text(response, target_lang)
st.markdown(response)
st.session_state.messages.append({"role": "assistant", "content": response})
except Exception as e:
st.error(f"An error occurred: {str(e)}")
st.info("Please check your API keys and try again.") |