This repository has been archived by the owner on Jun 12, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
client.py
498 lines (432 loc) · 18.5 KB
/
client.py
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
import os
import re
import json
import random
import string
import inspect
import requests
import urllib.parse
from requests.exceptions import ConnectionError
from typing import Optional, Tuple, Dict, Union, List
from .src.misc.utils import upload_image, load_cookies
from .src.model.parser.response_parser import ResponseParser
from .src.model.output import GeminiCandidate, GeminiModelOutput
from .src.model.parser.custom_parser import ParseMethod1, ParseMethod2
from .src.misc.exceptions import (
GeminiAPIError,
PackageError,
TimeoutError,
RateLimitException,
ContentGenerationException,
)
from .src.misc.constants import (
URLs,
Headers,
TARGET_COOKIES,
WHOLE_COOKIES,
SUPPORTED_BROWSERS,
)
class Gemini:
"""
This class facilitates interactions with a web service by managing sessions, cookies, and proxy configurations.
Attributes:
auto_cookies (bool): If set to True, cookies are managed automatically.
cookies (dict[str, str]): Stores the cookies used in HTTP requests.
proxies (dict[str, str]): Proxy settings for the HTTP requests.
timeout (int): Timeout in seconds for HTTP requests.
session (requests.Session): The session used for HTTP requests.
base_url (str): The base URL of the web service.
target_cookies (list): Specific cookies targeted for operations if auto_cookies is enabled.
verify (bool): If True, the SSL certificate is verified. Defaults to True.
Parameters:
session (Optional[requests.Session]): An existing session, if any.
cookies (Optional[dict[str, str]]): Initial cookies, if any.
cookie_fp (str): File path to load cookies from if `auto_cookies` is set.
auto_cookies (bool): Enables automatic cookie management when True.
target_cookies (list): List of cookie names to manage if `auto_cookies` is set.
timeout (int): Request timeout; defaults to 30 seconds.
proxies (Optional[dict[str, str]]): Proxy settings, if any.
Raises:
ConnectionError: If there is a problem with the network connection.
TimeoutError: If the request times out.
"""
def __init__(
self,
session: Optional[requests.Session] = None,
cookies: Optional[Dict[str, str]] = None,
cookie_fp: str = None,
auto_cookies: bool = False,
target_cookies: List = None,
timeout: int = 30,
proxies: Optional[dict] = None,
verify: bool = True, # Try to use if needed.
) -> None:
"""
Initializes the Gemini object with session, cookies, and other configurations.
"""
self._request_count = 0
self._nonce = None # SNlM0e nonce value
self._sid = None # session id, try to use if needed.
self._rcid = None # response candidate id
self._rid = None # response id
self._cid = None # candidate id
self._reqid = int("".join(random.choices(string.digits, k=7))) # request id
self.auto_cookies = auto_cookies
self.target_cookies = target_cookies
self.cookie_fp = cookie_fp
self.cookies = cookies
self.proxies = proxies or {}
self.timeout = timeout
self.session = session or self._initialize_session()
self.base_url: str = URLs.BASE_URL.value
self.parser = ResponseParser(cookies=self.cookies)
self.verify = True # Default is True
@property
def request_count(self) -> int:
return self._request_count
@property
def nonce(self) -> Optional[str]:
return self._nonce
@nonce.setter
def nonce(self, value: Optional[str]) -> None:
if value != self._nonce:
self._nonce = value
@property
def rcid(self) -> Optional[str]:
return self._rcid
@rcid.setter
def rcid(self, value: Optional[str]) -> None:
self._rcid = value
def _initialize_session(
self,
) -> requests.Session:
"""
Initializes a sync session.
Returns:
requests.Session: The initialized session.
"""
session = requests.Session()
session.headers.update(Headers.MAIN)
if self.cookies:
session.cookies.update(self.cookies)
elif self.cookie_fp:
session = self._set_cookies_from_file(session, self.cookie_fp)
elif self.auto_cookies == True:
self._set_cookies_automatically()
self._set_sid_and_nonce()
return session
def _set_cookies_from_file(self, session: requests.Session, file_path: str) -> None:
"""Loads cookies from a file and updates the session."""
try:
self.cookies = load_cookies(file_path)
except Exception as e:
raise Exception(f"Failed to load cookies from {file_path}: {e}")
session.cookies.update(self.cookies)
return session
def _set_sid_and_nonce(self):
"""
Retrieves the session ID (SID) and a SNlM0e nonce value from the application page.
"""
try:
response = requests.get(f"{URLs.BASE_URL.value}/app", cookies=self.cookies)
if response.status_code != 200:
raise GeminiAPIError(
f"Gemini API Error: Response code {response.status_code}\nDetails:\n{response}\n\nExcessive connections may have temporarily blocked your account/IP, but web UI should remain accessible."
)
response.raise_for_status()
sid_match = re.search(r'"FdrFJe":"([\d-]+)"', response.text)
nonce_match = re.search(r'"SNlM0e":"(.*?)"', response.text)
if sid_match:
self._sid = sid_match.group(1)
else:
print("Skip FdrFJe value.")
if nonce_match:
self._nonce = nonce_match.group(1)
else:
raise ValueError(
"Failed to parse SNlM0e nonce value from the response.\nRefresh the Gemini web page or access Gemini in a new incognito browser to resend cookies. \nIf issue continues, export browser cookies, set manually. See auth section 3."
)
except requests.RequestException as e:
raise ConnectionError(f"Request failed: {e}")
except ValueError as e:
raise e # Re-raise the exception after it's caught
except Exception as e:
raise RuntimeError(f"An unexpected error occurred: {e}")
def _construct_params(self, sid: str) -> str:
"""
Constructs URL-encoded parameters for a request.
Parameters:
sid (str): The session ID.
Returns:
str: URL-encoded string of parameters.
"""
return urllib.parse.urlencode(
{
"bl": URLs.BOT_SERVER.value,
"hl": os.environ.get("GEMINI_LANGUAGE", "en"),
"_reqid": self._reqid,
"rt": "c",
# "f.sid": sid, # Try to use if needed.
}
)
def _construct_payload(
self, prompt: str, image: Union[bytes, str], nonce: str
) -> str:
"""
Constructs URL-encoded payload for a request.
Parameters:
prompt (str): The user prompt to send.
image (Union[bytes, str]): The image data as bytes or file path. Supported formats: webp, jpeg, png.
nonce (str): A one-time token used for request verification.
Returns:
str: URL-encoded string of the payload.
"""
return urllib.parse.urlencode(
{
"at": nonce,
"f.req": json.dumps(
[
None,
json.dumps(
[
image
and [
prompt,
int(os.getenv("GEMINI_ULTRA", "0")),
None,
[[[upload_image(image), 1]]],
]
or [prompt],
None,
[self._cid, self._rid, self._rcid],
]
),
]
),
},
)
def send_request(
self, prompt: str, image: Union[bytes, str] = None
) -> Tuple[str, int]:
"""Sends a request and returns the response text and status code."""
self._request_count += 1
params = self._construct_params(self._sid)
data = self._construct_payload(prompt, image, self._nonce)
response = self.session.post(
URLs.POST_ENDPOINT.value,
params=params,
data=data,
timeout=self.timeout,
proxies=self.proxies,
verify=self.verify,
)
self._reqid += 100000
response.raise_for_status()
return response.text, response.status_code
def generate_content(
self, prompt: str, image: Union[bytes, str] = None
) -> GeminiModelOutput:
"""Generates content based on the prompt and returns a GeminiModelOutput object."""
try:
response_text, response_status_code = self.send_request(prompt, image)
if response_status_code != 200:
print(
f"Non-successful response status: {response_status_code}. Check Gemini session status."
)
return None
parser = ResponseParser(cookies=self.cookies)
parsed_response = parser.parse(response_text)
return self._create_model_output(parsed_response)
except Exception as e:
print(
f"Failed to generate content due to an error: {e}.\nReturn reponse without parse. If the issue persists, submit it at https://github.com/dsdanielpark/Gemini-API/issues"
)
return response_text
def _create_model_output(self, parsed_response: dict) -> GeminiModelOutput:
"""
Creates model output from parsed response.
Args:
parsed_response (dict): The parsed response data.
Returns:
GeminiModelOutput: The model output containing metadata, candidates, and response dictionary.
"""
candidates = self.collect_candidates(parsed_response)
metadata = parsed_response.get("metadata", [])
try:
self._cid = metadata[0]
self._rid = metadata[1]
# self._rcid = candidates["candidates"][0]["rcid"]
except:
pass
return GeminiModelOutput(
metadata=metadata,
candidates=candidates,
response_dict=parsed_response,
)
@staticmethod
def collect_candidates(data: dict) -> list:
"""
Collects candidate data from parsed response.
Args:
data: The parsed response data.
Returns:
List: A list of GeminiCandidate objects.
"""
collected = []
stack = [data]
while stack:
current = stack.pop()
if isinstance(current, dict):
if "rcid" in current and "text" in current:
collected.append(GeminiCandidate(**current))
else:
stack.extend(current.values())
elif isinstance(current, list):
stack.extend(current)
return collected
# End of Code. The following codes need improvement or can be additionally used.
def generate_custom_content(self, prompt: str, *custom_parsers) -> str:
"""Generates content based on the prompt, attempting to parse with ParseMethod1, ParseMethod2, and any additional parsers provided."""
response_text, response_status_code = self.send_request(prompt)
if response_status_code != 200:
raise ValueError(f"Response status: {response_status_code}")
parser1 = ParseMethod1()
parser2 = ParseMethod2()
parsers = [parser1.parse, parser2.parse]
for custom_parser in custom_parsers:
if inspect.isclass(custom_parser):
instance = custom_parser()
parsers.append(instance.parse)
elif callable(custom_parser):
parsers.append(custom_parser)
for parse in parsers:
try:
return parse(response_text)
except Exception as e:
continue
print("Parsing failed; returning original text. Consider using CustomParser.")
return response_text
def check_session_cookies(self) -> None:
"""
Prints the session's cookies. Indicates if the session is uninitialized.
"""
if self.session:
cookies = self.session.cookies.get_dict()
cookies_str = "\n".join(f"{key}: {value}" for key, value in cookies.items())
print(f"Session Cookies:\n{cookies_str}")
else:
print("Session not initialized.")
def check_session_headers(self) -> None:
"""
Prints the session's headers. Indicates if the session is uninitialized.
"""
if self.session:
headers = self.session.headers
headers_str = "\n".join(f"{key}: {value}" for key, value in headers.items())
print(f"Session Headers:\n{headers_str}")
else:
print("Session not initialized.")
# To-Do: Update cookies automatically using browser cookie3 or others.
# def _set_sid_and_nonce(self) -> Tuple[str, str]:
# """
# Retrieves the session ID (SID) and a SNlM0e nonce value from the application page.
# """
# url = f"{HOST}/app"
# try:
# response = requests.get(
# url, cookies=self.cookies
# )
# sid_match, nonce_match = self.extract_sid_nonce(response.text)
# if not sid_match or not nonce_match:
# print(
# "Failed to get SID or nonce. Trying to update cookies automatically..."
# )
# self._set_cookies_automatically()
# response = requests.get(
# url, cookies=self.cookies
# )
# sid_match, nonce_match = self.extract_sid_nonce(response.text)
# if not nonce_match:
# if self.nonce:
# return (sid_match, self.nonce)
# else:
# raise Exception(
# "Can not retrieve SID and nonce even after automatic cookie update."
# )
# return (sid_match.group(1), nonce_match.group(1))
# except Exception as e:
# raise ConnectionError(
# f"Failed to retrive SID or Nonce valuse:\n{e}"
# )
# To-Do: Get cookie values automatically.
def _set_cookies_automatically(self) -> None:
"""
Updates the instance's cookies attribute with Gemini API tokens, either from environment variables or by extracting them from the browser, based on the auto_cookies flag.
"""
if not self.auto_cookies and self.cookies is not None:
return
if self.auto_cookies:
try:
self._update_cookies_from_browser()
if not self.cookies:
raise ValueError("No cookies were loaded from the browser.")
except Exception as e:
raise Exception("Failed to extract cookies from browser.") from e
else:
print(
"Cookie loading issue, try setting auto_cookies to True. Restart browser, log out, log in for Gemini Web UI to work. Keep a single browser open."
)
try:
self.auto_cookies = True
self._update_cookies_from_browser()
if not self.cookies:
raise ValueError("No cookies were loaded from the browser.")
except Exception as e:
print(f"Automatic cookie retrieval failed: {e}")
if not self.cookies:
raise Exception(
"Gemini cookies must be provided through environment variables or extracted from the browser with auto_cookies enabled."
)
# Delete non-target cookies
if isinstance(self.target_cookies, list):
filter_set = set(self.target_cookies)
elif self.target_cookies == "all":
filter_set = WHOLE_COOKIES
else:
filter_set = TARGET_COOKIES
self.cookies = {
key: value for key, value in self.cookies.items() if key in filter_set
}
# To-Do: Get cookie values automatically.
def _update_cookies_from_browser(self) -> dict:
"""
Attempts to extract specific Gemini cookies from the cookies stored by web browsers on the current system.
This method iterates over a predefined list of supported browsers, attempting to retrieve cookies that match a specific domain (e.g., ".google.com"). If the required cookies are found, they are added to the instance's cookie store. The process supports multiple modern web browsers across different operating systems.
The method updates the instance's `cookies` attribute with any found cookies that match the specified criteria.
Raises:
ValueError: If no supported browser is found with the required cookies, or if an essential cookie is missing after attempting retrieval from all supported browsers.
"""
for browser_fn in SUPPORTED_BROWSERS:
try:
print(
f"Trying to automatically retrieve cookies from {browser_fn} using the browser_cookie3 package."
)
cj = browser_fn(domain_name=".google.com")
found_cookies = {cookie.name: cookie.value for cookie in cj}
if len(found_cookies) >= 5:
print(
f"Successfully retrieved cookies from {browser_fn}.\n{found_cookies}"
)
self.cookies = found_cookies
break
else:
print(
f"Automatically configure cookies with detected ones but found only {len(found_cookies)} cookies.\n{found_cookies}"
)
except Exception as e:
print(e)
continue
if not self.cookies:
raise ValueError(
"Failed to get cookies. Set 'cookies' argument or 'auto_cookies' as True."
)