File size: 6,514 Bytes
8dcc49f
3beb07e
8dcc49f
3beb07e
 
 
8dcc49f
 
 
 
 
 
 
 
cd59c29
3beb07e
cad07b9
 
 
 
 
8dcc49f
 
 
3beb07e
8dcc49f
 
 
 
 
 
 
 
 
 
 
 
 
 
3beb07e
8dcc49f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4635b74
 
0b631a0
 
 
 
 
 
4635b74
 
8dcc49f
 
 
 
 
 
 
 
 
 
3beb07e
8dcc49f
 
551703a
8dcc49f
 
 
3beb07e
551703a
8dcc49f
3beb07e
8dcc49f
 
 
 
 
 
3beb07e
 
8dcc49f
 
 
3beb07e
 
 
cd59c29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3beb07e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cd59c29
 
 
 
 
 
 
 
 
 
3beb07e
 
 
 
 
8dcc49f
4635b74
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
from contextlib import asynccontextmanager
import json
from typing import Optional
from duckduckgo_search import DDGS
from duckduckgo_search.exceptions import RatelimitException
import expiringdict
from fastapi import FastAPI
from pydantic import BaseModel, Field
from playwright.async_api import async_playwright, Browser, BrowserContext, Page
from urllib.parse import quote_plus
import logging
import re
import uvicorn

from backends import APISearchResults, APIPatentResults, query_bing_search, query_brave_search, query_ddg_search, query_google_patents

logging.basicConfig(
    level=logging.INFO,
    format='[%(asctime)s][%(levelname)s][%(filename)s:%(lineno)d]: %(message)s',
    datefmt='%Y-%m-%d %H:%M:%S'
)

# playwright global context
playwright = None
pw_browser: Optional[Browser] = None


@asynccontextmanager
async def api_lifespan(app: FastAPI):
    global playwright, pw_browser
    playwright = await async_playwright().start()
    pw_browser = await playwright.chromium.launch(headless=True)

    yield

    await pw_browser.close()
    await playwright.stop()

app = FastAPI(lifespan=api_lifespan)
backend_status = expiringdict.ExpiringDict(max_len=5, max_age_seconds=15*60)


class APISearchParams(BaseModel):
    queries: list[str] = Field(...,
                               description="The list of queries to search for")
    n_results: int = Field(
        10, description="Number of results to return for each query. Valid values are 10, 25, 50 and 100")


@app.post("/search_scholar")
async def query_google_scholar(params: APISearchParams):
    """Queries google scholar for the specified query"""
    return {"error": "Unimplemented"}


@app.get('/')
async def status():
    backend_keys = [k[0] for k in backend_status.items()]
    backend_status_dict = {}

    for k in backend_keys:
        backend_status_dict[k] = backend_status.get(k)
    return {"status": "running", "backend_status": backend_status_dict}


@app.post("/search_patents")
async def search_patents(params: APISearchParams) -> APIPatentResults:
    """Searches google patents for the specified queries and returns the found documents."""
    results = []
    for q in params.queries:
        logging.info(f"Searching Google Patents with query `{q}`")
        try:
            res = await query_google_patents(pw_browser, q, params.n_results)
            results.extend(res)
        except Exception as e:
            backend_status["gpatents"] = "rate-limited"
            logging.error(
                f"Failed to query Google Patents with query `{q}`: {e}")
    return APIPatentResults(results=results, error=None)


@app.post("/search_brave")
async def search_brave(params: APISearchParams) -> APISearchResults:
    """Searches brave search for the specified queries and returns the found documents."""
    results = []
    last_exception: Optional[Exception] = None
    for q in params.queries:
        logging.info(f"Searching Brave search with query `{q}`")
        try:
            res = await query_brave_search(pw_browser, q, params.n_results)
            results.extend(res)
        except Exception as e:
            last_exception = e
            backend_status["brave"] = "rate-limited"
            logging.error(
                f"Failed to query Brave search with query `{q}`: {e}")

    return APISearchResults(results=results, error=str(last_exception) if len(results) == 0 and last_exception else None)


@app.post("/search_bing")
async def search_bing(params: APISearchParams) -> APISearchResults:
    """Searches Bing search for the specified queries and returns the found documents."""
    results = []
    last_exception: Optional[Exception] = None
    for q in params.queries:
        logging.info(f"Searching Bing search with query `{q}`")
        try:
            res = await query_brave_search(pw_browser, q, params.n_results)
            results.extend(res)
        except Exception as e:
            last_exception = e
            backend_status["bing"] = "rate-limited"
            logging.error(
                f"Failed to query Bing search with query `{q}`: {e}")

    return APISearchResults(results=results, error=str(last_exception) if len(results) == 0 and last_exception else None)


@app.post("/search_duck")
async def search_duck(params: APISearchParams) -> APISearchResults:
    """Searches duckduckgo for the specified queries and returns the found documents"""
    results = []
    last_exception: Optional[Exception] = None

    for q in params.queries:
        logging.info(f"Querying DDG with query: `{q}`")
        try:
            res = await query_ddg_search(q, params.n_results)
            results.extend(res)
        except Exception as e:
            last_exception = e
            backend_status["duckduckgo"] = "rate-limited"
            logging.error(f"Failed to query DDG with query `{q}`: {e}")

    return APISearchResults(results=results, error=str(last_exception) if len(results) == 0 and last_exception else None)


@app.post("/search")
async def search(params: APISearchParams):
    """Attempts to search the specified queries using ALL backends"""
    results = []

    for q in params.queries:
        try:
            logging.info(f"Querying DDG with query: `{q}`")
            res = await query_ddg_search(q, params.n_results)
            results.extend(res)
            continue
        except Exception as e:
            logging.error(f"Failed to query DDG with query `{q}`: {e}")
            logging.info("Trying with next browser backend.")

        try:
            logging.info(f"Querying Brave Search with query: `{q}`")
            res = await query_brave_search(pw_browser, q, params.n_results)
            results.extend(res)
            continue
        except Exception as e:
            logging.error(
                f"Failed to query Brave Search with query `{q}`: {e}")
            logging.info("Trying with next browser backend.")

        try:
            logging.info(f"Querying Bing with query: `{q}`")
            res = await query_bing_search(pw_browser, q, params.n_results)
            results.extend(res)
            continue
        except Exception as e:
            logging.error(f"Failed to query Bing search with query `{q}`: {e}")
            logging.info("Trying with next browser backend.")

        if len(results) == 0:
            return APISearchResults(results=[], error="All backends are rate-limited.")

    return APISearchResults(results=results, error=None)

uvicorn.run(app, host="0.0.0.0", port=7860)