shut up
This commit is contained in:
parent
7eb930fafd
commit
ff8bb0f7c6
|
@ -46,7 +46,12 @@ opts.log_prompts = config['log_prompts']
|
||||||
opts.concurrent_gens = config['concurrent_gens']
|
opts.concurrent_gens = config['concurrent_gens']
|
||||||
opts.frontend_api_client = config['frontend_api_client']
|
opts.frontend_api_client = config['frontend_api_client']
|
||||||
opts.context_size = config['token_limit']
|
opts.context_size = config['token_limit']
|
||||||
|
|
||||||
opts.verify_ssl = config['verify_ssl']
|
opts.verify_ssl = config['verify_ssl']
|
||||||
|
if not opts.verify_ssl:
|
||||||
|
import urllib3
|
||||||
|
|
||||||
|
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
|
||||||
|
|
||||||
SemaphoreCheckerThread(concurrent_semaphore).start()
|
SemaphoreCheckerThread(concurrent_semaphore).start()
|
||||||
|
|
||||||
|
|
Reference in New Issue