search-api-webui 0.1.3__py3-none-any.whl → 0.1.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- search_api_webui/__init__.py +20 -0
- search_api_webui/app.py +20 -0
- search_api_webui/providers/__init__.py +20 -0
- search_api_webui/providers/base.py +20 -0
- search_api_webui/providers/generic.py +20 -0
- search_api_webui/providers/querit.py +20 -0
- search_api_webui/static/assets/index-BNPOSv2e.css +1 -0
- search_api_webui/static/assets/index-Co_gG-wr.js +196 -0
- search_api_webui/static/index.html +2 -2
- {search_api_webui-0.1.3.dist-info → search_api_webui-0.1.5.dist-info}/METADATA +12 -10
- search_api_webui-0.1.5.dist-info/RECORD +16 -0
- {search_api_webui-0.1.3.dist-info → search_api_webui-0.1.5.dist-info}/licenses/LICENSE +1 -1
- search_api_webui/static/assets/index-CF13bI2g.js +0 -181
- search_api_webui/static/assets/index-DLyBd1PD.css +0 -1
- search_api_webui-0.1.3.dist-info/RECORD +0 -16
- {search_api_webui-0.1.3.dist-info → search_api_webui-0.1.5.dist-info}/WHEEL +0 -0
- {search_api_webui-0.1.3.dist-info → search_api_webui-0.1.5.dist-info}/entry_points.txt +0 -0
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
|
7
7
|
<title>Search API WebUI</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-Co_gG-wr.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="/assets/index-BNPOSv2e.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="root"></div>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: search-api-webui
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5
|
|
4
4
|
Summary: A Search API WebUI for Querit, You, and other search providers.
|
|
5
5
|
Project-URL: Homepage, https://github.com/querit-ai/search-api-webui
|
|
6
6
|
Project-URL: Repository, https://github.com/querit-ai/search-api-webui.git
|
|
@@ -54,25 +54,26 @@ pip install search-api-webui
|
|
|
54
54
|
search-api-webui
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
-
Open your browser at http://localhost:8889.
|
|
58
|
-
|
|
59
57
|
## Development
|
|
60
58
|
|
|
61
59
|
Use this method if you want to contribute to the code or build from source.
|
|
62
60
|
|
|
63
61
|
### Prerequisites
|
|
64
62
|
|
|
65
|
-
Python 3.7+
|
|
66
|
-
Node.js & npm (for building the frontend)
|
|
63
|
+
* Python 3.7+
|
|
64
|
+
* Node.js & npm (for building the frontend)
|
|
65
|
+
|
|
67
66
|
### Setup Steps
|
|
68
67
|
|
|
69
68
|
**Clone the repository**
|
|
69
|
+
|
|
70
70
|
```
|
|
71
71
|
git clone https://github.com/querit-ai/search-api-webui.git
|
|
72
72
|
cd search-api-webui
|
|
73
73
|
```
|
|
74
74
|
|
|
75
75
|
**Build Frontend**
|
|
76
|
+
|
|
76
77
|
```
|
|
77
78
|
cd frontend
|
|
78
79
|
npm install
|
|
@@ -80,23 +81,24 @@ npm run build
|
|
|
80
81
|
cd …
|
|
81
82
|
```
|
|
82
83
|
|
|
83
|
-
**Install
|
|
84
|
+
**Install search-api-webui (Editable Mode)**
|
|
85
|
+
|
|
84
86
|
```
|
|
85
87
|
pip install -e .
|
|
86
88
|
```
|
|
87
89
|
|
|
88
90
|
**Run the Server**
|
|
91
|
+
|
|
89
92
|
```
|
|
90
|
-
python -m
|
|
93
|
+
python -m search_api_webui.app
|
|
91
94
|
```
|
|
92
95
|
|
|
93
96
|
## Configuration
|
|
94
97
|
|
|
95
98
|
### Add API Keys
|
|
96
99
|
|
|
97
|
-
Open the WebUI settings page (click the gear icon).
|
|
98
|
-
|
|
99
|
-
Keys are saved locally in user_config.json.
|
|
100
|
+
Open the WebUI settings page (click the gear icon). Enter your API Key for the selected provider (e.g., Querit). Keys are saved locally in $HOME/.search-api-webui/config.json.
|
|
101
|
+
|
|
100
102
|
### Add New Providers
|
|
101
103
|
|
|
102
104
|
Edit providers.yaml in the root directory to add custom API endpoints. The system uses JMESPath to map JSON responses to the UI.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
search_api_webui/__init__.py,sha256=1cHJrJ1BwOJDfXMnH3_KxLcelD3nt_bWNLzeF1qgZLk,1102
|
|
2
|
+
search_api_webui/app.py,sha256=QA-pGVsOweNbtfrolzO3kOJsdgWU0WFS89_sLe59aMY,6572
|
|
3
|
+
search_api_webui/providers.yaml,sha256=GMF7-o9eqe1AVXuMHEfdfl4OPeIZInDCqjsvO2tRHp0,752
|
|
4
|
+
search_api_webui/providers/__init__.py,sha256=2rth7RrgWhwKbEfGnmzUAVMpHwDyh2zT095mVsgJPiQ,2154
|
|
5
|
+
search_api_webui/providers/base.py,sha256=NS2aWP0W17vro0nWvC2VdvrEafIHrkotj_pDypi126U,1965
|
|
6
|
+
search_api_webui/providers/generic.py,sha256=4GS4TT6SFBjtZsZvIRIIVtsAPE3HgxzsEXZeuZFnr6Q,7313
|
|
7
|
+
search_api_webui/providers/querit.py,sha256=a2SKJJ69mgLDNN74Lkid3uArd-M3yiSW4aDPy_B944Q,3790
|
|
8
|
+
search_api_webui/static/favicon.ico,sha256=U_7TbOXM0jf963y9j0jogM0rBpKNr72HVVOofnBNAVQ,15086
|
|
9
|
+
search_api_webui/static/index.html,sha256=aD2clcVWMvGjdLucp20mdbAo1-xVdYm3Ow1YG8UJTGw,465
|
|
10
|
+
search_api_webui/static/assets/index-BNPOSv2e.css,sha256=3cE9S6VBbsMHNGjYjAQY2p_EgEdP5xOZMJ89kEKYb9I,20191
|
|
11
|
+
search_api_webui/static/assets/index-Co_gG-wr.js,sha256=Ra7E6px9kKrpI-GS4MOzZLC6r_5_rcTSa9Fqg23BGks,215921
|
|
12
|
+
search_api_webui-0.1.5.dist-info/METADATA,sha256=Ar6tO3oTqJXbfSfj7VKMIb_zZ11pF4VqdGwky515XtQ,2926
|
|
13
|
+
search_api_webui-0.1.5.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
14
|
+
search_api_webui-0.1.5.dist-info/entry_points.txt,sha256=ogYy3eeonZ_oQlrEZC-4JBWfYdB7kkkdqXUUmX0xgMs,63
|
|
15
|
+
search_api_webui-0.1.5.dist-info/licenses/LICENSE,sha256=B7n2gauZcaVVVdE-zvx3mABAgGzgzVKu7x1a94ZeuPU,1074
|
|
16
|
+
search_api_webui-0.1.5.dist-info/RECORD,,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Copyright (c) 2026
|
|
1
|
+
Copyright (c) 2026 QUERIT PRIVATE LIMITED
|
|
2
2
|
|
|
3
3
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
4
4
|
|