Spaces:
Running
Running
File size: 2,167 Bytes
c0a2f04 fa55365 c8a34e3 c0a2f04 07df051 c0a2f04 fa55365 c0a2f04 fa55365 c0a2f04 fa55365 c0a2f04 fa55365 c0a2f04 07df051 |
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 |
import streamlit as st
from gpt_researcher import GPTResearcher
import asyncio
import nest_asyncio
# Access secrets
openai_api_key = st.secrets["OPENAI_API_KEY"]
tavily_api_key = st.secrets["TAVILY_API_KEY"]
# Apply the asyncio patch from nest_asyncio if required
nest_asyncio.apply()
# Constants
REPORT_TYPE = "research_report" # Fixed report type
PREDEFINED_SOURCES = [
"https://hexdocs.pm/google_api_content_warehouse/",
"https://ipullrank.com/google-algo-leak",
"https://sparktoro.com/blog/an-anonymous-source-shared-thousands-of-leaked-google-search-api-documents-with-me-everyone-in-seo-should-see-them/"]
async def fetch_report(query, report_type, sources):
"""
Fetch a research report based on the provided query, report type, and sources.
This function assumes that `GPTResearcher` has methods to conduct research and write a report.
"""
# Initialize the researcher with required parameters
researcher = GPTResearcher(query=query, report_type=report_type, source_urls=sources)
# Conduct research
await researcher.conduct_research()
# Write the report after research has been conducted
report = await researcher.write_report()
# Return the completed report
return report
# Function to handle asynchronous calls
def run_async(coroutine):
loop = asyncio.get_event_loop()
return loop.run_until_complete(coroutine)
# Streamlit interface
st.title("Google Leak Reporting Tool")
# User input for the query
query = st.text_input(
"Enter your research query:",
"Extract all the information about how the ranking for internal links works."
)
# Button to generate report
if st.button("Generate Report"):
if not query:
st.warning("Please enter a query to generate a report.")
else:
with st.spinner("Generating report..."):
# Fetch the report asynchronously using predefined sources and fixed report type
fetch_report_coroutine = fetch_report(query, REPORT_TYPE, PREDEFINED_SOURCES)
report = run_async(fetch_report_coroutine)
st.success("Report generated successfully!")
st.write(report) |