lollms-client 0.33.0__tar.gz → 1.0.0__tar.gz
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.
Potentially problematic release.
This version of lollms-client might be problematic. Click here for more details.
- lollms_client-1.0.0/PKG-INFO +1214 -0
- lollms_client-1.0.0/README.md +1183 -0
- lollms_client-1.0.0/examples/generate_game_sfx/generate_game_fx.py +240 -0
- lollms_client-1.0.0/examples/simple_text_gen_test.py +173 -0
- lollms_client-1.0.0/examples/simple_text_gen_with_image_test.py +178 -0
- lollms_client-1.0.0/examples/text_2_audio.py +77 -0
- lollms_client-1.0.0/examples/text_gen.py +33 -0
- lollms_client-1.0.0/lollms_client/__init__.py +26 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/azure_openai/__init__.py +360 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/claude/__init__.py +546 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/gemini/__init__.py +497 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/grok/__init__.py +532 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/groq/__init__.py +289 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/hugging_face_inference_api/__init__.py +305 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/litellm/__init__.py +229 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/llamacpp/__init__.py +1027 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/lollms/__init__.py +582 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/lollms_webui/__init__.py +422 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/mistral/__init__.py +327 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/ollama/__init__.py +831 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/open_router/__init__.py +334 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/openai/__init__.py +671 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/openllm/__init__.py +550 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/pythonllamacpp/__init__.py +608 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/tensor_rt/__init__.py +602 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/transformers/__init__.py +707 -0
- lollms_client-1.0.0/lollms_client/llm_bindings/vllm/__init__.py +611 -0
- lollms_client-1.0.0/lollms_client/lollms_core.py +3061 -0
- lollms_client-1.0.0/lollms_client/lollms_discussion.py +2196 -0
- lollms_client-1.0.0/lollms_client/lollms_llm_binding.py +576 -0
- lollms_client-1.0.0/lollms_client/lollms_mcp_binding.py +229 -0
- lollms_client-1.0.0/lollms_client/mcp_bindings/local_mcp/__init__.py +312 -0
- lollms_client-1.0.0/lollms_client/mcp_bindings/remote_mcp/__init__.py +424 -0
- lollms_client-1.0.0/lollms_client/mcp_bindings/standard_mcp/__init__.py +533 -0
- lollms_client-1.0.0/lollms_client/stt_bindings/lollms/__init__.py +137 -0
- lollms_client-1.0.0/lollms_client/stt_bindings/whisper/__init__.py +302 -0
- lollms_client-1.0.0/lollms_client/stt_bindings/whispercpp/__init__.py +379 -0
- lollms_client-1.0.0/lollms_client/tti_bindings/dalle/__init__.py +434 -0
- lollms_client-1.0.0/lollms_client/tti_bindings/diffusers/__init__.py +696 -0
- lollms_client-1.0.0/lollms_client/tti_bindings/gemini/__init__.py +215 -0
- lollms_client-1.0.0/lollms_client/tti_bindings/lollms/__init__.py +207 -0
- lollms_client-1.0.0/lollms_client.egg-info/PKG-INFO +1214 -0
- lollms_client-1.0.0/lollms_client.egg-info/SOURCES.txt +5562 -0
- lollms_client-1.0.0/lollms_client.egg-info/top_level.txt +4 -0
- lollms_client-1.0.0/pyproject.toml +48 -0
- lollms_client-1.0.0/src/lollms_client/__init__.py +26 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/__init__.py +1 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/azure_openai/__init__.py +360 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/claude/__init__.py +546 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/gemini/__init__.py +497 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/grok/__init__.py +532 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/groq/__init__.py +289 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/hugging_face_inference_api/__init__.py +305 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/litellm/__init__.py +229 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/llamacpp/__init__.py +1027 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/lollms/__init__.py +582 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/lollms_webui/__init__.py +422 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/mistral/__init__.py +327 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/ollama/__init__.py +831 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/open_router/__init__.py +334 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/openai/__init__.py +671 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/openllm/__init__.py +550 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/pythonllamacpp/__init__.py +608 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/tensor_rt/__init__.py +602 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/transformers/__init__.py +707 -0
- lollms_client-1.0.0/src/lollms_client/llm_bindings/vllm/__init__.py +611 -0
- lollms_client-1.0.0/src/lollms_client/lollms_config.py +593 -0
- lollms_client-1.0.0/src/lollms_client/lollms_core.py +3061 -0
- lollms_client-1.0.0/src/lollms_client/lollms_discussion.py +2196 -0
- lollms_client-1.0.0/src/lollms_client/lollms_js_analyzer.py +201 -0
- lollms_client-1.0.0/src/lollms_client/lollms_llm_binding.py +576 -0
- lollms_client-1.0.0/src/lollms_client/lollms_mcp_binding.py +229 -0
- lollms_client-1.0.0/src/lollms_client/lollms_mcp_security.py +84 -0
- lollms_client-1.0.0/src/lollms_client/lollms_personality.py +190 -0
- lollms_client-1.0.0/src/lollms_client/lollms_python_analyzer.py +244 -0
- lollms_client-1.0.0/src/lollms_client/lollms_stt_binding.py +125 -0
- lollms_client-1.0.0/src/lollms_client/lollms_tti_binding.py +151 -0
- lollms_client-1.0.0/src/lollms_client/lollms_ttm_binding.py +112 -0
- lollms_client-1.0.0/src/lollms_client/lollms_tts_binding.py +114 -0
- lollms_client-1.0.0/src/lollms_client/lollms_ttv_binding.py +111 -0
- lollms_client-1.0.0/src/lollms_client/lollms_types.py +74 -0
- lollms_client-1.0.0/src/lollms_client/lollms_utilities.py +492 -0
- lollms_client-1.0.0/src/lollms_client/mcp_bindings/local_mcp/__init__.py +312 -0
- lollms_client-1.0.0/src/lollms_client/mcp_bindings/local_mcp/default_tools/file_writer/file_writer.py +74 -0
- lollms_client-1.0.0/src/lollms_client/mcp_bindings/local_mcp/default_tools/generate_image_from_prompt/generate_image_from_prompt.py +195 -0
- lollms_client-1.0.0/src/lollms_client/mcp_bindings/local_mcp/default_tools/internet_search/internet_search.py +107 -0
- lollms_client-1.0.0/src/lollms_client/mcp_bindings/local_mcp/default_tools/python_interpreter/python_interpreter.py +141 -0
- lollms_client-1.0.0/src/lollms_client/mcp_bindings/remote_mcp/__init__.py +424 -0
- lollms_client-1.0.0/src/lollms_client/mcp_bindings/standard_mcp/__init__.py +533 -0
- lollms_client-1.0.0/src/lollms_client/stt_bindings/lollms/__init__.py +137 -0
- lollms_client-1.0.0/src/lollms_client/stt_bindings/whisper/__init__.py +302 -0
- lollms_client-1.0.0/src/lollms_client/stt_bindings/whispercpp/__init__.py +379 -0
- lollms_client-1.0.0/src/lollms_client/tti_bindings/__init__.py +0 -0
- lollms_client-1.0.0/src/lollms_client/tti_bindings/dalle/__init__.py +434 -0
- lollms_client-1.0.0/src/lollms_client/tti_bindings/diffusers/__init__.py +696 -0
- lollms_client-1.0.0/src/lollms_client/tti_bindings/gemini/__init__.py +215 -0
- lollms_client-1.0.0/src/lollms_client/tti_bindings/lollms/__init__.py +207 -0
- lollms_client-1.0.0/src/lollms_client/ttm_bindings/__init__.py +0 -0
- lollms_client-1.0.0/src/lollms_client/ttm_bindings/audiocraft/__init__.py +281 -0
- lollms_client-1.0.0/src/lollms_client/ttm_bindings/bark/__init__.py +339 -0
- lollms_client-1.0.0/src/lollms_client/ttm_bindings/lollms/__init__.py +73 -0
- lollms_client-1.0.0/src/lollms_client/tts_bindings/__init__.py +0 -0
- lollms_client-1.0.0/src/lollms_client/tts_bindings/bark/__init__.py +336 -0
- lollms_client-1.0.0/src/lollms_client/tts_bindings/lollms/__init__.py +145 -0
- lollms_client-1.0.0/src/lollms_client/tts_bindings/piper_tts/__init__.py +343 -0
- lollms_client-1.0.0/src/lollms_client/tts_bindings/xtts/__init__.py +317 -0
- lollms_client-1.0.0/src/lollms_client/ttv_bindings/__init__.py +73 -0
- lollms_client-1.0.0/src/lollms_client/ttv_bindings/lollms/__init__.py +0 -0
- lollms_client-1.0.0/src/lollms_client.egg-info/PKG-INFO +1214 -0
- lollms_client-1.0.0/src/lollms_client.egg-info/SOURCES.txt +73 -0
- lollms_client-1.0.0/src/lollms_client.egg-info/dependency_links.txt +1 -0
- lollms_client-1.0.0/src/lollms_client.egg-info/requires.txt +9 -0
- lollms_client-1.0.0/src/lollms_client.egg-info/top_level.txt +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/__init__.py +144 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/__main__.py +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/__init__.py +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/alias.py +268 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/application.py +492 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/async_helpers.py +155 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/autocall.py +70 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/builtin_trap.py +93 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/compilerop.py +192 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/completer.py +3672 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/completerlib.py +382 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/crashhandler.py +244 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/debugger.py +1250 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/debugger_backport.py +206 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/display.py +1266 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/display_functions.py +371 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/display_trap.py +74 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/displayhook.py +346 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/displaypub.py +183 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/doctb.py +444 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/error.py +60 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/events.py +158 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/extensions.py +135 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/formatters.py +1090 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/getipython.py +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/guarded_eval.py +908 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/history.py +1218 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/historyapp.py +158 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/hooks.py +158 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/inputtransformer2.py +808 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/interactiveshell.py +4108 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/latex_symbols.py +1306 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/logger.py +231 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/macro.py +53 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magic.py +760 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magic_arguments.py +310 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magics/__init__.py +42 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magics/ast_mod.py +330 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magics/auto.py +144 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magics/basic.py +674 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magics/code.py +757 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magics/config.py +140 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magics/display.py +93 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magics/execution.py +1730 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magics/extension.py +63 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magics/history.py +338 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magics/logging.py +195 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magics/namespace.py +725 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magics/osm.py +855 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magics/packaging.py +181 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magics/pylab.py +173 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/magics/script.py +400 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/oinspect.py +1216 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/page.py +348 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/payload.py +54 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/payloadpage.py +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/prefilter.py +707 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/profileapp.py +315 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/profiledir.py +244 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/pylabtools.py +515 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/release.py +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/shellapp.py +496 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/splitinput.py +145 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/tbtools.py +554 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/tips.py +118 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/ultratb.py +1252 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/core/usage.py +341 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/display.py +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/extensions/__init__.py +2 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/extensions/autoreload.py +911 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/extensions/deduperreload/__init__.py +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/extensions/deduperreload/deduperreload.py +599 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/extensions/deduperreload/deduperreload_patching.py +141 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/extensions/storemagic.py +236 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/external/__init__.py +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/external/pickleshare.py +361 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/external/qt_for_kernel.py +124 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/external/qt_loaders.py +423 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/lib/__init__.py +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/lib/backgroundjobs.py +491 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/lib/clipboard.py +102 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/lib/deepreload.py +310 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/lib/demo.py +672 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/lib/display.py +677 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/lib/editorhooks.py +127 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/lib/guisupport.py +155 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/lib/latextools.py +257 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/lib/lexers.py +32 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/lib/pretty.py +954 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/paths.py +122 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/py.typed +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/sphinxext/__init__.py +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/sphinxext/custom_doctests.py +155 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/sphinxext/ipython_console_highlighting.py +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/sphinxext/ipython_directive.py +1278 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/__init__.py +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/debugger.py +181 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/embed.py +436 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/interactiveshell.py +1122 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/ipapp.py +346 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/magics.py +214 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/prompts.py +141 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/pt_inputhooks/__init__.py +139 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/pt_inputhooks/asyncio.py +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/pt_inputhooks/glut.py +140 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/pt_inputhooks/gtk.py +60 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/pt_inputhooks/gtk3.py +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/pt_inputhooks/gtk4.py +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/pt_inputhooks/osx.py +147 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/pt_inputhooks/pyglet.py +67 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/pt_inputhooks/qt.py +90 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/pt_inputhooks/tk.py +93 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/pt_inputhooks/wx.py +219 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/ptutils.py +230 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/shortcuts/__init__.py +636 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/shortcuts/auto_match.py +105 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/shortcuts/auto_suggest.py +657 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/terminal/shortcuts/filters.py +322 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/testing/__init__.py +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/testing/decorators.py +148 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/testing/globalipapp.py +114 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/testing/ipunittest.py +187 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/testing/plugin/__init__.py +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/testing/plugin/dtexample.py +167 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/testing/plugin/ipdoctest.py +299 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/testing/plugin/pytest_ipdoctest.py +880 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/testing/plugin/setup.py +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/testing/plugin/simple.py +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/testing/plugin/simplevars.py +2 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/testing/plugin/test_ipdoctest.py +92 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/testing/plugin/test_refs.py +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/testing/skipdoctest.py +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/testing/tools.py +434 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/PyColorize.py +522 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/__init__.py +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/_process_cli.py +71 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/_process_common.py +219 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/_process_emscripten.py +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/_process_posix.py +194 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/_process_win32.py +216 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/_process_win32_controller.py +574 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/_sysinfo.py +2 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/capture.py +170 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/coloransi.py +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/contexts.py +60 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/data.py +30 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/decorators.py +83 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/dir2.py +83 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/docs.py +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/encoding.py +89 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/eventful.py +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/frame.py +94 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/generics.py +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/importstring.py +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/io.py +135 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/ipstruct.py +379 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/jsonutil.py +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/log.py +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/module_paths.py +72 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/openpy.py +104 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/path.py +354 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/process.py +71 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/py3compat.py +69 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/sentinel.py +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/strdispatch.py +68 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/sysinfo.py +120 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/syspathcontext.py +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/tempdir.py +59 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/terminal.py +125 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/text.py +650 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/timing.py +123 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/tokenutil.py +199 -0
- lollms_client-1.0.0/venv/Lib/site-packages/IPython/utils/wildcard.py +111 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/AvifImagePlugin.py +291 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/BdfFontFile.py +122 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/BlpImagePlugin.py +497 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/BmpImagePlugin.py +515 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/BufrStubImagePlugin.py +75 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ContainerIO.py +173 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/CurImagePlugin.py +75 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/DcxImagePlugin.py +83 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/DdsImagePlugin.py +624 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/EpsImagePlugin.py +476 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ExifTags.py +382 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/FitsImagePlugin.py +152 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/FliImagePlugin.py +178 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/FontFile.py +134 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/FpxImagePlugin.py +257 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/FtexImagePlugin.py +114 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/GbrImagePlugin.py +103 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/GdImageFile.py +102 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/GifImagePlugin.py +1213 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/GimpGradientFile.py +149 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/GimpPaletteFile.py +72 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/GribStubImagePlugin.py +75 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/Hdf5StubImagePlugin.py +75 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/IcnsImagePlugin.py +411 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/IcoImagePlugin.py +381 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImImagePlugin.py +389 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/Image.py +4245 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageChops.py +311 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageCms.py +1123 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageColor.py +320 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageDraw.py +1232 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageDraw2.py +243 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageEnhance.py +113 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageFile.py +922 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageFilter.py +604 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageFont.py +1339 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageGrab.py +196 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageMath.py +368 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageMode.py +92 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageMorph.py +265 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageOps.py +745 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImagePalette.py +286 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImagePath.py +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageQt.py +220 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageSequence.py +86 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageShow.py +362 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageStat.py +160 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageTk.py +266 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageTransform.py +136 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImageWin.py +247 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/ImtImagePlugin.py +103 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/IptcImagePlugin.py +250 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/Jpeg2KImagePlugin.py +442 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/JpegImagePlugin.py +902 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/JpegPresets.py +242 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/McIdasImagePlugin.py +78 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/MicImagePlugin.py +102 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/MpegImagePlugin.py +84 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/MpoImagePlugin.py +202 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/MspImagePlugin.py +200 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/PSDraw.py +237 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/PaletteFile.py +54 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/PalmImagePlugin.py +217 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/PcdImagePlugin.py +64 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/PcfFontFile.py +254 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/PcxImagePlugin.py +228 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/PdfImagePlugin.py +311 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/PdfParser.py +1074 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/PixarImagePlugin.py +72 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/PngImagePlugin.py +1551 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/PpmImagePlugin.py +375 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/PsdImagePlugin.py +333 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/QoiImagePlugin.py +234 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/SgiImagePlugin.py +231 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/SpiderImagePlugin.py +331 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/SunImagePlugin.py +145 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/TarIO.py +61 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/TgaImagePlugin.py +264 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/TiffImagePlugin.py +2339 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/TiffTags.py +562 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/WalImageFile.py +127 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/WebPImagePlugin.py +320 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/WmfImagePlugin.py +186 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/XVThumbImagePlugin.py +83 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/XbmImagePlugin.py +98 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/XpmImagePlugin.py +157 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/__init__.py +87 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/__main__.py +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/_avif.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/_binary.py +112 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/_deprecate.py +72 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/_imaging.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/_imagingcms.pyi +143 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/_imagingft.pyi +69 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/_imagingmath.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/_imagingmorph.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/_imagingtk.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/_tkinter_finder.py +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/_typing.py +54 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/_util.py +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/_version.py +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/_webp.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/features.py +361 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/py.typed +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/PIL/report.py +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/_distutils_hack/__init__.py +222 -0
- lollms_client-1.0.0/venv/Lib/site-packages/_distutils_hack/override.py +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/_yaml/__init__.py +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/__init__.py +82 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/ado_consts.py +283 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/adodbapi.py +1153 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/apibase.py +723 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/examples/db_print.py +72 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/examples/db_table_names.py +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/examples/xls_read.py +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/examples/xls_write.py +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/is64bit.py +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/process_connect_string.py +137 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/schema_table.py +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/setup.py +68 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/test/adodbapitest.py +1547 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/test/adodbapitestconfig.py +184 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/test/dbapi20.py +879 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/test/is64bit.py +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/test/setuptestframework.py +98 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/test/test_adodbapi_dbapi20.py +195 -0
- lollms_client-1.0.0/venv/Lib/site-packages/adodbapi/test/tryconnection.py +30 -0
- lollms_client-1.0.0/venv/Lib/site-packages/annotated_types/__init__.py +432 -0
- lollms_client-1.0.0/venv/Lib/site-packages/annotated_types/py.typed +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/annotated_types/test_cases.py +151 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ascii_colors/__init__.py +4482 -0
- lollms_client-1.0.0/venv/Lib/site-packages/asttokens/__init__.py +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/asttokens/astroid_compat.py +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/asttokens/asttokens.py +450 -0
- lollms_client-1.0.0/venv/Lib/site-packages/asttokens/line_numbers.py +76 -0
- lollms_client-1.0.0/venv/Lib/site-packages/asttokens/mark_tokens.py +467 -0
- lollms_client-1.0.0/venv/Lib/site-packages/asttokens/py.typed +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/asttokens/util.py +485 -0
- lollms_client-1.0.0/venv/Lib/site-packages/asttokens/version.py +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/certifi/__init__.py +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/certifi/__main__.py +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/certifi/core.py +83 -0
- lollms_client-1.0.0/venv/Lib/site-packages/certifi/py.typed +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/charset_normalizer/__init__.py +48 -0
- lollms_client-1.0.0/venv/Lib/site-packages/charset_normalizer/__main__.py +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/charset_normalizer/api.py +669 -0
- lollms_client-1.0.0/venv/Lib/site-packages/charset_normalizer/cd.py +395 -0
- lollms_client-1.0.0/venv/Lib/site-packages/charset_normalizer/cli/__init__.py +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/charset_normalizer/cli/__main__.py +381 -0
- lollms_client-1.0.0/venv/Lib/site-packages/charset_normalizer/constant.py +2015 -0
- lollms_client-1.0.0/venv/Lib/site-packages/charset_normalizer/legacy.py +80 -0
- lollms_client-1.0.0/venv/Lib/site-packages/charset_normalizer/md.py +635 -0
- lollms_client-1.0.0/venv/Lib/site-packages/charset_normalizer/models.py +360 -0
- lollms_client-1.0.0/venv/Lib/site-packages/charset_normalizer/py.typed +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/charset_normalizer/utils.py +414 -0
- lollms_client-1.0.0/venv/Lib/site-packages/charset_normalizer/version.py +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/colorama/__init__.py +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/colorama/ansi.py +102 -0
- lollms_client-1.0.0/venv/Lib/site-packages/colorama/ansitowin32.py +277 -0
- lollms_client-1.0.0/venv/Lib/site-packages/colorama/initialise.py +121 -0
- lollms_client-1.0.0/venv/Lib/site-packages/colorama/tests/__init__.py +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/colorama/tests/ansi_test.py +76 -0
- lollms_client-1.0.0/venv/Lib/site-packages/colorama/tests/ansitowin32_test.py +294 -0
- lollms_client-1.0.0/venv/Lib/site-packages/colorama/tests/initialise_test.py +189 -0
- lollms_client-1.0.0/venv/Lib/site-packages/colorama/tests/isatty_test.py +57 -0
- lollms_client-1.0.0/venv/Lib/site-packages/colorama/tests/utils.py +49 -0
- lollms_client-1.0.0/venv/Lib/site-packages/colorama/tests/winterm_test.py +131 -0
- lollms_client-1.0.0/venv/Lib/site-packages/colorama/win32.py +180 -0
- lollms_client-1.0.0/venv/Lib/site-packages/colorama/winterm.py +195 -0
- lollms_client-1.0.0/venv/Lib/site-packages/comm/__init__.py +61 -0
- lollms_client-1.0.0/venv/Lib/site-packages/comm/base_comm.py +326 -0
- lollms_client-1.0.0/venv/Lib/site-packages/comm/py.typed +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/__init__.py +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/_common.py +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/_version.py +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/easter.py +89 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/parser/__init__.py +61 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/parser/_parser.py +1613 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/parser/isoparser.py +416 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/relativedelta.py +599 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/rrule.py +1737 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/tz/__init__.py +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/tz/_common.py +419 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/tz/_factories.py +80 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/tz/tz.py +1849 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/tz/win.py +370 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/tzwin.py +2 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/utils.py +71 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/zoneinfo/__init__.py +167 -0
- lollms_client-1.0.0/venv/Lib/site-packages/dateutil/zoneinfo/rebuild.py +75 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/__init__.py +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/__main__.py +71 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/__init__.py +126 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/_pydevd_packaging.py +48 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/_util.py +59 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/force_pydevd.py +81 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/__init__.py +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_calltip_util.py +153 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_completer.py +267 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_execfile.py +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_filesystem_encoding.py +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_getopt.py +133 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_imports_tipper.py +372 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_jy_imports_tipper.py +485 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_log.py +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_saved_modules.py +134 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_sys_patch.py +77 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_tipper_common.py +53 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/fsnotify/__init__.py +349 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_console_utils.py +641 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_import_hook.py +38 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_imports.py +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_ipython_console.py +95 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_ipython_console_011.py +504 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_is_thread_alive.py +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_localhost.py +68 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_log.py +284 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_monkey.py +1296 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_monkey_qt.py +220 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_override.py +37 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_umd.py +181 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_versioncheck.py +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/__init__.py +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles.py +884 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_coverage.py +77 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_nose.py +206 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_parallel.py +266 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_parallel_client.py +194 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_pytest2.py +308 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_unittest.py +141 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_xml_rpc.py +260 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/__init__.py +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/__init__.py +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/__main__pydevd_gen_debug_adapter_protocol.py +606 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/pydevd_base_schema.py +143 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/pydevd_schema.py +17458 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/pydevd_schema_log.py +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevconsole_code.py +553 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_additional_thread_info.py +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_additional_thread_info_regular.py +328 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_api.py +1200 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_breakpoints.py +181 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_bytecode_utils.py +938 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_bytecode_utils_py311.py +105 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_code_to_source.py +605 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_collect_bytecode_info.py +873 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_comm.py +1930 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_comm_constants.py +200 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_command_line_handling.py +181 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_concurrency_analyser/__init__.py +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_concurrency_analyser/pydevd_concurrency_logger.py +482 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_concurrency_analyser/pydevd_thread_wrappers.py +82 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_console.py +265 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_constants.py +847 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_custom_frames.py +114 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_cython_wrapper.py +63 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_daemon_thread.py +202 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_defaults.py +64 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_dont_trace.py +123 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_dont_trace_files.py +178 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_exec2.py +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_extension_api.py +107 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_extension_utils.py +65 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_filtering.py +338 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_frame.py +1307 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_frame_utils.py +445 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_gevent_integration.py +91 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_import_class.py +70 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_io.py +256 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_json_debug_options.py +200 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_net_command.py +150 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_net_command_factory_json.py +586 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_net_command_factory_xml.py +558 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_plugin_utils.py +208 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_process_net_command.py +805 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_process_net_command_json.py +1354 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_referrers.py +252 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_reload.py +433 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_resolver.py +830 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_runpy.py +339 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_safe_repr.py +395 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_save_locals.py +130 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_signature.py +201 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_source_mapping.py +152 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_stackless.py +412 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_suspended_frames.py +542 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_thread_lifecycle.py +106 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_timeout.py +237 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_trace_dispatch.py +92 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_trace_dispatch_regular.py +550 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_traceproperty.py +89 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_utils.py +517 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_vars.py +860 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_vm_type.py +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_xml.py +434 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/__init__.py +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_eval_cython_wrapper.py +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_eval_main.py +71 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_tracing.py +121 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_modify_bytecode.py +363 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/__init__.py +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/__init__.py +131 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/bytecode.py +208 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/cfg.py +443 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/concrete.py +658 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/flags.py +162 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/instr.py +372 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/peephole_opt.py +488 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/__init__.py +150 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_bytecode.py +486 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_cfg.py +816 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_code.py +93 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_concrete.py +1486 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_flags.py +157 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_instr.py +351 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_misc.py +258 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_peephole_opt.py +974 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/util_annotation.py +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/pydevd_fix_code.py +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_sys_monitoring/_pydevd_sys_monitoring.py +1983 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/_pydevd_sys_monitoring/pydevd_sys_monitoring.py +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_app_engine_debug_startup.py +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_coverage.py +92 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_ipython/__init__.py +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhook.py +614 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhookglut.py +150 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhookgtk.py +37 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhookgtk3.py +37 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhookpyglet.py +95 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhookqt4.py +198 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhookqt5.py +201 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhookqt6.py +201 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhooktk.py +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhookwx.py +173 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_ipython/matplotlibtools.py +194 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_ipython/qt.py +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_ipython/qt_for_kernel.py +135 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_ipython/qt_loaders.py +381 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_ipython/version.py +50 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_pysrc.py +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_run_in_console.py +152 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydev_sitecustomize/sitecustomize.py +267 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevconsole.py +611 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd.py +3729 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/_always_live_program.py +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/_check.py +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/_test_attach_to_process.py +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/_test_attach_to_process_linux.py +75 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py +606 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/attach_pydevd.py +89 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/attach_script.py +201 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/lldb_prepare.py +55 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/__init__.py +247 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/breakpoint.py +4763 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/compat.py +201 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/crash.py +1908 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/debug.py +1513 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/disasm.py +717 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/event.py +1877 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/interactive.py +2269 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/module.py +1983 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/process.py +4885 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/registry.py +696 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/search.py +661 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/sql.py +981 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/system.py +1227 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/textio.py +1848 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/thread.py +2108 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/util.py +1059 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/__init__.py +72 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/advapi32.py +3687 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/context_amd64.py +816 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/context_i386.py +461 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/dbghelp.py +1381 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/defines.py +737 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/gdi32.py +526 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/kernel32.py +5098 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/ntdll.py +579 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/peb_teb.py +3517 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/psapi.py +410 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/shell32.py +403 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/shlwapi.py +838 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/user32.py +1832 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/version.py +1085 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/wtsapi32.py +355 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/window.py +753 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_file_utils.py +981 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/__init__.py +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/django_debug.py +640 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/extensions/__init__.py +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/__init__.py +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/pydevd_helpers.py +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/pydevd_plugin_numpy_types.py +90 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/pydevd_plugin_pandas_types.py +178 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/pydevd_plugins_django_form_str.py +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/jinja2_debug.py +528 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/pydevd_line_validation.py +120 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/pydevd_tracing.py +410 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_vendored/pydevd/setup_pydevd_cython.py +289 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/_version.py +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/adapter/__init__.py +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/adapter/__main__.py +241 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/adapter/clients.py +796 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/adapter/components.py +183 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/adapter/launchers.py +199 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/adapter/servers.py +620 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/adapter/sessions.py +293 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/common/__init__.py +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/common/json.py +292 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/common/log.py +411 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/common/messaging.py +1506 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/common/singleton.py +185 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/common/sockets.py +181 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/common/stacks.py +62 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/common/timestamp.py +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/common/util.py +164 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/launcher/__init__.py +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/launcher/__main__.py +92 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/launcher/debuggee.py +250 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/launcher/handlers.py +152 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/launcher/output.py +113 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/launcher/winapi.py +104 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/public_api.py +248 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/server/__init__.py +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/server/api.py +366 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/server/attach_pid_injected.py +92 -0
- lollms_client-1.0.0/venv/Lib/site-packages/debugpy/server/cli.py +512 -0
- lollms_client-1.0.0/venv/Lib/site-packages/decorator.py +459 -0
- lollms_client-1.0.0/venv/Lib/site-packages/executing/__init__.py +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/executing/_exceptions.py +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/executing/_position_node_finder.py +992 -0
- lollms_client-1.0.0/venv/Lib/site-packages/executing/_pytest_utils.py +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/executing/executing.py +1160 -0
- lollms_client-1.0.0/venv/Lib/site-packages/executing/py.typed +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/executing/version.py +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/idna/__init__.py +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/idna/codec.py +122 -0
- lollms_client-1.0.0/venv/Lib/site-packages/idna/compat.py +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/idna/core.py +437 -0
- lollms_client-1.0.0/venv/Lib/site-packages/idna/idnadata.py +4243 -0
- lollms_client-1.0.0/venv/Lib/site-packages/idna/intranges.py +57 -0
- lollms_client-1.0.0/venv/Lib/site-packages/idna/package_data.py +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/idna/py.typed +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/idna/uts46data.py +8681 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/__init__.py +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/__main__.py +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/_eventloop_macos.py +174 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/_version.py +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/comm/__init__.py +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/comm/comm.py +100 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/comm/manager.py +62 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/compiler.py +105 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/connect.py +140 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/control.py +32 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/datapub.py +84 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/debugger.py +746 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/displayhook.py +101 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/embed.py +58 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/eventloops.py +607 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/gui/__init__.py +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/gui/gtk3embed.py +98 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/gui/gtkembed.py +95 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/heartbeat.py +125 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/inprocess/__init__.py +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/inprocess/blocking.py +108 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/inprocess/channels.py +107 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/inprocess/client.py +223 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/inprocess/constants.py +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/inprocess/ipkernel.py +202 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/inprocess/manager.py +92 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/inprocess/socket.py +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/iostream.py +769 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/ipkernel.py +830 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/jsonutil.py +163 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/kernelapp.py +755 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/kernelbase.py +1414 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/kernelspec.py +293 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/log.py +29 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/parentpoller.py +121 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/pickleutil.py +485 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/py.typed +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/pylab/__init__.py +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/pylab/backend_inline.py +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/pylab/config.py +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/serialize.py +203 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/trio_runner.py +71 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel/zmqshell.py +691 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipykernel_launcher.py +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/ipython_pygments_lexers.py +582 -0
- lollms_client-1.0.0/venv/Lib/site-packages/isapi/__init__.py +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/isapi/install.py +809 -0
- lollms_client-1.0.0/venv/Lib/site-packages/isapi/isapicon.py +121 -0
- lollms_client-1.0.0/venv/Lib/site-packages/isapi/samples/advanced.py +218 -0
- lollms_client-1.0.0/venv/Lib/site-packages/isapi/samples/redirector.py +116 -0
- lollms_client-1.0.0/venv/Lib/site-packages/isapi/samples/redirector_asynch.py +85 -0
- lollms_client-1.0.0/venv/Lib/site-packages/isapi/samples/redirector_with_filter.py +162 -0
- lollms_client-1.0.0/venv/Lib/site-packages/isapi/samples/test.py +195 -0
- lollms_client-1.0.0/venv/Lib/site-packages/isapi/simple.py +73 -0
- lollms_client-1.0.0/venv/Lib/site-packages/isapi/test/extension_simple.py +114 -0
- lollms_client-1.0.0/venv/Lib/site-packages/isapi/threaded_extension.py +193 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/__init__.py +42 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/__main__.py +72 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/_compatibility.py +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/api/__init__.py +798 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/api/classes.py +895 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/api/completion.py +696 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/api/completion_cache.py +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/api/environment.py +480 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/api/errors.py +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/api/exceptions.py +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/api/file_name.py +155 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/api/helpers.py +522 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/api/interpreter.py +74 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/api/keywords.py +51 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/api/project.py +448 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/api/refactoring/__init__.py +264 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/api/refactoring/extract.py +386 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/api/replstartup.py +29 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/api/strings.py +111 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/cache.py +115 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/common.py +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/debug.py +132 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/file_io.py +83 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/__init__.py +199 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/analysis.py +213 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/arguments.py +335 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/base_value.py +558 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/cache.py +126 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/compiled/__init__.py +70 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/compiled/access.py +562 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/compiled/getattr_static.py +121 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/compiled/mixed.py +309 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/compiled/subprocess/__init__.py +512 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/compiled/subprocess/__main__.py +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/compiled/subprocess/functions.py +257 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/compiled/value.py +626 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/context.py +499 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/docstring_utils.py +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/docstrings.py +286 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/dynamic_params.py +224 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/filters.py +371 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/finder.py +146 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/flow_analysis.py +125 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/gradual/__init__.py +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/gradual/annotation.py +474 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/gradual/base.py +434 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/gradual/conversion.py +209 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/gradual/generics.py +101 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/gradual/stub_value.py +102 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/gradual/type_var.py +127 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/gradual/typeshed.py +310 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/gradual/typing.py +488 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/gradual/utils.py +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/helpers.py +202 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/imports.py +592 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/lazy_value.py +61 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/names.py +677 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/param.py +257 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/parser_cache.py +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/recursion.py +153 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/references.py +319 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/signature.py +152 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/star_args.py +220 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/syntax_tree.py +903 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/sys_path.py +272 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/utils.py +90 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/value/__init__.py +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/value/decorator.py +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/value/dynamic_arrays.py +200 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/value/function.py +461 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/value/instance.py +610 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/value/iterable.py +647 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/value/klass.py +390 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/value/module.py +230 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/inference/value/namespace.py +74 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/parser_utils.py +345 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/plugins/__init__.py +47 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/plugins/django.py +296 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/plugins/flask.py +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/plugins/pytest.py +269 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/plugins/registry.py +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/plugins/stdlib.py +879 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/settings.py +163 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/__init__.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/apps/__init__.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/apps/config.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/apps/registry.pyi +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/conf/__init__.pyi +29 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/conf/global_settings.pyi +504 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/conf/locale/__init__.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/conf/urls/__init__.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/conf/urls/i18n.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/conf/urls/static.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/__init__.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/actions.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/apps.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/checks.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/decorators.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/filters.pyi +110 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/forms.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/helpers.pyi +155 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/models.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/options.pyi +275 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/sites.pyi +75 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/templatetags/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/templatetags/admin_list.pyi +42 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/templatetags/admin_modify.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/templatetags/admin_static.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/templatetags/admin_urls.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/templatetags/base.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/templatetags/log.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/tests.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/utils.pyi +68 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/views/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/views/autocomplete.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/views/decorators.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/views/main.pyi +89 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admin/widgets.pyi +102 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admindocs/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admindocs/middleware.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admindocs/urls.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admindocs/utils.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/admindocs/views.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/__init__.pyi +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/admin.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/apps.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/backends.pyi +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/base_user.pyi +44 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/checks.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/context_processors.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/decorators.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/forms.pyi +91 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/handlers/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/handlers/modwsgi.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/hashers.pyi +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/management/__init__.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/management/commands/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/management/commands/changepassword.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/management/commands/createsuperuser.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/middleware.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/mixins.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/models.pyi +117 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/password_validation.pyi +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/signals.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/tokens.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/urls.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/validators.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/auth/views.pyi +72 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/admin.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/apps.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/checks.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/fields.pyi +95 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/forms.pyi +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/management/__init__.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/management/commands/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/management/commands/remove_stale_contenttypes.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/models.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/contenttypes/views.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/forms.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/middleware.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/models.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/sitemaps.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/templatetags/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/templatetags/flatpages.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/urls.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/flatpages/views.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/gis/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/gis/db/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/gis/db/models/__init__.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/gis/db/models/fields.pyi +91 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/humanize/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/humanize/templatetags/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/humanize/templatetags/humanize.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/messages/__init__.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/messages/api.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/messages/constants.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/messages/context_processors.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/messages/middleware.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/messages/storage/__init__.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/messages/storage/base.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/messages/storage/cookie.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/messages/storage/fallback.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/messages/storage/session.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/messages/utils.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/messages/views.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/aggregates/__init__.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/aggregates/general.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/aggregates/mixins.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/aggregates/statistics.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/constraints.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/fields/__init__.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/fields/array.pyi +51 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/fields/citext.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/fields/hstore.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/fields/jsonb.pyi +32 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/fields/mixins.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/fields/ranges.pyi +48 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/functions.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/indexes.pyi +82 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/lookups.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/operations.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/search.pyi +63 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/signals.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/postgres/validators.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/redirects/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/redirects/middleware.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/redirects/models.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sessions/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sessions/backends/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sessions/backends/base.pyi +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sessions/backends/cache.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sessions/backends/cached_db.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sessions/backends/db.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sessions/backends/file.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sessions/backends/signed_cookies.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sessions/base_session.pyi +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sessions/exceptions.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sessions/management/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sessions/management/commands/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sessions/management/commands/clearsessions.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sessions/middleware.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sessions/models.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sessions/serializers.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sitemaps/__init__.pyi +50 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sitemaps/management/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sitemaps/management/commands/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sitemaps/management/commands/ping_google.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sitemaps/views.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sites/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sites/apps.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sites/management.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sites/managers.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sites/middleware.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sites/models.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sites/requests.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/sites/shortcuts.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/apps.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/checks.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/finders.pyi +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/handlers.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/management/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/management/commands/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/management/commands/collectstatic.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/management/commands/findstatic.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/management/commands/runserver.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/storage.pyi +55 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/templatetags/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/templatetags/staticfiles.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/testing.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/urls.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/utils.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/staticfiles/views.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/syndication/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/contrib/syndication/views.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/cache/__init__.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/cache/backends/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/cache/backends/base.pyi +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/cache/backends/db.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/cache/backends/dummy.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/cache/backends/filebased.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/cache/backends/locmem.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/cache/backends/memcached.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/cache/utils.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/checks/__init__.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/checks/caches.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/checks/database.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/checks/messages.pyi +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/checks/model_checks.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/checks/registry.pyi +36 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/checks/security/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/checks/security/base.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/checks/security/csrf.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/checks/security/sessions.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/checks/templates.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/checks/translation.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/checks/urls.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/exceptions.pyi +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/files/__init__.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/files/base.pyi +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/files/images.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/files/locks.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/files/move.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/files/storage.pyi +47 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/files/temp.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/files/uploadedfile.pyi +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/files/uploadhandler.pyi +86 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/files/utils.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/handlers/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/handlers/base.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/handlers/exception.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/handlers/wsgi.pyi +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/mail/__init__.pyi +48 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/mail/backends/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/mail/backends/base.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/mail/backends/console.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/mail/backends/dummy.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/mail/backends/filebased.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/mail/backends/locmem.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/mail/backends/smtp.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/mail/message.pyi +110 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/mail/utils.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/management/__init__.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/management/base.pyi +78 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/management/color.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/management/commands/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/management/commands/dumpdata.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/management/commands/loaddata.pyi +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/management/commands/makemessages.pyi +38 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/management/commands/runserver.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/management/commands/testserver.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/management/sql.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/management/templates.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/management/utils.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/paginator.pyi +62 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/serializers/__init__.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/serializers/base.pyi +87 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/serializers/json.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/serializers/python.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/servers/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/servers/basehttp.pyi +36 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/signals.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/signing.pyi +42 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/validators.pyi +121 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/core/wsgi.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/__init__.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/base/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/base/base.pyi +102 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/base/client.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/base/creation.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/base/features.pyi +100 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/base/introspection.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/base/operations.pyi +104 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/base/schema.pyi +77 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/base/validation.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/ddl_references.pyi +66 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/dummy/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/dummy/base.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/mysql/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/mysql/client.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/postgresql/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/postgresql/base.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/postgresql/client.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/postgresql/creation.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/postgresql/operations.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/signals.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/sqlite3/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/sqlite3/base.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/sqlite3/creation.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/sqlite3/features.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/sqlite3/introspection.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/sqlite3/operations.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/sqlite3/schema.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/backends/utils.pyi +47 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/__init__.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/autodetector.pyi +67 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/exceptions.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/executor.pyi +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/graph.pyi +54 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/loader.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/migration.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/operations/__init__.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/operations/base.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/operations/fields.pyi +32 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/operations/models.pyi +87 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/operations/special.pyi +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/operations/utils.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/optimizer.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/questioner.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/recorder.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/serializer.pyi +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/state.pyi +68 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/topological_sort.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/utils.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/migrations/writer.pyi +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/__init__.pyi +136 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/aggregates.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/base.pyi +60 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/constraints.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/deletion.pyi +30 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/enums.pyi +30 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/expressions.pyi +219 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/fields/__init__.pyi +409 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/fields/files.pyi +101 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/fields/mixins.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/fields/proxy.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/fields/related.pyi +243 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/fields/related_descriptors.pyi +70 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/fields/related_lookups.pyi +48 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/fields/reverse_related.pyi +110 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/functions/__init__.pyi +93 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/functions/comparison.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/functions/datetime.pyi +32 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/functions/math.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/functions/mixins.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/functions/text.pyi +65 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/functions/window.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/indexes.pyi +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/lookups.pyi +104 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/manager.pyi +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/options.pyi +123 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/query.pyi +213 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/query_utils.pyi +79 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/signals.pyi +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/sql/__init__.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/sql/compiler.pyi +109 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/sql/constants.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/sql/datastructures.pyi +49 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/sql/query.pyi +194 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/sql/subqueries.pyi +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/sql/where.pyi +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/models/utils.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/transaction.pyi +49 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/db/utils.pyi +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/dispatch/__init__.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/dispatch/dispatcher.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/forms/__init__.pyi +86 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/forms/boundfield.pyi +60 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/forms/fields.pyi +394 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/forms/forms.pyi +78 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/forms/formsets.pyi +89 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/forms/models.pyi +289 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/forms/renderers.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/forms/utils.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/forms/widgets.pyi +172 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/http/__init__.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/http/cookie.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/http/multipartparser.pyi +54 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/http/request.pyi +111 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/http/response.pyi +137 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/middleware/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/middleware/cache.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/middleware/clickjacking.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/middleware/common.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/middleware/csrf.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/middleware/gzip.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/middleware/http.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/middleware/locale.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/middleware/security.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/shortcuts.pyi +54 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/__init__.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/backends/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/backends/base.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/backends/django.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/backends/dummy.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/backends/jinja2.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/backends/utils.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/base.pyi +174 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/context.pyi +76 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/context_processors.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/defaultfilters.pyi +66 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/defaulttags.pyi +204 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/engine.pyi +53 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/exceptions.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/library.pyi +97 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/loader.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/loader_tags.pyi +68 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/loaders/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/loaders/app_directories.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/loaders/base.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/loaders/cached.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/loaders/filesystem.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/loaders/locmem.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/response.pyi +68 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/smartif.pyi +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/template/utils.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/templatetags/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/templatetags/cache.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/templatetags/i18n.pyi +83 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/templatetags/l10n.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/templatetags/static.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/templatetags/tz.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/test/__init__.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/test/client.pyi +132 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/test/html.pyi +38 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/test/runner.pyi +133 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/test/selenium.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/test/signals.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/test/testcases.pyi +229 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/test/utils.pyi +155 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/urls/__init__.pyi +36 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/urls/base.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/urls/conf.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/urls/converters.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/urls/exceptions.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/urls/resolvers.pyi +110 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/urls/utils.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/_os.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/archive.pyi +30 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/autoreload.pyi +67 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/baseconv.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/cache.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/crypto.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/datastructures.pyi +75 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/dateformat.pyi +63 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/dateparse.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/dates.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/datetime_safe.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/deconstruct.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/decorators.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/deprecation.pyi +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/duration.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/encoding.pyi +59 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/feedgenerator.pyi +76 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/formats.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/functional.pyi +59 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/hashable.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/html.pyi +37 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/http.pyi +37 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/inspect.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/ipv6.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/itercompat.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/jslex.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/log.pyi +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/lorem_ipsum.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/module_loading.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/numberformat.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/regex_helper.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/safestring.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/six.pyi +106 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/termcolors.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/text.pyi +47 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/timesince.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/timezone.pyi +62 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/topological_sort.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/translation/__init__.pyi +72 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/translation/reloader.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/translation/template.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/translation/trans_null.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/translation/trans_real.pyi +42 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/tree.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/version.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/utils/xmlutils.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/__init__.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/csrf.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/debug.pyi +66 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/decorators/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/decorators/cache.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/decorators/clickjacking.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/decorators/csrf.pyi +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/decorators/debug.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/decorators/gzip.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/decorators/http.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/decorators/vary.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/defaults.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/generic/__init__.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/generic/base.pyi +44 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/generic/dates.pyi +82 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/generic/detail.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/generic/edit.pyi +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/generic/list.pyi +37 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/i18n.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/django-stubs/django-stubs/views/static.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/BaseHTTPServer.pyi +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/CGIHTTPServer.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/ConfigParser.pyi +97 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/Cookie.pyi +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/HTMLParser.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/Queue.pyi +29 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/SimpleHTTPServer.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/SocketServer.pyi +115 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/StringIO.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/UserDict.pyi +53 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/UserList.pyi +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/UserString.pyi +75 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/__builtin__.pyi +1195 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/_ast.pyi +303 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/_collections.pyi +36 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/_functools.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/_hotshot.pyi +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/_io.pyi +184 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/_json.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/_md5.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/_sha.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/_sha256.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/_sha512.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/_socket.pyi +281 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/_sre.pyi +51 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/_struct.pyi +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/_symtable.pyi +37 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/_threading_local.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/_winreg.pyi +97 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/abc.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/ast.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/atexit.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/builtins.pyi +1195 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/cPickle.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/cStringIO.pyi +48 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/collections.pyi +129 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/commands.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/compileall.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/cookielib.pyi +142 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/copy_reg.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/dircache.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/archive_util.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/bcppcompiler.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/ccompiler.pyi +150 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/cmd.pyi +67 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/bdist.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/bdist_dumb.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/bdist_msi.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/bdist_packager.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/bdist_rpm.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/bdist_wininst.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/build.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/build_clib.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/build_ext.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/build_py.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/build_scripts.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/check.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/clean.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/config.pyi +87 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/install.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/install_data.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/install_egg_info.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/install_headers.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/install_lib.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/install_scripts.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/register.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/sdist.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/command/upload.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/config.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/core.pyi +48 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/cygwinccompiler.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/debug.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/dep_util.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/dir_util.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/dist.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/emxccompiler.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/errors.pyi +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/extension.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/fancy_getopt.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/file_util.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/filelist.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/log.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/msvccompiler.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/spawn.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/sysconfig.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/text_file.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/unixccompiler.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/util.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/version.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/dummy_thread.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/MIMEText.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/__init__.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/_parseaddr.pyi +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/base64mime.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/charset.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/encoders.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/feedparser.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/generator.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/header.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/iterators.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/message.pyi +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/application.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/audio.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/base.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/image.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/message.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/multipart.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/nonmultipart.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/text.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/parser.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/quoprimime.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/email/utils.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/encodings/__init__.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/encodings/utf_8.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/exceptions.pyi +50 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/fcntl.pyi +82 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/fnmatch.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/functools.pyi +30 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/future_builtins.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/gc.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/getopt.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/getpass.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/gettext.pyi +48 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/glob.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/gzip.pyi +38 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/hashlib.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/heapq.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/htmlentitydefs.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/httplib.pyi +218 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/imp.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/importlib.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/inspect.pyi +129 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/io.pyi +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/itertools.pyi +164 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/json.pyi +93 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/markupbase.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/md5.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/mimetools.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/multiprocessing/__init__.pyi +50 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/multiprocessing/dummy/__init__.pyi +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/multiprocessing/dummy/connection.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/multiprocessing/pool.pyi +52 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/multiprocessing/process.pyi +37 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/multiprocessing/util.pyi +29 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/mutex.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/ntpath.pyi +85 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/nturl2path.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/os/__init__.pyi +385 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/os/path.pyi +85 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/os2emxpath.pyi +85 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/pipes.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/platform.pyi +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/popen2.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/posix.pyi +201 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/posixpath.pyi +85 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/random.pyi +67 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/re.pyi +108 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/repr.pyi +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/resource.pyi +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/rfc822.pyi +75 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/robotparser.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/runpy.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/sets.pyi +60 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/sha.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/shelve.pyi +36 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/shlex.pyi +30 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/signal.pyi +68 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/smtplib.pyi +86 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/spwd.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/sre_constants.pyi +93 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/sre_parse.pyi +62 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/stat.pyi +58 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/string.pyi +68 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/stringold.pyi +44 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/strop.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/subprocess.pyi +115 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/symbol.pyi +89 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/sys.pyi +130 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/tempfile.pyi +102 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/textwrap.pyi +61 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/thread.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/toaiff.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/tokenize.pyi +133 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/types.pyi +195 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/typing.pyi +495 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/unittest.pyi +280 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/urllib.pyi +133 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/urllib2.pyi +186 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/urlparse.pyi +61 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/user.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/whichdb.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2/xmlrpclib.pyi +248 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/__future__.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/_bisect.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/_codecs.pyi +82 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/_csv.pyi +51 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/_curses.pyi +490 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/_dummy_threading.pyi +187 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/_heapq.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/_msi.pyi +49 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/_random.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/_typeshed/__init__.pyi +183 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/_typeshed/wsgi.pyi +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/_typeshed/xml.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/_warnings.pyi +67 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/_weakref.pyi +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/_weakrefset.pyi +47 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/aifc.pyi +88 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/antigravity.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/argparse.pyi +487 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/array.pyi +77 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/asynchat.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/asyncore.pyi +119 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/audioop.pyi +42 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/base64.pyi +37 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/bdb.pyi +98 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/binascii.pyi +50 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/binhex.pyi +42 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/bisect.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/bz2.pyi +70 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/cProfile.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/calendar.pyi +123 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/cgi.pyi +162 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/cgitb.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/chunk.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/cmath.pyi +42 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/cmd.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/code.pyi +36 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/codecs.pyi +301 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/codeop.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/colorsys.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/contextlib.pyi +102 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/copy.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/crypt.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/csv.pyi +101 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/ctypes/__init__.pyi +309 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/ctypes/util.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/ctypes/wintypes.pyi +234 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/curses/__init__.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/curses/ascii.pyi +62 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/curses/panel.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/curses/textpad.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/datetime.pyi +373 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/decimal.pyi +339 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/difflib.pyi +153 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/dis.pyi +83 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/doctest.pyi +224 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/dummy_threading.pyi +2 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/ensurepip/__init__.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/errno.pyi +137 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/filecmp.pyi +73 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/fileinput.pyi +78 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/formatter.pyi +103 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/fractions.pyi +159 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/ftplib.pyi +165 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/genericpath.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/grp.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/hmac.pyi +44 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/imaplib.pyi +172 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/imghdr.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/keyword.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/driver.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/grammar.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/literals.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/parse.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/pgen.pyi +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/token.pyi +71 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/tokenize.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pygram.pyi +113 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pytree.pyi +97 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/linecache.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/locale.pyi +111 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/logging/__init__.pyi +918 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/logging/config.pyi +32 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/logging/handlers.pyi +258 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/macpath.pyi +132 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/mailbox.pyi +207 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/mailcap.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/marshal.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/math.pyi +121 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/mimetypes.pyi +36 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/mmap.pyi +107 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/modulefinder.pyi +76 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/msilib/__init__.pyi +196 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/msilib/schema.pyi +97 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/msilib/sequence.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/msilib/text.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/msvcrt.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/netrc.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/nis.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/numbers.pyi +140 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/opcode.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/operator.pyi +206 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/optparse.pyi +232 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/parser.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/pdb.pyi +250 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/pickle.pyi +186 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/pickletools.pyi +179 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/pkgutil.pyi +38 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/plistlib.pyi +72 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/poplib.pyi +73 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/pprint.pyi +97 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/profile.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/pstats.pyi +52 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/pty.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/pwd.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/py_compile.pyi +52 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/pyclbr.pyi +37 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/pydoc.pyi +273 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/pydoc_data/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/pydoc_data/topics.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/pyexpat/__init__.pyi +79 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/pyexpat/errors.pyi +44 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/pyexpat/model.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/quopri.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/readline.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/rlcompleter.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/sched.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/select.pyi +152 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/shutil.pyi +166 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/site.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/smtpd.pyi +86 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/sndhdr.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/socket.pyi +803 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/sqlite3/__init__.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/sqlite3/dbapi2.pyi +300 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/sre_compile.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/ssl.pyi +429 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/stringprep.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/struct.pyi +38 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/sunau.pyi +86 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/symtable.pyi +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/sysconfig.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/syslog.pyi +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/tabnanny.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/tarfile.pyi +246 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/telnetlib.pyi +114 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/termios.pyi +246 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/this.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/threading.pyi +187 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/time.pyi +116 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/timeit.pyi +42 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/token.pyi +85 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/trace.pyi +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/traceback.pyi +140 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/tty.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/turtle.pyi +558 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/unicodedata.pyi +42 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/uu.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/uuid.pyi +111 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/warnings.pyi +73 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/wave.pyi +73 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/weakref.pyi +119 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/webbrowser.pyi +105 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/winsound.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/wsgiref/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/wsgiref/handlers.pyi +93 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/wsgiref/headers.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/wsgiref/simple_server.pyi +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/wsgiref/types.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/wsgiref/util.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/wsgiref/validate.pyi +52 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xdrlib.pyi +55 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/__init__.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/dom/NodeFilter.pyi +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/dom/__init__.pyi +68 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/dom/domreg.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/dom/expatbuilder.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/dom/minicompat.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/dom/minidom.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/dom/pulldom.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/dom/xmlbuilder.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/etree/ElementInclude.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/etree/ElementPath.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/etree/ElementTree.pyi +376 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/etree/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/etree/cElementTree.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/parsers/__init__.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/parsers/expat/__init__.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/parsers/expat/errors.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/parsers/expat/model.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/sax/__init__.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/sax/handler.pyi +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/sax/saxutils.pyi +68 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/sax/xmlreader.pyi +73 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/zipfile.pyi +220 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/zipimport.pyi +30 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/2and3/zlib.pyi +59 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_ast.pyi +376 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_bootlocale.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_compat_pickle.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_compression.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_decimal.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_dummy_thread.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_imp.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_importlib_modulespec.pyi +50 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_json.pyi +38 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_markupbase.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_operator.pyi +60 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_osx_support.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_posixsubprocess.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_pydecimal.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_sitebuiltins.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_stat.pyi +65 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_thread.pyi +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_threading_local.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_tkinter.pyi +93 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_tracemalloc.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/_winapi.pyi +134 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/abc.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/ast.pyi +207 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/__init__.pyi +116 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/base_events.pyi +354 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/base_futures.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/base_subprocess.pyi +72 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/base_tasks.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/compat.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/constants.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/coroutines.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/events.pyi +502 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/exceptions.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/format_helpers.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/futures.pyi +65 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/locks.pyi +68 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/log.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/proactor_events.pyi +73 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/protocols.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/queues.pyi +36 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/runners.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/selector_events.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/sslproto.pyi +133 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/staggered.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/streams.pyi +104 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/subprocess.pyi +60 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/tasks.pyi +204 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/threads.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/transports.pyi +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/trsock.pyi +86 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/unix_events.pyi +57 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/windows_events.pyi +76 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/windows_utils.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/atexit.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/builtins.pyi +1387 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/collections/__init__.pyi +327 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/collections/abc.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/compileall.pyi +108 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/concurrent/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/concurrent/futures/__init__.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/concurrent/futures/_base.pyi +133 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/concurrent/futures/process.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/concurrent/futures/thread.pyi +42 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/configparser.pyi +252 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/copyreg.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/dbm/__init__.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/dbm/dumb.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/dbm/gnu.pyi +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/dbm/ndbm.pyi +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/archive_util.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/bcppcompiler.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/ccompiler.pyi +150 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/cmd.pyi +67 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/bdist.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/bdist_dumb.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/bdist_msi.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/bdist_packager.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/bdist_rpm.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/bdist_wininst.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/build.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/build_clib.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/build_ext.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/build_py.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/build_scripts.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/check.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/clean.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/config.pyi +87 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/install.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/install_data.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/install_egg_info.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/install_headers.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/install_lib.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/install_scripts.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/register.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/sdist.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/command/upload.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/config.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/core.pyi +48 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/cygwinccompiler.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/debug.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/dep_util.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/dir_util.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/dist.pyi +58 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/errors.pyi +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/extension.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/fancy_getopt.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/file_util.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/filelist.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/log.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/msvccompiler.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/spawn.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/sysconfig.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/text_file.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/unixccompiler.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/util.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/distutils/version.pyi +38 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/__init__.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/charset.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/contentmanager.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/encoders.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/errors.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/feedparser.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/generator.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/header.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/headerregistry.pyi +90 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/iterators.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/message.pyi +87 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/application.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/audio.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/base.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/image.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/message.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/multipart.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/nonmultipart.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/text.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/parser.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/policy.pyi +54 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/email/utils.pyi +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/encodings/__init__.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/encodings/utf_8.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/enum.pyi +73 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/faulthandler.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/fcntl.pyi +99 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/fnmatch.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/functools.pyi +123 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/gc.pyi +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/getopt.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/getpass.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/gettext.pyi +80 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/glob.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/gzip.pyi +94 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/hashlib.pyi +123 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/heapq.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/html/__init__.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/html/entities.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/html/parser.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/http/__init__.pyi +74 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/http/client.pyi +211 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/http/cookiejar.pyi +129 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/http/cookies.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/http/server.pyi +72 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/imp.pyi +64 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/importlib/__init__.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/importlib/abc.pyi +97 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/importlib/machinery.pyi +98 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/importlib/metadata.pyi +87 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/importlib/resources.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/importlib/util.pyi +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/inspect.pyi +309 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/io.pyi +186 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/ipaddress.pyi +152 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/itertools.pyi +109 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/json/__init__.pyi +57 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/json/decoder.pyi +29 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/json/encoder.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/json/tool.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/lzma.pyi +164 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/macurl2path.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/__init__.pyi +87 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/connection.pyi +62 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/context.pyi +151 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/dummy/__init__.pyi +52 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/dummy/connection.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/managers.pyi +137 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/pool.pyi +84 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/process.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/queues.pyi +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/shared_memory.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/sharedctypes.pyi +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/spawn.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/synchronize.pyi +47 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/nntplib.pyi +113 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/ntpath.pyi +144 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/nturl2path.pyi +2 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/os/__init__.pyi +831 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/os/path.pyi +144 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/pathlib.pyi +178 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/pipes.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/platform.pyi +66 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/posix.pyi +165 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/posixpath.pyi +144 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/queue.pyi +52 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/random.pyi +87 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/re.pyi +123 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/reprlib.pyi +36 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/resource.pyi +55 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/runpy.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/secrets.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/selectors.pyi +69 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/shelve.pyi +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/shlex.pyi +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/signal.pyi +194 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/smtplib.pyi +159 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/socketserver.pyi +133 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/spwd.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/sre_constants.pyi +111 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/sre_parse.pyi +101 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/stat.pyi +91 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/statistics.pyi +72 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/string.pyi +30 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/subprocess.pyi +1054 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/symbol.pyi +90 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/sys.pyi +235 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/tempfile.pyi +304 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/textwrap.pyi +100 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/tkinter/__init__.pyi +3276 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/tkinter/commondialog.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/tkinter/constants.pyi +80 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/tkinter/dialog.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/tkinter/filedialog.pyi +67 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/tkinter/font.pyi +96 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/tkinter/messagebox.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/tkinter/ttk.pyi +1232 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/tokenize.pyi +116 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/tracemalloc.pyi +86 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/types.pyi +334 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/typing.pyi +687 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/__init__.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/async_case.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/case.pyi +285 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/loader.pyi +50 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/main.pyi +49 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/mock.pyi +441 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/result.pyi +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/runner.pyi +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/signals.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/suite.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/util.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/urllib/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/urllib/error.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/urllib/parse.pyi +152 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/urllib/request.pyi +341 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/urllib/response.pyi +51 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/urllib/robotparser.pyi +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/venv/__init__.pyi +85 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/winreg.pyi +100 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/xmlrpc/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/xmlrpc/client.pyi +308 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/xmlrpc/server.pyi +160 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/xxlimited.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/stdlib/3/zipapp.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/OpenSSL/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/OpenSSL/crypto.pyi +191 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/concurrent/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/concurrent/futures/__init__.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/concurrent/futures/_base.pyi +92 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/concurrent/futures/process.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/concurrent/futures/thread.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/enum.pyi +73 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/fb303/FacebookService.pyi +298 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/fb303/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/ipaddress.pyi +148 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/kazoo/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/kazoo/client.pyi +109 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/kazoo/exceptions.pyi +58 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/kazoo/recipe/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/kazoo/recipe/watchers.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/pathlib2.pyi +103 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/pymssql.pyi +44 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/routes/__init__.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/routes/mapper.pyi +77 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/routes/util.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/scribe/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/scribe/scribe.pyi +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/scribe/ttypes.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/__init__.pyi +130 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/BaseHTTPServer.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/CGIHTTPServer.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/SimpleHTTPServer.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/__init__.pyi +78 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/_dummy_thread.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/_thread.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/cPickle.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/collections_abc.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/configparser.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/email_mime_base.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/email_mime_multipart.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/email_mime_nonmultipart.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/email_mime_text.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/html_entities.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/html_parser.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/http_client.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/http_cookiejar.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/http_cookies.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/queue.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/reprlib.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/socketserver.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib/__init__.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib/error.pyi +2 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib/parse.pyi +29 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib/request.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib/response.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib/robotparser.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib_error.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib_parse.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib_request.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib_response.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib_robotparser.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/xmlrpc_client.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/tornado/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/tornado/concurrent.pyi +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/tornado/gen.pyi +110 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/tornado/httpclient.pyi +127 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/tornado/httpserver.pyi +57 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/tornado/httputil.pyi +99 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/tornado/ioloop.pyi +85 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/tornado/locks.pyi +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/tornado/netutil.pyi +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/tornado/process.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/tornado/tcpserver.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/tornado/testing.pyi +63 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/tornado/util.pyi +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2/tornado/web.pyi +266 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/atomicwrites/__init__.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/attr/__init__.pyi +257 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/attr/_version_info.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/attr/converters.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/attr/exceptions.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/attr/filters.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/attr/validators.pyi +54 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/backports/__init__.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/backports/ssl_match_hostname.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/backports_abc.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/bleach/__init__.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/bleach/callbacks.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/bleach/linkifier.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/bleach/sanitizer.pyi +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/bleach/utils.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/__init__.pyi +109 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/auth.pyi +109 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/auth_handler.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/compat.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/connection.pyi +174 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/ec2/__init__.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/elb/__init__.pyi +59 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/exception.pyi +147 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/kms/__init__.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/kms/exceptions.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/kms/layer1.pyi +82 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/plugin.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/regioninfo.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/__init__.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/acl.pyi +48 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/bucket.pyi +187 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/bucketlistresultset.pyi +80 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/bucketlogging.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/connection.pyi +128 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/cors.pyi +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/deletemarker.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/key.pyi +233 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/keyfile.pyi +29 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/lifecycle.pyi +65 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/multidelete.pyi +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/multipart.pyi +70 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/prefix.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/tagging.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/user.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/website.pyi +82 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/utils.pyi +175 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cachetools/__init__.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cachetools/abc.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cachetools/cache.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cachetools/decorators.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cachetools/func.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cachetools/lfu.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cachetools/lru.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cachetools/rr.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cachetools/ttl.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/certifi.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/characteristic/__init__.pyi +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/chardet/__init__.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/chardet/enums.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/chardet/langbulgarianmodel.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/chardet/langcyrillicmodel.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/chardet/langgreekmodel.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/chardet/langhebrewmodel.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/chardet/langhungarianmodel.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/chardet/langthaimodel.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/chardet/langturkishmodel.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/chardet/universaldetector.pyi +29 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/chardet/version.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/click/__init__.pyi +84 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/click/_termui_impl.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/click/core.pyi +285 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/click/decorators.pyi +293 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/click/exceptions.pyi +60 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/click/formatting.pyi +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/click/globals.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/click/parser.pyi +65 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/click/termui.pyi +103 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/click/testing.pyi +67 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/click/types.pyi +125 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/click/utils.pyi +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/croniter.pyi +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/exceptions.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/fernet.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/__init__.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/backends/__init__.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/backends/interfaces.pyi +196 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/bindings/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/bindings/openssl/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/bindings/openssl/binding.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/__init__.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/__init__.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/dh.pyi +79 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/dsa.pyi +79 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/ec.pyi +196 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/ed25519.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/ed448.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/padding.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/rsa.pyi +83 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/utils.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/x25519.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/x448.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/ciphers/__init__.pyi +44 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/ciphers/aead.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/ciphers/algorithms.pyi +76 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/ciphers/modes.pyi +94 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/cmac.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/constant_time.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/hashes.pyi +44 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/hmac.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/__init__.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/concatkdf.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/hkdf.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/kbkdf.pyi +30 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/pbkdf2.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/scrypt.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/x963kdf.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/keywrap.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/padding.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/poly1305.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/serialization/__init__.pyi +63 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/serialization/pkcs12.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/twofactor/__init__.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/twofactor/hotp.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/twofactor/totp.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/x509/__init__.pyi +420 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/x509/extensions.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/x509/oid.pyi +106 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/dateparser.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/datetimerange/__init__.pyi +47 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/_common.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/easter.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/parser.pyi +51 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/relativedelta.pyi +97 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/rrule.pyi +105 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/tz/__init__.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/tz/_common.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/tz/tz.pyi +101 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/utils.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/decorator.pyi +81 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/deprecated/__init__.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/deprecated/classic.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/deprecated/sphinx.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/emoji/__init__.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/emoji/core.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/emoji/unicode_codes.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/first.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/__init__.pyi +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/app.pyi +195 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/blueprints.pyi +80 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/cli.pyi +68 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/config.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/ctx.pyi +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/debughelpers.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/globals.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/helpers.pyi +55 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/json/__init__.pyi +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/json/tag.pyi +67 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/logging.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/sessions.pyi +57 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/signals.pyi +29 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/templating.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/testing.pyi +56 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/views.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/wrappers.pyi +32 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/geoip2/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/geoip2/database.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/geoip2/errors.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/geoip2/mixins.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/geoip2/models.pyi +62 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/geoip2/records.pyi +83 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/gflags.pyi +312 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/__init__.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/any_pb2.pyi +47 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/api_pb2.pyi +114 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/compiler/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/compiler/plugin_pb2.pyi +136 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/descriptor.pyi +330 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/descriptor_pb2.pyi +734 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/descriptor_pool.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/duration_pb2.pyi +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/empty_pb2.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/field_mask_pb2.pyi +50 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/containers.pyi +90 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/decoder.pyi +30 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/encoder.pyi +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/enum_type_wrapper.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/extension_dict.pyi +36 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/message_listener.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/python_message.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/well_known_types.pyi +94 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/wire_format.pyi +50 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/json_format.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/message.pyi +56 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/message_factory.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/reflection.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/service.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/source_context_pb2.pyi +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/struct_pb2.pyi +126 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/symbol_database.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/timestamp_pb2.pyi +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/type_pb2.pyi +237 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/util/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/wrappers_pb2.pyi +129 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/itsdangerous.pyi +184 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/__init__.pyi +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/_compat.pyi +36 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/_stringdefs.pyi +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/bccache.pyi +44 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/compiler.pyi +177 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/constants.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/debug.pyi +37 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/defaults.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/environment.pyi +224 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/exceptions.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/ext.pyi +66 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/filters.pyi +56 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/lexer.pyi +117 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/loaders.pyi +80 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/meta.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/nodes.pyi +255 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/optimizer.pyi +30 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/parser.pyi +68 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/runtime.pyi +132 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/sandbox.pyi +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/tests.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/utils.pyi +87 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/visitor.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/__init__.pyi +2 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/__meta__.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/blockparser.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/blockprocessors.pyi +59 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/core.pyi +63 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/__init__.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/abbr.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/admonition.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/attr_list.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/codehilite.pyi +42 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/def_list.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/extra.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/fenced_code.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/footnotes.pyi +57 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/legacy_attrs.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/legacy_em.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/md_in_html.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/meta.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/nl2br.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/sane_lists.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/smarty.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/tables.pyi +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/toc.pyi +44 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/extensions/wikilinks.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/inlinepatterns.pyi +103 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/pep562.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/postprocessors.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/preprocessors.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/serializers.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/treeprocessors.pyi +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markdown/util.pyi +56 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markupsafe/__init__.pyi +55 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markupsafe/_compat.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markupsafe/_constants.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markupsafe/_native.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/markupsafe/_speedups.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/maxminddb/__init__.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/maxminddb/compat.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/maxminddb/const.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/maxminddb/decoder.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/maxminddb/errors.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/maxminddb/extension.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/maxminddb/reader.pyi +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/mock.pyi +441 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/mypy_extensions.pyi +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/nmap/__init__.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/nmap/nmap.pyi +122 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/__init__.pyi +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/_version.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/_winapi.pyi +97 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/agent.pyi +67 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/auth_handler.pyi +49 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/ber.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/buffered_pipe.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/channel.pyi +99 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/client.pyi +74 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/common.pyi +139 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/compress.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/config.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/dsskey.pyi +34 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/ecdsakey.pyi +53 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/ed25519key.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/file.pyi +38 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/hostkeys.pyi +47 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/kex_curve25519.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/kex_ecdh_nist.pyi +37 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/kex_gex.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/kex_group1.pyi +29 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/kex_group14.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/kex_group16.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/kex_gss.pyi +66 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/message.pyi +42 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/packet.pyi +60 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/pipe.pyi +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/pkey.pyi +44 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/primes.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/proxy.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/py3compat.pyi +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/rsakey.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/server.pyi +51 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/sftp.pyi +61 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/sftp_attr.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/sftp_client.pyi +67 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/sftp_file.pyi +29 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/sftp_handle.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/sftp_server.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/sftp_si.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/ssh_exception.pyi +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/ssh_gss.pyi +54 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/transport.pyi +194 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/util.pyi +52 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/paramiko/win_pageant.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/polib.pyi +156 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pyVmomi/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vim/__init__.pyi +69 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vim/event.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vim/fault.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vim/option.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vim/view.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vmodl/__init__.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vmodl/fault.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pyVmomi/vmodl/query.pyi +38 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pycurl.pyi +644 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/__init__.pyi +63 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/charset.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/connections.pyi +172 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/CLIENT.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/COMMAND.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/ER.pyi +471 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/FIELD_TYPE.pyi +29 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/FLAG.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/SERVER_STATUS.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/converters.pyi +47 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/cursors.pyi +52 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/err.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/times.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/util.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/__init__.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/attributes.pyi +118 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/connection/__init__.pyi +2 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/connection/base.pyi +158 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/connection/table.pyi +108 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/connection/util.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/constants.pyi +166 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/exceptions.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/indexes.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/models.pyi +159 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/settings.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/throttle.pyi +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/types.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pyre_extensions.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/pytz/__init__.pyi +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/redis/__init__.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/redis/client.pyi +633 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/redis/connection.pyi +177 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/redis/exceptions.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/redis/utils.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/__init__.pyi +36 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/adapters.pyi +73 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/api.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/auth.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/compat.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/cookies.pyi +64 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/exceptions.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/hooks.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/models.pyi +129 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/__init__.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/__init__.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/_collections.pyi +52 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/connection.pyi +65 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/connectionpool.pyi +121 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/contrib/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/exceptions.pyi +50 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/fields.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/filepost.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/packages/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/poolmanager.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/request.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/response.pyi +66 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/__init__.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/connection.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/request.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/response.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/retry.pyi +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/ssl_.pyi +30 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/timeout.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/url.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/sessions.pyi +101 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/status_codes.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/structures.pyi +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/utils.pyi +54 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/retry/__init__.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/retry/api.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/simplejson/__init__.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/simplejson/decoder.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/simplejson/encoder.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/simplejson/scanner.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/singledispatch.pyi +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/slugify/__init__.pyi +2 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/slugify/slugify.pyi +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/slugify/special.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/tabulate.pyi +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/termcolor.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/toml.pyi +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/typing_extensions.pyi +114 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/tzlocal/__init__.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/ujson.pyi +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/__init__.pyi +151 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/_compat.pyi +53 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/_internal.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/_reloader.pyi +29 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/atom.pyi +50 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/cache.pyi +92 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/fixers.pyi +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/iterio.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/jsrouting.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/limiter.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/lint.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/profiler.pyi +9 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/securecookie.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/sessions.pyi +77 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/testtools.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/wrappers.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/datastructures.pyi +458 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/debug/__init__.pyi +51 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/debug/console.pyi +44 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/debug/repr.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/debug/tbtools.pyi +63 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/exceptions.pyi +183 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/filesystem.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/formparser.pyi +102 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/http.pyi +137 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/local.pyi +100 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/dispatcher.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/http_proxy.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/lint.pyi +62 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/profiler.pyi +14 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/proxy_fix.pyi +23 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/shared_data.pyi +29 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/posixemulation.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/routing.pyi +230 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/script.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/security.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/serving.pyi +140 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/test.pyi +175 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/testapp.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/urls.pyi +94 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/useragents.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/utils.pyi +58 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/wrappers.pyi +289 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/wsgi.pyi +74 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/__init__.pyi +275 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/composer.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/constructor.pyi +86 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/cyaml.pyi +63 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/dumper.pyi +61 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/emitter.pyi +109 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/error.pyi +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/events.pyi +62 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/loader.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/nodes.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/parser.pyi +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/reader.pyi +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/representer.pyi +60 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/resolver.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/scanner.pyi +97 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/serializer.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/tokens.pyi +93 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/aiofiles/__init__.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/aiofiles/base.pyi +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/aiofiles/os.pyi +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/aiofiles/threadpool/__init__.pyi +91 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/aiofiles/threadpool/binary.pyi +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/aiofiles/threadpool/text.pyi +38 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/contextvars.pyi +38 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/dataclasses.pyi +95 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/docutils/__init__.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/docutils/examples.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/docutils/nodes.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/docutils/parsers/__init__.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/docutils/parsers/rst/__init__.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/docutils/parsers/rst/nodes.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/docutils/parsers/rst/roles.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/docutils/parsers/rst/states.pyi +6 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/filelock/__init__.pyi +54 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/freezegun/__init__.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/freezegun/api.pyi +56 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/frozendict.pyi +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/jwt/__init__.pyi +49 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/jwt/algorithms.pyi +101 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/jwt/contrib/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/jwt/contrib/algorithms/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/jwt/contrib/algorithms/py_ecdsa.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/jwt/contrib/algorithms/pycrypto.pyi +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/orjson.pyi +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/pkg_resources/__init__.pyi +271 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/pkg_resources/py31compat.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/pyrfc3339/__init__.pyi +2 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/pyrfc3339/generator.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/pyrfc3339/parser.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/pyrfc3339/utils.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/__init__.pyi +125 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/BaseHTTPServer.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/CGIHTTPServer.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/SimpleHTTPServer.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/__init__.pyi +65 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/_dummy_thread.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/_thread.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/builtins.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/cPickle.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/collections_abc.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/configparser.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/email_mime_base.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/email_mime_multipart.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/email_mime_nonmultipart.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/email_mime_text.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/html_entities.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/html_parser.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/http_client.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/http_cookiejar.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/http_cookies.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/queue.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/reprlib.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/socketserver.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/tkinter.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_commondialog.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_constants.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_dialog.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_filedialog.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_tkfiledialog.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_ttk.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib/__init__.pyi +5 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib/error.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib/parse.pyi +30 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib/request.pyi +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib/response.pyi +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib/robotparser.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib_error.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib_parse.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib_request.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib_response.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib_robotparser.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/typed_ast/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/typed_ast/ast27.pyi +335 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/typed_ast/ast3.pyi +384 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/typed_ast/conversions.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/waitress/__init__.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/waitress/adjustments.pyi +61 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/waitress/buffers.pyi +57 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/waitress/channel.pyi +49 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/waitress/compat.pyi +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/waitress/parser.pyi +43 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/waitress/proxy_headers.pyi +32 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/waitress/receiver.pyi +32 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/waitress/rfc7230.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/waitress/runner.pyi +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/waitress/server.pyi +103 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/waitress/task.pyi +69 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/waitress/trigger.pyi +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/waitress/utilities.pyi +76 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/third_party/typeshed/third_party/3/waitress/wasyncore.pyi +94 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jedi/utils.py +134 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter.py +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/__init__.py +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/_version.py +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/adapter.py +431 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/asynchronous/__init__.py +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/asynchronous/client.py +75 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/blocking/__init__.py +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/blocking/client.py +71 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/channels.py +328 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/channelsabc.py +51 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/client.py +827 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/clientabc.py +100 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/connect.py +725 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/consoleapp.py +374 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/ioloop/__init__.py +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/ioloop/manager.py +116 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/ioloop/restarter.py +102 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/jsonutil.py +192 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/kernelapp.py +92 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/kernelspec.py +453 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/kernelspecapp.py +341 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/launcher.py +186 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/localinterfaces.py +333 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/manager.py +806 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/managerabc.py +56 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/multikernelmanager.py +624 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/provisioning/__init__.py +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/provisioning/factory.py +200 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/provisioning/local_provisioner.py +242 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/provisioning/provisioner_base.py +257 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/py.typed +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/restarter.py +162 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/runapp.py +128 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/session.py +1107 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/ssh/__init__.py +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/ssh/forward.py +102 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/ssh/tunnel.py +446 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/threaded.py +351 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/utils.py +90 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_client/win_interrupt.py +45 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_core/__init__.py +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_core/__main__.py +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_core/application.py +322 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_core/command.py +408 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_core/migrate.py +282 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_core/paths.py +1100 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_core/py.typed +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_core/troubleshoot.py +111 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_core/utils/__init__.py +204 -0
- lollms_client-1.0.0/venv/Lib/site-packages/jupyter_core/version.py +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/matplotlib_inline/__init__.py +2 -0
- lollms_client-1.0.0/venv/Lib/site-packages/matplotlib_inline/backend_inline.py +311 -0
- lollms_client-1.0.0/venv/Lib/site-packages/matplotlib_inline/config.py +100 -0
- lollms_client-1.0.0/venv/Lib/site-packages/nest_asyncio.py +219 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/__config__.py +170 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/__config__.pyi +102 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/__init__.py +941 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/__init__.pyi +5387 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_array_api_info.py +346 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_array_api_info.pyi +207 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_configtool.py +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_configtool.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/__init__.py +186 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/__init__.pyi +2 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_add_newdocs.py +6967 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_add_newdocs.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_add_newdocs_scalars.py +390 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_add_newdocs_scalars.pyi +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_asarray.py +134 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_asarray.pyi +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_dtype.py +366 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_dtype.pyi +58 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_dtype_ctypes.py +120 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_dtype_ctypes.pyi +83 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_exceptions.py +162 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_exceptions.pyi +55 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_internal.py +958 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_internal.pyi +72 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_machar.py +355 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_machar.pyi +55 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_methods.py +255 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_methods.pyi +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_simd.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_string_helpers.py +100 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_string_helpers.pyi +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_type_aliases.py +119 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_type_aliases.pyi +97 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_ufunc_config.py +489 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/_ufunc_config.pyi +32 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/arrayprint.py +1775 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/arrayprint.pyi +238 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/cversions.py +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/defchararray.py +1427 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/defchararray.pyi +1135 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/einsumfunc.py +1498 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/einsumfunc.pyi +184 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/fromnumeric.py +4269 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/fromnumeric.pyi +1750 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/function_base.py +545 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/function_base.pyi +278 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/getlimits.py +748 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/getlimits.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/memmap.py +363 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/memmap.pyi +3 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/multiarray.py +1762 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/multiarray.pyi +1285 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/numeric.py +2760 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/numeric.pyi +882 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/numerictypes.py +633 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/numerictypes.pyi +192 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/overrides.py +183 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/overrides.pyi +48 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/printoptions.py +32 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/printoptions.pyi +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/records.py +1089 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/records.pyi +333 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/shape_base.py +998 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/shape_base.pyi +175 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/strings.py +1823 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/strings.pyi +511 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/_locales.py +72 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/_natype.py +205 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/examples/cython/setup.py +39 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/examples/limited_api/setup.py +24 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test__exceptions.py +90 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_abc.py +54 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_api.py +621 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_argparse.py +92 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_array_api_info.py +113 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_array_coercion.py +911 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_array_interface.py +222 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_arraymethod.py +84 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_arrayobject.py +75 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_arrayprint.py +1328 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_casting_unittests.py +817 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_conversion_utils.py +206 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_cpu_dispatcher.py +49 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_cpu_features.py +432 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_custom_dtypes.py +315 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_cython.py +351 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_datetime.py +2710 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_defchararray.py +825 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_deprecations.py +454 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_dlpack.py +190 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_dtype.py +1995 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_einsum.py +1317 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_errstate.py +131 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_extint128.py +217 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_function_base.py +503 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_getlimits.py +205 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_half.py +568 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_hashtable.py +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_indexerrors.py +125 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_indexing.py +1455 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_item_selection.py +167 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_limited_api.py +102 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_longdouble.py +369 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_machar.py +30 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_mem_overlap.py +930 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_mem_policy.py +452 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_memmap.py +246 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_multiarray.py +10563 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_multithreading.py +292 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_nditer.py +3498 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_nep50_promotions.py +287 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_numeric.py +4247 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_numerictypes.py +622 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_overrides.py +791 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_print.py +200 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_protocols.py +46 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_records.py +544 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_regression.py +2670 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_scalar_ctors.py +207 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_scalar_methods.py +246 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_scalarbuffer.py +153 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_scalarinherit.py +105 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_scalarmath.py +1176 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_scalarprint.py +403 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_shape_base.py +891 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_simd.py +1341 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_simd_module.py +103 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_stringdtype.py +1807 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_strings.py +1454 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_ufunc.py +3313 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_umath.py +4916 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_umath_accuracy.py +124 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_umath_complex.py +626 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/tests/test_unicode.py +368 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/umath.py +60 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_core/umath.pyi +197 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_distributor_init.py +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_distributor_init.pyi +1 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_expired_attrs_2_0.py +79 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_expired_attrs_2_0.pyi +62 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_globals.py +96 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_globals.pyi +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_pyinstaller/__init__.py +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_pyinstaller/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_pyinstaller/hook-numpy.py +36 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_pyinstaller/hook-numpy.pyi +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_pyinstaller/tests/__init__.py +16 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_pyinstaller/tests/pyinstaller-smoke.py +32 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_pyinstaller/tests/test_pyinstaller.py +35 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_pytesttester.py +201 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_pytesttester.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_typing/__init__.py +148 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_typing/_add_docstring.py +153 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_typing/_array_like.py +106 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_typing/_callable.pyi +366 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_typing/_char_codes.py +213 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_typing/_dtype_like.py +114 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_typing/_extended_precision.py +15 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_typing/_nbit.py +19 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_typing/_nbit_base.py +94 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_typing/_nbit_base.pyi +40 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_typing/_nested_sequence.py +79 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_typing/_scalars.py +20 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_typing/_shape.py +8 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_typing/_ufunc.py +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_typing/_ufunc.pyi +941 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_utils/__init__.py +95 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_utils/__init__.pyi +30 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_utils/_convertions.py +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_utils/_convertions.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_utils/_inspect.py +192 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_utils/_inspect.pyi +71 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_utils/_pep440.py +486 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/_utils/_pep440.pyi +121 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/char/__init__.py +2 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/char/__init__.pyi +111 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/conftest.py +258 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/__init__.py +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/__init__.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/_dtype.py +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/_dtype.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/_dtype_ctypes.py +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/_dtype_ctypes.pyi +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/_internal.py +27 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/_multiarray_umath.py +57 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/_utils.py +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/arrayprint.py +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/defchararray.py +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/einsumfunc.py +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/fromnumeric.py +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/function_base.py +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/getlimits.py +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/multiarray.py +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/numeric.py +12 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/numerictypes.py +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/overrides.py +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/overrides.pyi +7 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/records.py +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/shape_base.py +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/core/umath.py +10 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/ctypeslib/__init__.py +13 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/ctypeslib/__init__.pyi +33 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/ctypeslib/_ctypeslib.py +603 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/ctypeslib/_ctypeslib.pyi +245 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/__init__.py +64 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/__init__.pyi +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/_shell_utils.py +87 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/armccompiler.py +26 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/ccompiler.py +826 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/ccompiler_opt.py +2668 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/command/__init__.py +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/command/autodist.py +148 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/command/bdist_rpm.py +22 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/command/build.py +62 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/command/build_clib.py +469 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/command/build_ext.py +752 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/command/build_py.py +31 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/command/build_scripts.py +49 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/conv_template.py +329 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/core.py +215 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/cpuinfo.py +683 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/exec_command.py +315 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/extension.py +101 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/from_template.py +261 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/fujitsuccompiler.py +28 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/intelccompiler.py +106 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/lib2def.py +116 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/line_endings.py +77 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/log.py +111 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/mingw32ccompiler.py +620 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/misc_util.py +2484 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/msvc9compiler.py +63 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/msvccompiler.py +76 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/npy_pkg_config.py +441 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/numpy_distribution.py +17 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/pathccompiler.py +21 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/system_info.py +3267 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/distutils/unixccompiler.py +141 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/dtypes.py +41 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/dtypes.pyi +631 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/exceptions.py +247 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/exceptions.pyi +25 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/matlib.py +380 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/matlib.pyi +582 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/py.typed +0 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/version.py +11 -0
- lollms_client-1.0.0/venv/Lib/site-packages/numpy/version.pyi +18 -0
- lollms_client-1.0.0/venv/Lib/site-packages/pythoncom.py +4 -0
- lollms_client-1.0.0/venv/Lib/site-packages/six.py +1003 -0
- lollms_client-1.0.0/venv/Lib/site-packages/typing_extensions.py +4244 -0
- lollms_client-0.33.0/PKG-INFO +0 -854
- lollms_client-0.33.0/README.md +0 -823
- lollms_client-0.33.0/examples/generate_game_sfx/generate_game_fx.py +0 -240
- lollms_client-0.33.0/examples/simple_text_gen_test.py +0 -173
- lollms_client-0.33.0/examples/simple_text_gen_with_image_test.py +0 -178
- lollms_client-0.33.0/examples/text_2_audio.py +0 -77
- lollms_client-0.33.0/examples/text_gen.py +0 -30
- lollms_client-0.33.0/lollms_client/__init__.py +0 -26
- lollms_client-0.33.0/lollms_client/llm_bindings/azure_openai/__init__.py +0 -364
- lollms_client-0.33.0/lollms_client/llm_bindings/claude/__init__.py +0 -549
- lollms_client-0.33.0/lollms_client/llm_bindings/gemini/__init__.py +0 -501
- lollms_client-0.33.0/lollms_client/llm_bindings/grok/__init__.py +0 -536
- lollms_client-0.33.0/lollms_client/llm_bindings/groq/__init__.py +0 -291
- lollms_client-0.33.0/lollms_client/llm_bindings/hugging_face_inference_api/__init__.py +0 -307
- lollms_client-0.33.0/lollms_client/llm_bindings/litellm/__init__.py +0 -220
- lollms_client-0.33.0/lollms_client/llm_bindings/llamacpp/__init__.py +0 -1009
- lollms_client-0.33.0/lollms_client/llm_bindings/lollms/__init__.py +0 -572
- lollms_client-0.33.0/lollms_client/llm_bindings/lollms_webui/__init__.py +0 -428
- lollms_client-0.33.0/lollms_client/llm_bindings/mistral/__init__.py +0 -329
- lollms_client-0.33.0/lollms_client/llm_bindings/ollama/__init__.py +0 -836
- lollms_client-0.33.0/lollms_client/llm_bindings/open_router/__init__.py +0 -336
- lollms_client-0.33.0/lollms_client/llm_bindings/openai/__init__.py +0 -678
- lollms_client-0.33.0/lollms_client/llm_bindings/openllm/__init__.py +0 -550
- lollms_client-0.33.0/lollms_client/llm_bindings/pythonllamacpp/__init__.py +0 -608
- lollms_client-0.33.0/lollms_client/llm_bindings/tensor_rt/__init__.py +0 -607
- lollms_client-0.33.0/lollms_client/llm_bindings/transformers/__init__.py +0 -699
- lollms_client-0.33.0/lollms_client/llm_bindings/vllm/__init__.py +0 -607
- lollms_client-0.33.0/lollms_client/lollms_core.py +0 -3252
- lollms_client-0.33.0/lollms_client/lollms_discussion.py +0 -1843
- lollms_client-0.33.0/lollms_client/lollms_llm_binding.py +0 -765
- lollms_client-0.33.0/lollms_client/lollms_mcp_binding.py +0 -198
- lollms_client-0.33.0/lollms_client/mcp_bindings/local_mcp/__init__.py +0 -311
- lollms_client-0.33.0/lollms_client/mcp_bindings/remote_mcp/__init__.py +0 -423
- lollms_client-0.33.0/lollms_client/mcp_bindings/standard_mcp/__init__.py +0 -535
- lollms_client-0.33.0/lollms_client/stt_bindings/lollms/__init__.py +0 -139
- lollms_client-0.33.0/lollms_client/stt_bindings/whisper/__init__.py +0 -304
- lollms_client-0.33.0/lollms_client/stt_bindings/whispercpp/__init__.py +0 -380
- lollms_client-0.33.0/lollms_client/tti_bindings/dalle/__init__.py +0 -433
- lollms_client-0.33.0/lollms_client/tti_bindings/diffusers/__init__.py +0 -692
- lollms_client-0.33.0/lollms_client/tti_bindings/lollms/__init__.py +0 -208
- lollms_client-0.33.0/lollms_client.egg-info/PKG-INFO +0 -854
- lollms_client-0.33.0/lollms_client.egg-info/SOURCES.txt +0 -104
- lollms_client-0.33.0/lollms_client.egg-info/top_level.txt +0 -7
- lollms_client-0.33.0/pyproject.toml +0 -48
- {lollms_client-0.33.0 → lollms_client-1.0.0}/LICENSE +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/article_summary/article_summary.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/console_discussion/console_app.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/console_discussion.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/deep_analyze/deep_analyse.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/deep_analyze/deep_analyze_multiple_files.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/function_calling_with_local_custom_mcp.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/generate_a_benchmark_for_safe_store.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/generate_and_speak/generate_and_speak.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/generate_text_with_multihop_rag_example.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/gradio_chat_app.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/gradio_lollms_chat.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/internet_search_with_rag.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/lollms_chat/calculator.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/lollms_chat/derivative.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/lollms_chat/test_openai_compatible_with_lollms_chat.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/lollms_discussions_test.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/mcp_examples/external_mcp.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/mcp_examples/local_mcp.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/mcp_examples/openai_mcp.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/mcp_examples/run_remote_mcp_example_v2.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/mcp_examples/run_standard_mcp_example.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/test_local_models/local_chat.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/text_2_image.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/text_2_image_diffusers.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/text_and_image_2_audio.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/examples/text_gen_system_prompt.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/llm_bindings/__init__.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/lollms_config.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/lollms_js_analyzer.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/lollms_mcp_security.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/lollms_personality.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/lollms_python_analyzer.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/lollms_stt_binding.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/lollms_tti_binding.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/lollms_ttm_binding.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/lollms_tts_binding.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/lollms_ttv_binding.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/lollms_types.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/lollms_utilities.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/mcp_bindings/local_mcp/default_tools/file_writer/file_writer.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/mcp_bindings/local_mcp/default_tools/generate_image_from_prompt/generate_image_from_prompt.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/mcp_bindings/local_mcp/default_tools/internet_search/internet_search.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/mcp_bindings/local_mcp/default_tools/python_interpreter/python_interpreter.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/stt_bindings/__init__.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/tti_bindings/__init__.py +0 -0
- {lollms_client-0.33.0/lollms_client/tti_bindings/gemini → lollms_client-1.0.0/lollms_client/ttm_bindings}/__init__.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/ttm_bindings/audiocraft/__init__.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/ttm_bindings/bark/__init__.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/ttm_bindings/lollms/__init__.py +0 -0
- {lollms_client-0.33.0/lollms_client/ttm_bindings → lollms_client-1.0.0/lollms_client/tts_bindings}/__init__.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/tts_bindings/bark/__init__.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/tts_bindings/lollms/__init__.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/tts_bindings/piper_tts/__init__.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/tts_bindings/xtts/__init__.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client/ttv_bindings/__init__.py +0 -0
- {lollms_client-0.33.0/lollms_client/tts_bindings → lollms_client-1.0.0/lollms_client/ttv_bindings/lollms}/__init__.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client.egg-info/dependency_links.txt +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/lollms_client.egg-info/requires.txt +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/setup.cfg +0 -0
- {lollms_client-0.33.0/lollms_client/ttv_bindings/lollms → lollms_client-1.0.0/src/lollms_client/stt_bindings}/__init__.py +0 -0
- {lollms_client-0.33.0 → lollms_client-1.0.0}/test/test_lollms_discussion.py +0 -0
|
@@ -0,0 +1,1214 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: lollms_client
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A client library for LoLLMs generate endpoint
|
|
5
|
+
Author-email: ParisNeo <parisneoai@gmail.com>
|
|
6
|
+
License: Apache Software License
|
|
7
|
+
Project-URL: Homepage, https://github.com/ParisNeo/lollms_client
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Intended Audience :: Developers
|
|
17
|
+
Classifier: Intended Audience :: Science/Research
|
|
18
|
+
Requires-Python: >=3.7
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Requires-Dist: requests
|
|
22
|
+
Requires-Dist: ascii-colors
|
|
23
|
+
Requires-Dist: pipmaster
|
|
24
|
+
Requires-Dist: pyyaml
|
|
25
|
+
Requires-Dist: tiktoken
|
|
26
|
+
Requires-Dist: pydantic
|
|
27
|
+
Requires-Dist: numpy
|
|
28
|
+
Requires-Dist: pillow
|
|
29
|
+
Requires-Dist: sqlalchemy
|
|
30
|
+
Dynamic: license-file
|
|
31
|
+
|
|
32
|
+
# LoLLMs Client Library
|
|
33
|
+
|
|
34
|
+
[](https://opensource.org/licenses/Apache-2.0)
|
|
35
|
+
[](https://badge.fury.io/py/lollms_client)
|
|
36
|
+
[](https://pypi.org/project/lollms-client/)
|
|
37
|
+
[](https://pepy.tech/project/lollms-client)
|
|
38
|
+
[](DOC_USE.md)
|
|
39
|
+
[](DOC_DEV.md)
|
|
40
|
+
[](https://github.com/ParisNeo/lollms_client/stargazers/)
|
|
41
|
+
[](https://github.com/ParisNeo/lollms_client/issues)
|
|
42
|
+
|
|
43
|
+
**`lollms_client`** is a powerful and flexible Python library designed to simplify interactions with the **LoLLMs (Lord of Large Language Models)** ecosystem and various other Large Language Model (LLM) backends. It provides a unified API for text generation, multimodal operations (text-to-image, text-to-speech, etc.), and robust function calling through the Model Context Protocol (MCP).
|
|
44
|
+
|
|
45
|
+
Whether you're connecting to a remote LoLLMs server, an Ollama instance, the OpenAI API, or running models locally using GGUF (via `llama-cpp-python` or a managed `llama.cpp` server), Hugging Face Transformers, or vLLM, `lollms-client` offers a consistent and developer-friendly experience.
|
|
46
|
+
|
|
47
|
+
## Key Features
|
|
48
|
+
|
|
49
|
+
* 🔌 **Versatile Binding System:** Seamlessly switch between different LLM backends (LoLLMs, Ollama, OpenAI, Llama.cpp, Transformers, vLLM, OpenLLM, Gemini, Claude, Groq, OpenRouter, Hugging Face Inference API) using a unified `llm_binding_config` dictionary for all parameters.
|
|
50
|
+
* 🗣️ **Multimodal Support:** Interact with models capable of processing images and generate various outputs like speech (TTS), images (TTI), video (TTV), and music (TTM).
|
|
51
|
+
* 🖼️ **Selective Image Activation:** Control which images in a message are active and sent to the model, allowing for fine-grained multimodal context management without deleting the original data.
|
|
52
|
+
* 🤖 **Agentic Workflows with MCP:** Empower LLMs to act as sophisticated agents, breaking down complex tasks, selecting and executing external tools (e.g., internet search, code interpreter, file I/O, image generation) through the Model Context Protocol (MCP) using a robust "observe-think-act" loop.
|
|
53
|
+
* 🎭 **Personalities as Agents:** Personalities can now define their own set of required tools (MCPs) and have access to static or dynamic knowledge bases (`data_source`), turning them into self-contained, ready-to-use agents.
|
|
54
|
+
* 🚀 **Streaming & Callbacks:** Efficiently handle real-time text generation with customizable callback functions across all generation methods, including during agentic (MCP) interactions.
|
|
55
|
+
* 📑 **Long Context Processing:** The `long_context_processing` method (formerly `sequential_summarize`) intelligently chunks and synthesizes texts that exceed the model's context window, suitable for summarization or deep analysis.
|
|
56
|
+
* 📝 **Advanced Structured Content Generation:** Reliably generate structured JSON output from natural language prompts using the `generate_structured_content` helper method, enforcing a specific schema.
|
|
57
|
+
* 💬 **Advanced Discussion Management:** Robustly manage conversation histories with `LollmsDiscussion`, featuring branching, context exporting, and automatic pruning.
|
|
58
|
+
* 🧠 **Persistent Memory & Data Zones:** `LollmsDiscussion` now supports multiple, distinct data zones (`user_data_zone`, `discussion_data_zone`, `personality_data_zone`) and a long-term `memory` field. This allows for sophisticated context layering and state management, enabling agents to learn and remember over time.
|
|
59
|
+
* ✍️ **Automatic Memorization:** A new `memorize()` method allows the AI to analyze a conversation and extract key facts, appending them to the long-term `memory` for recall in future sessions.
|
|
60
|
+
* 📊 **Detailed Context Analysis:** The `get_context_status()` method provides a rich, detailed breakdown of the prompt context, showing the content and token count for each individual component (system prompt, data zones, message history).
|
|
61
|
+
* ⚙️ **Standardized Configuration Management:** A unified dictionary-based system (`llm_binding_config`) to configure any binding in a consistent manner.
|
|
62
|
+
* 🧩 **Extensible:** Designed to easily incorporate new LLM backends and modality services, including custom MCP toolsets.
|
|
63
|
+
* 📝 **High-Level Operations:** Includes convenience methods for complex tasks like sequential summarization and deep text analysis directly within `LollmsClient`.
|
|
64
|
+
|
|
65
|
+
## Installation
|
|
66
|
+
|
|
67
|
+
You can install `lollms_client` directly from PyPI:
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
pip install lollms-client
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
This will install the core library. Some bindings may require additional dependencies (e.g., `llama-cpp-python`, `torch`, `transformers`, `ollama`, `vllm`, `Pillow` for image utilities, `docling` for document parsing). The library attempts to manage these using `pipmaster`, but for complex dependencies (especially those requiring compilation like `llama-cpp-python` with GPU support), manual installation might be preferred.
|
|
74
|
+
|
|
75
|
+
## Core Generation Methods
|
|
76
|
+
|
|
77
|
+
The `LollmsClient` provides several methods for generating text, catering to different use cases.
|
|
78
|
+
|
|
79
|
+
### Basic Text Generation (`generate_text`)
|
|
80
|
+
|
|
81
|
+
This is the most straightforward method for generating a response based on a simple prompt.
|
|
82
|
+
|
|
83
|
+
```python
|
|
84
|
+
from lollms_client import LollmsClient, MSG_TYPE
|
|
85
|
+
from ascii_colors import ASCIIColors
|
|
86
|
+
import os
|
|
87
|
+
|
|
88
|
+
# Callback for streaming output
|
|
89
|
+
def simple_streaming_callback(chunk: str, msg_type: MSG_TYPE, params=None, metadata=None) -> bool:
|
|
90
|
+
if msg_type == MSG_TYPE.MSG_TYPE_CHUNK:
|
|
91
|
+
print(chunk, end="", flush=True)
|
|
92
|
+
elif msg_type == MSG_TYPE.MSG_TYPE_EXCEPTION:
|
|
93
|
+
ASCIIColors.error(f"\nStreaming Error: {chunk}")
|
|
94
|
+
return True # True to continue streaming
|
|
95
|
+
|
|
96
|
+
try:
|
|
97
|
+
# Initialize client to connect to a LoLLMs server.
|
|
98
|
+
# All binding-specific parameters now go into the 'llm_binding_config' dictionary.
|
|
99
|
+
lc = LollmsClient(
|
|
100
|
+
llm_binding_name="lollms", # This is the default binding
|
|
101
|
+
llm_binding_config={
|
|
102
|
+
"host_address": "http://localhost:9642", # Default port for LoLLMs server
|
|
103
|
+
# "service_key": "your_lollms_api_key_here" # Get key from LoLLMs UI -> User Settings if security is enabled
|
|
104
|
+
}
|
|
105
|
+
)
|
|
106
|
+
|
|
107
|
+
prompt = "Tell me a fun fact about space."
|
|
108
|
+
ASCIIColors.yellow(f"Prompt: {prompt}")
|
|
109
|
+
|
|
110
|
+
# Generate text with streaming
|
|
111
|
+
ASCIIColors.green("Streaming Response:")
|
|
112
|
+
response_text = lc.generate_text(
|
|
113
|
+
prompt,
|
|
114
|
+
n_predict=100,
|
|
115
|
+
stream=True,
|
|
116
|
+
streaming_callback=simple_streaming_callback
|
|
117
|
+
)
|
|
118
|
+
print("\n--- End of Stream ---")
|
|
119
|
+
|
|
120
|
+
# The 'response_text' variable will contain the full concatenated text
|
|
121
|
+
# if streaming_callback returns True throughout.
|
|
122
|
+
if isinstance(response_text, str):
|
|
123
|
+
ASCIIColors.cyan(f"\nFull streamed text collected: {response_text[:100]}...")
|
|
124
|
+
elif isinstance(response_text, dict) and "error" in response_text:
|
|
125
|
+
ASCIIColors.error(f"Error during generation: {response_text['error']}")
|
|
126
|
+
|
|
127
|
+
except ValueError as ve:
|
|
128
|
+
ASCIIColors.error(f"Initialization Error: {ve}")
|
|
129
|
+
ASCIIColors.info("Ensure a LoLLMs server is running or configure another binding.")
|
|
130
|
+
except ConnectionRefusedError:
|
|
131
|
+
ASCIIColors.error("Connection refused. Is the LoLLMs server running at http://localhost:9642?")
|
|
132
|
+
except Exception as e:
|
|
133
|
+
ASCIIColors.error(f"An unexpected error occurred: {e}")
|
|
134
|
+
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
### Generating from Message Lists (`generate_from_messages`)
|
|
138
|
+
|
|
139
|
+
For more complex conversational interactions, you can provide the LLM with a list of messages, similar to the OpenAI Chat Completion API. This allows you to define roles (system, user, assistant) and build multi-turn conversations programmatically.
|
|
140
|
+
|
|
141
|
+
```python
|
|
142
|
+
from lollms_client import LollmsClient, MSG_TYPE
|
|
143
|
+
from ascii_colors import ASCIIColors
|
|
144
|
+
import os
|
|
145
|
+
|
|
146
|
+
def streaming_callback_for_messages(chunk: str, msg_type: MSG_TYPE, params=None, metadata=None) -> bool:
|
|
147
|
+
if msg_type == MSG_TYPE.MSG_TYPE_CHUNK:
|
|
148
|
+
print(chunk, end="", flush=True)
|
|
149
|
+
return True
|
|
150
|
+
|
|
151
|
+
try:
|
|
152
|
+
# Example for an Ollama binding
|
|
153
|
+
# Ensure you have Ollama installed and model 'llama3' pulled (e.g., ollama pull llama3)
|
|
154
|
+
lc = LollmsClient(
|
|
155
|
+
llm_binding_name="ollama",
|
|
156
|
+
llm_binding_config={
|
|
157
|
+
"model_name": "llama3",
|
|
158
|
+
"host_address": "http://localhost:11434" # Default Ollama address
|
|
159
|
+
}
|
|
160
|
+
)
|
|
161
|
+
|
|
162
|
+
# Define the conversation history as a list of messages
|
|
163
|
+
messages = [
|
|
164
|
+
{"role": "system", "content": "You are a helpful assistant that specializes in programming."},
|
|
165
|
+
{"role": "user", "content": "Hello, what's your name?"},
|
|
166
|
+
{"role": "assistant", "content": "I am an AI assistant created by Google."},
|
|
167
|
+
{"role": "user", "content": "Can you explain recursion in Python?"}
|
|
168
|
+
]
|
|
169
|
+
|
|
170
|
+
ASCIIColors.yellow("\nGenerating response from messages:")
|
|
171
|
+
response_text = lc.generate_from_messages(
|
|
172
|
+
messages=messages,
|
|
173
|
+
n_predict=200,
|
|
174
|
+
stream=True,
|
|
175
|
+
streaming_callback=streaming_callback_for_messages
|
|
176
|
+
)
|
|
177
|
+
print("\n--- End of Message Stream ---")
|
|
178
|
+
ASCIIColors.cyan(f"\nFull collected response: {response_text[:150]}...")
|
|
179
|
+
|
|
180
|
+
except Exception as e:
|
|
181
|
+
ASCIIColors.error(f"Error during message generation: {e}")
|
|
182
|
+
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
### Advanced Structured Content Generation (`generate_structured_content`)
|
|
186
|
+
|
|
187
|
+
The `generate_structured_content` method is a powerful utility for forcing an LLM's output into a specific JSON format. It's ideal for extracting information, getting consistent tool parameters, or any task requiring reliable, machine-readable output.
|
|
188
|
+
|
|
189
|
+
```python
|
|
190
|
+
from lollms_client import LollmsClient
|
|
191
|
+
from ascii_colors import ASCIIColors
|
|
192
|
+
import json
|
|
193
|
+
import os
|
|
194
|
+
|
|
195
|
+
try:
|
|
196
|
+
# Using Ollama as an example binding
|
|
197
|
+
lc = LollmsClient(llm_binding_name="ollama", llm_binding_config={"model_name": "llama3"})
|
|
198
|
+
|
|
199
|
+
text_block = "John Doe is a 34-year-old software engineer from New York. He loves hiking and Python programming."
|
|
200
|
+
|
|
201
|
+
# Define the exact JSON structure you want
|
|
202
|
+
output_template = {
|
|
203
|
+
"full_name": "string",
|
|
204
|
+
"age": "integer",
|
|
205
|
+
"profession": "string",
|
|
206
|
+
"city": "string",
|
|
207
|
+
"hobbies": ["list", "of", "strings"] # Example of a list in schema
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
ASCIIColors.yellow(f"\nExtracting structured data from: '{text_block}'")
|
|
211
|
+
ASCIIColors.yellow(f"Using schema: {json.dumps(output_template)}")
|
|
212
|
+
|
|
213
|
+
# Generate the structured data
|
|
214
|
+
extracted_data = lc.generate_structured_content(
|
|
215
|
+
prompt=f"Extract the relevant information from the following text:\n\n{text_block}",
|
|
216
|
+
schema=output_template, # Note: parameter is 'schema'
|
|
217
|
+
temperature=0.0 # Use low temperature for deterministic structured output
|
|
218
|
+
)
|
|
219
|
+
|
|
220
|
+
if extracted_data:
|
|
221
|
+
ASCIIColors.green("\nExtracted Data (JSON):")
|
|
222
|
+
print(json.dumps(extracted_data, indent=2))
|
|
223
|
+
else:
|
|
224
|
+
ASCIIColors.error("\nFailed to extract structured data.")
|
|
225
|
+
|
|
226
|
+
except Exception as e:
|
|
227
|
+
ASCIIColors.error(f"An error occurred during structured content generation: {e}")
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
## Advanced Discussion Management
|
|
231
|
+
|
|
232
|
+
The `LollmsDiscussion` class is a core component for managing conversational state, including message history, long-term memory, and various context zones.
|
|
233
|
+
|
|
234
|
+
### Basic Chat with `LollmsDiscussion`
|
|
235
|
+
|
|
236
|
+
For general conversational agents that need to maintain context across turns, `LollmsDiscussion` simplifies the process. It automatically handles message formatting, history management, and context window limitations.
|
|
237
|
+
|
|
238
|
+
```python
|
|
239
|
+
from lollms_client import LollmsClient, LollmsDiscussion, MSG_TYPE, LollmsDataManager
|
|
240
|
+
from ascii_colors import ASCIIColors
|
|
241
|
+
import os
|
|
242
|
+
import tempfile
|
|
243
|
+
|
|
244
|
+
# Initialize LollmsClient
|
|
245
|
+
try:
|
|
246
|
+
lc = LollmsClient(
|
|
247
|
+
llm_binding_name="ollama",
|
|
248
|
+
llm_binding_config={
|
|
249
|
+
"model_name": "llama3",
|
|
250
|
+
"host_address": "http://localhost:11434"
|
|
251
|
+
}
|
|
252
|
+
)
|
|
253
|
+
except Exception as e:
|
|
254
|
+
ASCIIColors.error(f"Failed to initialize LollmsClient for discussion: {e}")
|
|
255
|
+
exit()
|
|
256
|
+
|
|
257
|
+
# Create a new discussion. For persistent discussions, pass a db_manager.
|
|
258
|
+
# Using a temporary directory for the database for this example's simplicity
|
|
259
|
+
with tempfile.TemporaryDirectory() as tmpdir:
|
|
260
|
+
db_path = Path(tmpdir) / "discussion_db.sqlite"
|
|
261
|
+
db_manager = LollmsDataManager(f"sqlite:///{db_path}")
|
|
262
|
+
|
|
263
|
+
discussion_id = "basic_chat_example"
|
|
264
|
+
discussion = db_manager.get_discussion(lc, discussion_id)
|
|
265
|
+
if not discussion:
|
|
266
|
+
ASCIIColors.yellow(f"\nCreating new discussion '{discussion_id}'...")
|
|
267
|
+
discussion = LollmsDiscussion.create_new(
|
|
268
|
+
lollms_client=lc,
|
|
269
|
+
db_manager=db_manager,
|
|
270
|
+
id=discussion_id,
|
|
271
|
+
autosave=True # Important for persistence
|
|
272
|
+
)
|
|
273
|
+
discussion.system_prompt = "You are a friendly and helpful AI."
|
|
274
|
+
discussion.commit()
|
|
275
|
+
else:
|
|
276
|
+
ASCIIColors.green(f"\nLoaded existing discussion '{discussion_id}'.")
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
# Define a simple callback for streaming
|
|
280
|
+
def chat_callback(chunk: str, msg_type: MSG_TYPE, **kwargs) -> bool:
|
|
281
|
+
if msg_type == MSG_TYPE.MSG_TYPE_CHUNK:
|
|
282
|
+
print(chunk, end="", flush=True)
|
|
283
|
+
return True
|
|
284
|
+
|
|
285
|
+
try:
|
|
286
|
+
ASCIIColors.cyan("> User: Hello, how are you today?")
|
|
287
|
+
response = discussion.chat(
|
|
288
|
+
user_message="Hello, how are you today?",
|
|
289
|
+
streaming_callback=chat_callback
|
|
290
|
+
)
|
|
291
|
+
print("\n") # Newline after stream finishes
|
|
292
|
+
|
|
293
|
+
ai_message = response['ai_message']
|
|
294
|
+
user_message = response['user_message']
|
|
295
|
+
|
|
296
|
+
ASCIIColors.green(f"< Assistant (Full): {ai_message.content[:100]}...")
|
|
297
|
+
|
|
298
|
+
# Now, continue the conversation
|
|
299
|
+
ASCIIColors.cyan("\n> User: Can you recommend a good book?")
|
|
300
|
+
response = discussion.chat(
|
|
301
|
+
user_message="Can you recommend a good book?",
|
|
302
|
+
streaming_callback=chat_callback
|
|
303
|
+
)
|
|
304
|
+
print("\n")
|
|
305
|
+
|
|
306
|
+
# You can inspect the full message history
|
|
307
|
+
ASCIIColors.magenta("\n--- Discussion History (last 3 messages) ---")
|
|
308
|
+
for msg in discussion.get_messages()[-3:]:
|
|
309
|
+
print(f"[{msg.sender.capitalize()}]: {msg.content[:50]}...")
|
|
310
|
+
|
|
311
|
+
except Exception as e:
|
|
312
|
+
ASCIIColors.error(f"An error occurred during discussion chat: {e}")
|
|
313
|
+
```
|
|
314
|
+
|
|
315
|
+
### Building Stateful Agents with Memory and Data Zones
|
|
316
|
+
|
|
317
|
+
The `LollmsDiscussion` class provides a sophisticated system for creating stateful agents that can remember information across conversations. This is achieved through a layered system of "context zones" that are automatically combined into the AI's system prompt.
|
|
318
|
+
|
|
319
|
+
#### Understanding the Context Zones
|
|
320
|
+
|
|
321
|
+
The AI's context is more than just chat history. It's built from several distinct components, each with a specific purpose:
|
|
322
|
+
|
|
323
|
+
* **`system_prompt`**: The foundational layer defining the AI's core identity, persona, and primary instructions.
|
|
324
|
+
* **`memory`**: The AI's long-term, persistent memory. It stores key facts about the user or topics, built up over time using the `memorize()` method.
|
|
325
|
+
* **`user_data_zone`**: Holds session-specific information about the user's current state or goals (e.g., "User is currently working on 'file.py'").
|
|
326
|
+
* **`discussion_data_zone`**: Contains state or meta-information about the current conversational task (e.g., "Step 1 of the plan is complete").
|
|
327
|
+
* **`personality_data_zone`**: A knowledge base or set of rules automatically injected from a `LollmsPersonality`'s `data_source`.
|
|
328
|
+
* **`pruning_summary`**: An automatic, AI-generated summary of the oldest messages in a very long chat, used to conserve tokens without losing the gist of the early conversation.
|
|
329
|
+
|
|
330
|
+
The `get_context_status()` method is your window into this system, showing you exactly how these zones are combined and how many tokens they consume.
|
|
331
|
+
|
|
332
|
+
Let's see this in action with a "Personal Assistant" agent that learns about the user over time.
|
|
333
|
+
|
|
334
|
+
```python
|
|
335
|
+
from lollms_client import LollmsClient, LollmsDataManager, LollmsDiscussion, MSG_TYPE
|
|
336
|
+
from ascii_colors import ASCIIColors
|
|
337
|
+
import json
|
|
338
|
+
import tempfile
|
|
339
|
+
import os
|
|
340
|
+
|
|
341
|
+
# --- 1. Setup a persistent database for our discussion ---
|
|
342
|
+
with tempfile.TemporaryDirectory() as tmpdir:
|
|
343
|
+
db_path = Path(tmpdir) / "my_assistant.db"
|
|
344
|
+
db_manager = LollmsDataManager(f"sqlite:///{db_path}")
|
|
345
|
+
|
|
346
|
+
try:
|
|
347
|
+
lc = LollmsClient(llm_binding_name="ollama", llm_binding_config={"model_name": "llama3"})
|
|
348
|
+
except Exception as e:
|
|
349
|
+
ASCIIColors.error(f"Failed to initialize LollmsClient for stateful agent: {e}")
|
|
350
|
+
exit()
|
|
351
|
+
|
|
352
|
+
# Try to load an existing discussion or create a new one
|
|
353
|
+
discussion_id = "user_assistant_chat_1"
|
|
354
|
+
discussion = db_manager.get_discussion(lc, discussion_id)
|
|
355
|
+
if not discussion:
|
|
356
|
+
ASCIIColors.yellow("Creating a new discussion for stateful agent...")
|
|
357
|
+
discussion = LollmsDiscussion.create_new(
|
|
358
|
+
lollms_client=lc,
|
|
359
|
+
db_manager=db_manager,
|
|
360
|
+
id=discussion_id,
|
|
361
|
+
autosave=True # Important for persistence
|
|
362
|
+
)
|
|
363
|
+
# Let's preset some data in different zones
|
|
364
|
+
discussion.system_prompt = "You are a helpful Personal Assistant."
|
|
365
|
+
discussion.user_data_zone = "User's Name: Alex\nUser's Goal: Learn about AI development."
|
|
366
|
+
discussion.commit()
|
|
367
|
+
else:
|
|
368
|
+
ASCIIColors.green("Loaded existing discussion for stateful agent.")
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
def run_chat_turn(prompt: str):
|
|
372
|
+
"""Helper function to run a single chat turn and print details."""
|
|
373
|
+
ASCIIColors.cyan(f"\n> User: {prompt}")
|
|
374
|
+
|
|
375
|
+
# --- A. Check context status BEFORE the turn using get_context_status() ---
|
|
376
|
+
ASCIIColors.magenta("\n--- Context Status (Before Generation) ---")
|
|
377
|
+
status = discussion.get_context_status()
|
|
378
|
+
print(f"Max Tokens: {status.get('max_tokens')}, Current Tokens: {status.get('current_tokens')}")
|
|
379
|
+
|
|
380
|
+
# Print the system context details
|
|
381
|
+
if 'system_context' in status['zones']:
|
|
382
|
+
sys_ctx = status['zones']['system_context']
|
|
383
|
+
print(f" - System Context Tokens: {sys_ctx['tokens']}")
|
|
384
|
+
# The 'breakdown' shows the individual zones that were combined
|
|
385
|
+
for name, content in sys_ctx.get('breakdown', {}).items():
|
|
386
|
+
# For brevity, show only first line of content
|
|
387
|
+
print(f" -> Contains '{name}': {content.split(os.linesep)[0]}...")
|
|
388
|
+
|
|
389
|
+
# Print the message history details
|
|
390
|
+
if 'message_history' in status['zones']:
|
|
391
|
+
msg_hist = status['zones']['message_history']
|
|
392
|
+
print(f" - Message History Tokens: {msg_hist['tokens']} ({msg_hist['message_count']} messages)")
|
|
393
|
+
|
|
394
|
+
print("------------------------------------------")
|
|
395
|
+
|
|
396
|
+
# --- B. Run the chat ---
|
|
397
|
+
ASCIIColors.green("\n< Assistant:")
|
|
398
|
+
response = discussion.chat(
|
|
399
|
+
user_message=prompt,
|
|
400
|
+
streaming_callback=lambda chunk, type, **k: print(chunk, end="", flush=True) if type==MSG_TYPE.MSG_TYPE_CHUNK else None
|
|
401
|
+
)
|
|
402
|
+
print() # Newline after stream
|
|
403
|
+
|
|
404
|
+
# --- C. Trigger memorization to update the 'memory' zone ---
|
|
405
|
+
ASCIIColors.yellow("\nTriggering memorization process...")
|
|
406
|
+
discussion.memorize()
|
|
407
|
+
discussion.commit() # Save the new memory to the DB
|
|
408
|
+
ASCIIColors.yellow("Memorization complete.")
|
|
409
|
+
|
|
410
|
+
# --- Run a few turns ---
|
|
411
|
+
run_chat_turn("Hi there! Can you recommend a good Python library for building web APIs?")
|
|
412
|
+
run_chat_turn("That sounds great. By the way, my favorite programming language is Rust, I find its safety features amazing.")
|
|
413
|
+
run_chat_turn("What was my favorite programming language again?")
|
|
414
|
+
|
|
415
|
+
# --- Final Inspection of Memory ---
|
|
416
|
+
ASCIIColors.magenta("\n--- Final Context Status ---")
|
|
417
|
+
status = discussion.get_context_status()
|
|
418
|
+
print(f"Max Tokens: {status.get('max_tokens')}, Current Tokens: {status.get('current_tokens')}")
|
|
419
|
+
if 'system_context' in status['zones']:
|
|
420
|
+
sys_ctx = status['zones']['system_context']
|
|
421
|
+
print(f" - System Context Tokens: {sys_ctx['tokens']}")
|
|
422
|
+
for name, content in sys_ctx.get('breakdown', {}).items():
|
|
423
|
+
# Print the full content of the memory zone to verify it was updated
|
|
424
|
+
if name == 'memory':
|
|
425
|
+
ASCIIColors.yellow(f" -> Full '{name}' content:\n{content}")
|
|
426
|
+
else:
|
|
427
|
+
print(f" -> Contains '{name}': {content.split(os.linesep)[0]}...")
|
|
428
|
+
print("------------------------------------------")
|
|
429
|
+
|
|
430
|
+
```
|
|
431
|
+
|
|
432
|
+
#### How it Works:
|
|
433
|
+
|
|
434
|
+
1. **Persistence & Initialization:** The `LollmsDataManager` saves and loads the discussion. We initialize the `system_prompt` and `user_data_zone` to provide initial context.
|
|
435
|
+
2. **`get_context_status()`:** Before each generation, we call this method. The output shows a `system_context` block with a token count for all combined zones and a `breakdown` field that lets us see the content of each individual zone that contributed to it.
|
|
436
|
+
3. **`memorize()`:** After the user mentions their favorite language, `memorize()` is called. The LLM analyzes the last turn, identifies this new, important fact, and appends it to the `discussion.memory` zone.
|
|
437
|
+
4. **Recall:** In the final turn, when asked to recall the favorite language, the AI has access to the updated `memory` content within its system context and can correctly answer "Rust". This demonstrates true long-term, stateful memory.
|
|
438
|
+
|
|
439
|
+
### Managing Multimodal Context: Activating and Deactivating Images
|
|
440
|
+
|
|
441
|
+
When working with multimodal models, you can now control which images in a message are active and sent to the model. This is useful for focusing the AI's attention, saving tokens on expensive vision models, or allowing a user to correct which images are relevant.
|
|
442
|
+
|
|
443
|
+
This is managed at the `LollmsMessage` level using the `toggle_image_activation()` method.
|
|
444
|
+
|
|
445
|
+
```python
|
|
446
|
+
from lollms_client import LollmsClient, LollmsDiscussion, LollmsDataManager, MSG_TYPE
|
|
447
|
+
from ascii_colors import ASCIIColors
|
|
448
|
+
import base64
|
|
449
|
+
from pathlib import Path
|
|
450
|
+
import os
|
|
451
|
+
import tempfile
|
|
452
|
+
|
|
453
|
+
# Helper to create a dummy image b64 string
|
|
454
|
+
def create_dummy_image(text, output_dir):
|
|
455
|
+
try:
|
|
456
|
+
from PIL import Image, ImageDraw, ImageFont
|
|
457
|
+
except ImportError:
|
|
458
|
+
ASCIIColors.warning("Pillow not installed. Skipping image example.")
|
|
459
|
+
return None
|
|
460
|
+
|
|
461
|
+
# Try to find a common font, otherwise use default
|
|
462
|
+
font_path = Path("/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf") # Common Linux path
|
|
463
|
+
if not font_path.exists():
|
|
464
|
+
font_path = Path("/Library/Fonts/Arial.ttf") # Common macOS path
|
|
465
|
+
if not font_path.exists():
|
|
466
|
+
font_path = Path("C:/Windows/Fonts/arial.ttf") # Common Windows path
|
|
467
|
+
|
|
468
|
+
try:
|
|
469
|
+
font = ImageFont.truetype(str(font_path), 15)
|
|
470
|
+
except (IOError, OSError):
|
|
471
|
+
font = ImageFont.load_default() # Fallback to default if font not found
|
|
472
|
+
|
|
473
|
+
img = Image.new('RGB', (200, 50), color = (73, 109, 137))
|
|
474
|
+
d = ImageDraw.Draw(img)
|
|
475
|
+
d.text((10,10), text, fill=(255,255,0), font=font)
|
|
476
|
+
|
|
477
|
+
temp_file = Path(output_dir) / f"temp_img_{text.replace(' ', '_')}.png"
|
|
478
|
+
img.save(temp_file, "PNG")
|
|
479
|
+
b64 = base64.b64encode(temp_file.read_bytes()).decode('utf-8')
|
|
480
|
+
temp_file.unlink() # Clean up temporary file
|
|
481
|
+
return b64
|
|
482
|
+
|
|
483
|
+
# --- 1. Setup ---
|
|
484
|
+
try:
|
|
485
|
+
# Llava is a good multi-modal model for Ollama
|
|
486
|
+
# Ensure Ollama is running and 'llava' model is pulled (e.g., ollama pull llava)
|
|
487
|
+
lc = LollmsClient(llm_binding_name="ollama", llm_binding_config={"model_name": "llava"})
|
|
488
|
+
except Exception as e:
|
|
489
|
+
ASCIIColors.warning(f"Failed to initialize LollmsClient for image example: {e}")
|
|
490
|
+
ASCIIColors.warning("Skipping image activation example. Ensure Ollama is running and 'llava' model is pulled.")
|
|
491
|
+
exit()
|
|
492
|
+
|
|
493
|
+
with tempfile.TemporaryDirectory() as tmpdir:
|
|
494
|
+
db_path = Path(tmpdir) / "image_discussion_db.sqlite"
|
|
495
|
+
db_manager = LollmsDataManager(f"sqlite:///{db_path}")
|
|
496
|
+
discussion = LollmsDiscussion.create_new(lollms_client=lc, db_manager=db_manager)
|
|
497
|
+
|
|
498
|
+
# --- 2. Add a message with multiple images ---
|
|
499
|
+
# Ensure Pillow is installed: pip install Pillow
|
|
500
|
+
img1_b64 = create_dummy_image("Image 1: Apple", tmpdir)
|
|
501
|
+
img2_b64 = create_dummy_image("Image 2: Cat", tmpdir)
|
|
502
|
+
img3_b64 = create_dummy_image("Image 3: Dog", tmpdir)
|
|
503
|
+
|
|
504
|
+
if not img1_b64 or not img2_b64 or not img3_b64:
|
|
505
|
+
ASCIIColors.warning("Skipping image activation example due to image creation failure (likely missing Pillow or font).")
|
|
506
|
+
exit()
|
|
507
|
+
|
|
508
|
+
discussion.add_message(
|
|
509
|
+
sender="user",
|
|
510
|
+
content="What is in the second image?",
|
|
511
|
+
images=[img1_b64, img2_b64, img3_b64]
|
|
512
|
+
)
|
|
513
|
+
user_message = discussion.get_messages()[-1]
|
|
514
|
+
|
|
515
|
+
# --- 3. Check the initial state ---
|
|
516
|
+
ASCIIColors.magenta("--- Initial State (All 3 Images Active) ---")
|
|
517
|
+
status_before = discussion.get_context_status()
|
|
518
|
+
# The 'content' field for message history will indicate the number of images if present
|
|
519
|
+
print(f"Message History Text (showing active images):\n{status_before['zones']['message_history']['content']}")
|
|
520
|
+
|
|
521
|
+
# --- 4. Deactivate irrelevant images ---
|
|
522
|
+
ASCIIColors.magenta("\n--- Deactivating images 1 and 3 ---")
|
|
523
|
+
user_message.toggle_image_activation(index=0, active=False) # Deactivate first image (Apple)
|
|
524
|
+
user_message.toggle_image_activation(index=2, active=False) # Deactivate third image (Dog)
|
|
525
|
+
discussion.commit() # Save changes to the message
|
|
526
|
+
|
|
527
|
+
# --- 5. Check the new state ---
|
|
528
|
+
ASCIIColors.magenta("\n--- New State (Only Image 2 is Active) ---")
|
|
529
|
+
status_after = discussion.get_context_status()
|
|
530
|
+
print(f"Message History Text (showing active images):\n{status_after['zones']['message_history']['content']}")
|
|
531
|
+
|
|
532
|
+
ASCIIColors.green("\nNotice the message now says '(1 image(s) attached)' instead of 3, and only the active image will be sent to the multimodal LLM.")
|
|
533
|
+
ASCIIColors.green("To confirm, let's ask the model what it sees:")
|
|
534
|
+
|
|
535
|
+
# This will send only the activated image
|
|
536
|
+
response = discussion.chat(
|
|
537
|
+
user_message="What do you see in the image(s) attached to my last message?",
|
|
538
|
+
# Use a streaming callback to see the response
|
|
539
|
+
streaming_callback=lambda chunk, type, **k: print(chunk, end="", flush=True) if type==MSG_TYPE.MSG_TYPE_CHUNK else None
|
|
540
|
+
)
|
|
541
|
+
print("\n")
|
|
542
|
+
ASCIIColors.green(f"Assistant's response after toggling images: {response['ai_message'].content}")
|
|
543
|
+
|
|
544
|
+
```
|
|
545
|
+
**Note:** The image generation helper in the example requires `Pillow` (`pip install Pillow`). It also attempts to find common system fonts; if issues persist, you might need to install `matplotlib` for better font handling or provide a specific font path.
|
|
546
|
+
|
|
547
|
+
### Putting It All Together: An Advanced Agentic Example
|
|
548
|
+
|
|
549
|
+
Let's create a **Python Coder Agent**. This agent will use a set of coding rules from a local file as its knowledge base and will be equipped with a tool to execute the code it writes. This demonstrates the synergy between `LollmsPersonality` (with `data_source` and `active_mcps`), `LollmsDiscussion`, and the MCP system.
|
|
550
|
+
|
|
551
|
+
#### Step 1: Create the Knowledge Base (`coding_rules.txt`)
|
|
552
|
+
|
|
553
|
+
Create a simple text file with the rules our agent must follow.
|
|
554
|
+
|
|
555
|
+
```text
|
|
556
|
+
# File: coding_rules.txt
|
|
557
|
+
|
|
558
|
+
1. All Python functions must include a Google-style docstring.
|
|
559
|
+
2. Use type hints for all function parameters and return values.
|
|
560
|
+
3. The main execution block should be protected by `if __name__ == "__main__":`.
|
|
561
|
+
4. After defining a function, add a simple example of its usage inside the main block.
|
|
562
|
+
5. Print the output of the example usage to the console.
|
|
563
|
+
```
|
|
564
|
+
|
|
565
|
+
#### Step 2: The Main Script (`agent_example.py`)
|
|
566
|
+
|
|
567
|
+
This script will define the personality, initialize the client, and run the agent.
|
|
568
|
+
|
|
569
|
+
```python
|
|
570
|
+
from pathlib import Path
|
|
571
|
+
from lollms_client import LollmsClient, LollmsPersonality, LollmsDiscussion, MSG_TYPE
|
|
572
|
+
from ascii_colors import ASCIIColors, trace_exception
|
|
573
|
+
import json
|
|
574
|
+
import tempfile
|
|
575
|
+
import os
|
|
576
|
+
|
|
577
|
+
# A detailed callback to visualize the agent's process
|
|
578
|
+
def agent_callback(chunk: str, msg_type: MSG_TYPE, params: dict = None, **kwargs) -> bool:
|
|
579
|
+
if not params: params = {}
|
|
580
|
+
|
|
581
|
+
if msg_type == MSG_TYPE.MSG_TYPE_STEP:
|
|
582
|
+
ASCIIColors.yellow(f"\n>> Agent Step: {chunk}")
|
|
583
|
+
elif msg_type == MSG_TYPE.MSG_TYPE_STEP_START:
|
|
584
|
+
ASCIIColors.yellow(f"\n>> Agent Step Start: {chunk}")
|
|
585
|
+
elif msg_type == MSG_TYPE.MSG_TYPE_STEP_END:
|
|
586
|
+
result = params.get('result', '')
|
|
587
|
+
# Only print a snippet of result to avoid overwhelming console for large outputs
|
|
588
|
+
if isinstance(result, dict):
|
|
589
|
+
result_str = json.dumps(result)[:150] + ("..." if len(json.dumps(result)) > 150 else "")
|
|
590
|
+
else:
|
|
591
|
+
result_str = str(result)[:150] + ("..." if len(str(result)) > 150 else "")
|
|
592
|
+
ASCIIColors.green(f"<< Agent Step End: {chunk} -> Result: {result_str}")
|
|
593
|
+
elif msg_type == MSG_TYPE.MSG_TYPE_THOUGHT_CONTENT:
|
|
594
|
+
ASCIIColors.magenta(f"🤔 Agent Thought: {chunk}")
|
|
595
|
+
elif msg_type == MSG_TYPE.MSG_TYPE_TOOL_CALL:
|
|
596
|
+
tool_name = params.get('name', 'unknown_tool')
|
|
597
|
+
tool_params = params.get('parameters', {})
|
|
598
|
+
ASCIIColors.blue(f"🛠️ Agent Action: Called '{tool_name}' with {tool_params}")
|
|
599
|
+
elif msg_type == MSG_TYPE.MSG_TYPE_TOOL_OUTPUT:
|
|
600
|
+
ASCIIColors.cyan(f"👀 Agent Observation (Tool Output): {params.get('result', 'No result')}")
|
|
601
|
+
elif msg_type == MSG_TYPE.MSG_TYPE_CHUNK:
|
|
602
|
+
print(chunk, end="", flush=True) # Final answer stream
|
|
603
|
+
return True
|
|
604
|
+
|
|
605
|
+
# Create a temporary directory for the discussion DB and coding rules file
|
|
606
|
+
with tempfile.TemporaryDirectory() as tmpdir:
|
|
607
|
+
db_path = Path(tmpdir) / "agent_discussion.db"
|
|
608
|
+
|
|
609
|
+
# Create the coding rules file
|
|
610
|
+
rules_path = Path(tmpdir) / "coding_rules.txt"
|
|
611
|
+
rules_content = """
|
|
612
|
+
1. All Python functions must include a Google-style docstring.
|
|
613
|
+
2. Use type hints for all function parameters and return values.
|
|
614
|
+
3. The main execution block should be protected by `if __name__ == "__main__":`.
|
|
615
|
+
4. After defining a function, add a simple example of its usage inside the main block.
|
|
616
|
+
5. Print the output of the example usage to the console.
|
|
617
|
+
"""
|
|
618
|
+
rules_path.write_text(rules_content.strip())
|
|
619
|
+
ASCIIColors.yellow(f"Created temporary coding rules file at: {rules_path}")
|
|
620
|
+
|
|
621
|
+
try:
|
|
622
|
+
# --- 1. Load the knowledge base from the file ---
|
|
623
|
+
coding_rules = rules_path.read_text()
|
|
624
|
+
|
|
625
|
+
# --- 2. Define the Coder Agent Personality ---
|
|
626
|
+
coder_personality = LollmsPersonality(
|
|
627
|
+
name="Python Coder Agent",
|
|
628
|
+
author="lollms-client",
|
|
629
|
+
category="Coding",
|
|
630
|
+
description="An agent that writes and executes Python code according to specific rules.",
|
|
631
|
+
system_prompt=(
|
|
632
|
+
"You are an expert Python programmer. Your task is to write clean, executable Python code based on the user's request. "
|
|
633
|
+
"You MUST strictly follow all rules provided in the 'Personality Static Data' section. "
|
|
634
|
+
"First, think about the plan. Then, use the `python_code_interpreter` tool to write and execute the code. "
|
|
635
|
+
"Finally, present the code and its output to the user."
|
|
636
|
+
),
|
|
637
|
+
# A) Attach the static knowledge base
|
|
638
|
+
data_source=coding_rules,
|
|
639
|
+
# B) Equip the agent with a code execution tool
|
|
640
|
+
active_mcps=["python_code_interpreter"]
|
|
641
|
+
)
|
|
642
|
+
|
|
643
|
+
# --- 3. Initialize the Client and Discussion ---
|
|
644
|
+
# A code-specialized model is recommended (e.g., codellama, deepseek-coder)
|
|
645
|
+
# Ensure Ollama is running and 'codellama' model is pulled (e.g., ollama pull codellama)
|
|
646
|
+
lc = LollmsClient(
|
|
647
|
+
llm_binding_name="ollama",
|
|
648
|
+
llm_binding_config={
|
|
649
|
+
"model_name": "codellama",
|
|
650
|
+
"host_address": "http://localhost:11434"
|
|
651
|
+
},
|
|
652
|
+
mcp_binding_name="local_mcp" # Enable the local tool execution engine
|
|
653
|
+
)
|
|
654
|
+
# For agentic workflows, it's often good to have a persistent discussion
|
|
655
|
+
db_manager = LollmsDataManager(f"sqlite:///{db_path}")
|
|
656
|
+
discussion = LollmsDiscussion.create_new(lollms_client=lc, db_manager=db_manager)
|
|
657
|
+
|
|
658
|
+
# --- 4. The User's Request ---
|
|
659
|
+
user_prompt = "Write a Python function that takes two numbers and returns their sum."
|
|
660
|
+
|
|
661
|
+
ASCIIColors.yellow(f"User Prompt: {user_prompt}")
|
|
662
|
+
print("\n" + "="*50 + "\nAgent is now running...\n" + "="*50)
|
|
663
|
+
|
|
664
|
+
# --- 5. Run the Agentic Chat Turn ---
|
|
665
|
+
response = discussion.chat(
|
|
666
|
+
user_message=user_prompt,
|
|
667
|
+
personality=coder_personality,
|
|
668
|
+
streaming_callback=agent_callback,
|
|
669
|
+
max_llm_iterations=5, # Limit iterations for faster demo
|
|
670
|
+
tool_call_decision_temperature=0.0 # Make decision more deterministic
|
|
671
|
+
)
|
|
672
|
+
|
|
673
|
+
print("\n\n" + "="*50 + "\nAgent finished.\n" + "="*50)
|
|
674
|
+
|
|
675
|
+
# --- 6. Inspect the results ---
|
|
676
|
+
ai_message = response['ai_message']
|
|
677
|
+
ASCIIColors.green("\n--- Final Answer from Agent ---")
|
|
678
|
+
print(ai_message.content)
|
|
679
|
+
|
|
680
|
+
ASCIIColors.magenta("\n--- Tool Calls Made (from metadata) ---")
|
|
681
|
+
if "tool_calls" in ai_message.metadata:
|
|
682
|
+
print(json.dumps(ai_message.metadata["tool_calls"], indent=2))
|
|
683
|
+
else:
|
|
684
|
+
print("No tool calls recorded in message metadata.")
|
|
685
|
+
|
|
686
|
+
except Exception as e:
|
|
687
|
+
ASCIIColors.error(f"An error occurred during agent execution: {e}")
|
|
688
|
+
ASCIIColors.warning("Please ensure Ollama is running, 'codellama' model is pulled, and 'local_mcp' binding is available.")
|
|
689
|
+
trace_exception(e) # Provide detailed traceback
|
|
690
|
+
```
|
|
691
|
+
|
|
692
|
+
#### Step 3: What Happens Under the Hood
|
|
693
|
+
|
|
694
|
+
When you run `agent_example.py`, a sophisticated process unfolds:
|
|
695
|
+
|
|
696
|
+
1. **Initialization:** The `LollmsDiscussion.chat()` method is called with the `coder_personality`.
|
|
697
|
+
2. **Knowledge Injection:** The `chat` method sees that `personality.data_source` is a string. It automatically takes the content of `coding_rules.txt` and injects it into the discussion's data zones.
|
|
698
|
+
3. **Tool Activation:** The method also sees `personality.active_mcps`. It enables the `python_code_interpreter` tool for this turn.
|
|
699
|
+
4. **Context Assembly:** The `LollmsClient` assembles a rich prompt for the LLM that includes:
|
|
700
|
+
* The personality's `system_prompt`.
|
|
701
|
+
* The content of `coding_rules.txt` (from the data zones).
|
|
702
|
+
* The list of available tools (including `python_code_interpreter`).
|
|
703
|
+
* The user's request ("Write a function...").
|
|
704
|
+
5. **Reason and Act:** The LLM, now fully briefed, reasons that it needs to use the `python_code_interpreter` tool. It formulate the Python code *according to the rules it was given*.
|
|
705
|
+
6. **Tool Execution:** The `local_mcp` binding receives the code and executes it in a secure local environment. It captures any output (`stdout`, `stderr`) and results.
|
|
706
|
+
7. **Observation:** The execution results are sent back to the LLM as an "observation."
|
|
707
|
+
8. **Final Synthesis:** The LLM now has the user's request, the rules, the code it wrote, and the code's output. It synthesizes all of this into a final, comprehensive answer for the user.
|
|
708
|
+
|
|
709
|
+
This example showcases how `lollms-client` allows you to build powerful, knowledgeable, and capable agents by simply composing personalities with data and tools.
|
|
710
|
+
|
|
711
|
+
## Using LoLLMs Client with Different Bindings
|
|
712
|
+
|
|
713
|
+
`lollms-client` supports a wide range of LLM backends through its binding system. This section provides practical examples of how to initialize `LollmsClient` for each of the major supported bindings.
|
|
714
|
+
|
|
715
|
+
### A New Configuration Model
|
|
716
|
+
|
|
717
|
+
Configuration for all bindings has been unified. Instead of passing parameters like `host_address` or `model_name` directly to the `LollmsClient` constructor, you now pass them inside a single dictionary: `llm_binding_config`.
|
|
718
|
+
|
|
719
|
+
This approach provides a clean, consistent, and extensible way to manage settings for any backend. Each binding defines its own set of required and optional parameters (e.g., `host_address`, `model_name`, `service_key`, `n_gpu_layers`).
|
|
720
|
+
|
|
721
|
+
```python
|
|
722
|
+
# General configuration pattern
|
|
723
|
+
from lollms_client import LollmsClient
|
|
724
|
+
# ... other imports as needed
|
|
725
|
+
|
|
726
|
+
# lc = LollmsClient(
|
|
727
|
+
# llm_binding_name="your_binding_name",
|
|
728
|
+
# llm_binding_config={
|
|
729
|
+
# "parameter_1_for_this_binding": "value_1",
|
|
730
|
+
# "parameter_2_for_this_binding": "value_2",
|
|
731
|
+
# # ... and so on
|
|
732
|
+
# }
|
|
733
|
+
# )
|
|
734
|
+
```
|
|
735
|
+
|
|
736
|
+
---
|
|
737
|
+
|
|
738
|
+
### 1. Core and Local Server Bindings
|
|
739
|
+
|
|
740
|
+
These bindings connect to servers running on your local network, including the core LoLLMs server itself.
|
|
741
|
+
|
|
742
|
+
#### **LoLLMs (Default Binding)**
|
|
743
|
+
|
|
744
|
+
This connects to a running LoLLMs service, which acts as a powerful backend providing access to models, personalities, and tools. This is the default and most feature-rich way to use `lollms-client`.
|
|
745
|
+
|
|
746
|
+
**Prerequisites:**
|
|
747
|
+
* A LoLLMs server instance installed and running (e.g., `lollms-webui`).
|
|
748
|
+
* An API key can be generated from the LoLLMs web UI (under User Settings -> Security) if security is enabled.
|
|
749
|
+
|
|
750
|
+
**Usage:**
|
|
751
|
+
|
|
752
|
+
```python
|
|
753
|
+
from lollms_client import LollmsClient
|
|
754
|
+
from ascii_colors import ASCIIColors
|
|
755
|
+
import os
|
|
756
|
+
|
|
757
|
+
try:
|
|
758
|
+
# The default port for a LoLLMs server is 9642 (a nod to The Hitchhiker's Guide to the Galaxy).
|
|
759
|
+
# The API key can also be set via the LOLLMS_API_KEY environment variable.
|
|
760
|
+
config = {
|
|
761
|
+
"host_address": "http://localhost:9642",
|
|
762
|
+
# "service_key": "your_lollms_api_key_here" # Uncomment and replace if security is enabled
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
lc = LollmsClient(
|
|
766
|
+
llm_binding_name="lollms", # This is the default, so specifying it is optional
|
|
767
|
+
llm_binding_config=config
|
|
768
|
+
)
|
|
769
|
+
|
|
770
|
+
response = lc.generate_text("What is the answer to life, the universe, and everything?")
|
|
771
|
+
ASCIIColors.green(f"\nResponse from LoLLMs: {response}")
|
|
772
|
+
|
|
773
|
+
except ConnectionRefusedError:
|
|
774
|
+
ASCIIColors.error("Connection refused. Is the LoLLMs server running at http://localhost:9642?")
|
|
775
|
+
except ValueError as ve:
|
|
776
|
+
ASCIIColors.error(f"Initialization Error: {ve}")
|
|
777
|
+
except Exception as e:
|
|
778
|
+
ASCIIColors.error(f"An unexpected error occurred: {e}")
|
|
779
|
+
```
|
|
780
|
+
|
|
781
|
+
#### **Ollama**
|
|
782
|
+
|
|
783
|
+
The `ollama` binding connects to a running Ollama server instance on your machine or network.
|
|
784
|
+
|
|
785
|
+
**Prerequisites:**
|
|
786
|
+
* [Ollama installed and running](https://ollama.com/).
|
|
787
|
+
* Models pulled, e.g., `ollama pull llama3`.
|
|
788
|
+
|
|
789
|
+
**Usage:**
|
|
790
|
+
|
|
791
|
+
```python
|
|
792
|
+
from lollms_client import LollmsClient
|
|
793
|
+
from ascii_colors import ASCIIColors
|
|
794
|
+
import os
|
|
795
|
+
|
|
796
|
+
try:
|
|
797
|
+
# Configuration for a local Ollama server
|
|
798
|
+
lc = LollmsClient(
|
|
799
|
+
llm_binding_name="ollama",
|
|
800
|
+
llm_binding_config={
|
|
801
|
+
"model_name": "llama3", # Or any other model you have pulled
|
|
802
|
+
"host_address": "http://localhost:11434" # Default Ollama address
|
|
803
|
+
}
|
|
804
|
+
)
|
|
805
|
+
|
|
806
|
+
# Now you can use lc.generate_text(), lc.chat(), etc.
|
|
807
|
+
response = lc.generate_text("Why is the sky blue?")
|
|
808
|
+
ASCIIColors.green(f"\nResponse from Ollama: {response}")
|
|
809
|
+
|
|
810
|
+
except Exception as e:
|
|
811
|
+
ASCIIColors.error(f"Error initializing Ollama binding: {e}")
|
|
812
|
+
ASCIIColors.info("Please ensure Ollama is installed, running, and the specified model is pulled.")
|
|
813
|
+
```
|
|
814
|
+
|
|
815
|
+
#### **PythonLlamaCpp (Local GGUF Models)**
|
|
816
|
+
|
|
817
|
+
The `pythonllamacpp` binding loads and runs GGUF model files directly using the powerful `llama-cpp-python` library. This is ideal for high-performance, local inference on CPU or GPU.
|
|
818
|
+
|
|
819
|
+
**Prerequisites:**
|
|
820
|
+
* A GGUF model file downloaded to your machine.
|
|
821
|
+
* `llama-cpp-python` installed. For GPU support, it must be compiled with the correct flags (e.g., `CMAKE_ARGS="-DLLAMA_CUBLAS=on" pip install llama-cpp-python`).
|
|
822
|
+
|
|
823
|
+
**Usage:**
|
|
824
|
+
|
|
825
|
+
```python
|
|
826
|
+
from lollms_client import LollmsClient
|
|
827
|
+
from ascii_colors import ASCIIColors
|
|
828
|
+
import os
|
|
829
|
+
from pathlib import Path
|
|
830
|
+
|
|
831
|
+
# Path to your GGUF model file
|
|
832
|
+
# IMPORTANT: Replace this with the actual path to your model file
|
|
833
|
+
# Example: MODEL_PATH = Path.home() / "models" / "your_model_name.gguf"
|
|
834
|
+
MODEL_PATH = Path("./path/to/your/model.gguf")
|
|
835
|
+
|
|
836
|
+
# Binding-specific configuration
|
|
837
|
+
config = {
|
|
838
|
+
"model_path": str(MODEL_PATH), # The path to the GGUF file
|
|
839
|
+
"n_gpu_layers": -1, # -1 for all layers to GPU, 0 for CPU
|
|
840
|
+
"n_ctx": 4096, # Context size
|
|
841
|
+
"seed": -1, # -1 for random seed
|
|
842
|
+
"chat_format": "chatml" # Or another format like 'llama-2' or 'mistral'
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
if not MODEL_PATH.exists():
|
|
846
|
+
ASCIIColors.warning(f"Model file not found at: {MODEL_PATH}")
|
|
847
|
+
ASCIIColors.warning("Skipping PythonLlamaCpp example. Please download a GGUF model and update MODEL_PATH.")
|
|
848
|
+
else:
|
|
849
|
+
try:
|
|
850
|
+
lc = LollmsClient(
|
|
851
|
+
llm_binding_name="pythonllamacpp",
|
|
852
|
+
llm_binding_config=config
|
|
853
|
+
)
|
|
854
|
+
|
|
855
|
+
response = lc.generate_text("Write a recipe for a great day.")
|
|
856
|
+
ASCIIColors.green(f"\nResponse from PythonLlamaCpp: {response}")
|
|
857
|
+
|
|
858
|
+
except ImportError:
|
|
859
|
+
ASCIIColors.error("`llama-cpp-python` not installed. Please install it (`pip install llama-cpp-python`) to run this example.")
|
|
860
|
+
except Exception as e:
|
|
861
|
+
ASCIIColors.error(f"Error initializing PythonLlamaCpp binding: {e}")
|
|
862
|
+
ASCIIColors.info("Please ensure the model path is correct and `llama-cpp-python` is correctly installed (with GPU support if desired).")
|
|
863
|
+
|
|
864
|
+
```
|
|
865
|
+
|
|
866
|
+
---
|
|
867
|
+
|
|
868
|
+
### 2. Cloud Service Bindings
|
|
869
|
+
|
|
870
|
+
These bindings connect to hosted LLM APIs from major providers.
|
|
871
|
+
|
|
872
|
+
#### **OpenAI**
|
|
873
|
+
|
|
874
|
+
Connects to the official OpenAI API to use models like GPT-4o, GPT-4, and GPT-3.5.
|
|
875
|
+
|
|
876
|
+
**Prerequisites:**
|
|
877
|
+
* An OpenAI API key (starts with `sk-...`). It's recommended to set this as an environment variable `OPENAI_API_KEY`.
|
|
878
|
+
|
|
879
|
+
**Usage:**
|
|
880
|
+
|
|
881
|
+
```python
|
|
882
|
+
from lollms_client import LollmsClient
|
|
883
|
+
from ascii_colors import ASCIIColors
|
|
884
|
+
import os
|
|
885
|
+
|
|
886
|
+
# Set your API key as an environment variable or directly in the config
|
|
887
|
+
# os.environ["OPENAI_API_KEY"] = "your_openai_api_key_here"
|
|
888
|
+
|
|
889
|
+
try:
|
|
890
|
+
if "OPENAI_API_KEY" not in os.environ and "your_openai_api_key_here" in "your_openai_api_key_here":
|
|
891
|
+
ASCIIColors.warning("OPENAI_API_KEY not set in environment or hardcoded. Skipping OpenAI example.")
|
|
892
|
+
else:
|
|
893
|
+
lc = LollmsClient(
|
|
894
|
+
llm_binding_name="openai",
|
|
895
|
+
llm_binding_config={
|
|
896
|
+
"model_name": "gpt-4o", # Or "gpt-3.5-turbo"
|
|
897
|
+
# "service_key": os.environ.get("OPENAI_API_KEY", "your_openai_api_key_here")
|
|
898
|
+
# ^ service_key is optional if OPENAI_API_KEY env var is set
|
|
899
|
+
}
|
|
900
|
+
)
|
|
901
|
+
|
|
902
|
+
response = lc.generate_text("What is the difference between AI and machine learning?")
|
|
903
|
+
ASCIIColors.green(f"\nResponse from OpenAI: {response}")
|
|
904
|
+
|
|
905
|
+
except Exception as e:
|
|
906
|
+
ASCIIColors.error(f"Error initializing OpenAI binding: {e}")
|
|
907
|
+
ASCIIColors.info("Please ensure your OpenAI API key is correctly set and you have access to the specified model.")
|
|
908
|
+
```
|
|
909
|
+
|
|
910
|
+
#### **Google Gemini**
|
|
911
|
+
|
|
912
|
+
Connects to Google's Gemini family of models via the Google AI Studio API.
|
|
913
|
+
|
|
914
|
+
**Prerequisites:**
|
|
915
|
+
* A Google AI Studio API key. It's recommended to set this as an environment variable `GEMINI_API_KEY`.
|
|
916
|
+
|
|
917
|
+
**Usage:**
|
|
918
|
+
|
|
919
|
+
```python
|
|
920
|
+
from lollms_client import LollmsClient
|
|
921
|
+
from ascii_colors import ASCIIColors
|
|
922
|
+
import os
|
|
923
|
+
|
|
924
|
+
# Set your API key as an environment variable or directly in the config
|
|
925
|
+
# os.environ["GEMINI_API_KEY"] = "your_google_api_key_here"
|
|
926
|
+
|
|
927
|
+
try:
|
|
928
|
+
if "GEMINI_API_KEY" not in os.environ and "your_google_api_key_here" in "your_google_api_key_here":
|
|
929
|
+
ASCIIColors.warning("GEMINI_API_KEY not set in environment or hardcoded. Skipping Gemini example.")
|
|
930
|
+
else:
|
|
931
|
+
lc = LollmsClient(
|
|
932
|
+
llm_binding_name="gemini",
|
|
933
|
+
llm_binding_config={
|
|
934
|
+
"model_name": "gemini-1.5-pro-latest",
|
|
935
|
+
# "service_key": os.environ.get("GEMINI_API_KEY", "your_google_api_key_here")
|
|
936
|
+
}
|
|
937
|
+
)
|
|
938
|
+
|
|
939
|
+
response = lc.generate_text("Summarize the plot of 'Dune' in three sentences.")
|
|
940
|
+
ASCIIColors.green(f"\nResponse from Gemini: {response}")
|
|
941
|
+
|
|
942
|
+
except Exception as e:
|
|
943
|
+
ASCIIColors.error(f"Error initializing Gemini binding: {e}")
|
|
944
|
+
ASCIIColors.info("Please ensure your Google AI Studio API key is correctly set and you have access to the specified model.")
|
|
945
|
+
```
|
|
946
|
+
|
|
947
|
+
#### **Anthropic Claude**
|
|
948
|
+
|
|
949
|
+
Connects to Anthropic's API to use the Claude family of models, including Claude 3.5 Sonnet, Opus, and Haiku.
|
|
950
|
+
|
|
951
|
+
**Prerequisites:**
|
|
952
|
+
* An Anthropic API key. It's recommended to set this as an environment variable `ANTHROPIC_API_KEY`.
|
|
953
|
+
|
|
954
|
+
**Usage:**
|
|
955
|
+
|
|
956
|
+
```python
|
|
957
|
+
from lollms_client import LollmsClient
|
|
958
|
+
from ascii_colors import ASCIIColors
|
|
959
|
+
import os
|
|
960
|
+
|
|
961
|
+
# Set your API key as an environment variable or directly in the config
|
|
962
|
+
# os.environ["ANTHROPIC_API_KEY"] = "your_anthropic_api_key_here"
|
|
963
|
+
|
|
964
|
+
try:
|
|
965
|
+
if "ANTHROPIC_API_KEY" not in os.environ and "your_anthropic_api_key_here" in "your_anthropic_api_key_here":
|
|
966
|
+
ASCIIColors.warning("ANTHROPIC_API_KEY not set in environment or hardcoded. Skipping Claude example.")
|
|
967
|
+
else:
|
|
968
|
+
lc = LollmsClient(
|
|
969
|
+
llm_binding_name="claude",
|
|
970
|
+
llm_binding_config={
|
|
971
|
+
"model_name": "claude-3-5-sonnet-20240620",
|
|
972
|
+
# "service_key": os.environ.get("ANTHROPIC_API_KEY", "your_anthropic_api_key_here")
|
|
973
|
+
}
|
|
974
|
+
)
|
|
975
|
+
|
|
976
|
+
response = lc.generate_text("What are the core principles of constitutional AI?")
|
|
977
|
+
ASCIIColors.green(f"\nResponse from Claude: {response}")
|
|
978
|
+
|
|
979
|
+
except Exception as e:
|
|
980
|
+
ASCIIColors.error(f"Error initializing Claude binding: {e}")
|
|
981
|
+
ASCIIColors.info("Please ensure your Anthropic API key is correctly set and you have access to the specified model.")
|
|
982
|
+
```
|
|
983
|
+
|
|
984
|
+
---
|
|
985
|
+
|
|
986
|
+
### 3. API Aggregator Bindings
|
|
987
|
+
|
|
988
|
+
These bindings connect to services that provide access to many different models through a single API.
|
|
989
|
+
|
|
990
|
+
#### **OpenRouter**
|
|
991
|
+
|
|
992
|
+
OpenRouter provides a unified, OpenAI-compatible interface to access models from dozens of providers (Google, Anthropic, Mistral, Groq, etc.) with one API key.
|
|
993
|
+
|
|
994
|
+
**Prerequisites:**
|
|
995
|
+
* An OpenRouter API key (starts with `sk-or-...`). It's recommended to set this as an environment variable `OPENROUTER_API_KEY`.
|
|
996
|
+
|
|
997
|
+
**Usage:**
|
|
998
|
+
Model names must be specified in the format `provider/model-name`.
|
|
999
|
+
|
|
1000
|
+
```python
|
|
1001
|
+
from lollms_client import LollmsClient
|
|
1002
|
+
from ascii_colors import ASCIIColors
|
|
1003
|
+
import os
|
|
1004
|
+
|
|
1005
|
+
# Set your API key as an environment variable or directly in the config
|
|
1006
|
+
# os.environ["OPENROUTER_API_KEY"] = "your_openrouter_api_key_here"
|
|
1007
|
+
|
|
1008
|
+
try:
|
|
1009
|
+
if "OPENROUTER_API_KEY" not in os.environ and "your_openrouter_api_key_here" in "your_openrouter_api_key_here":
|
|
1010
|
+
ASCIIColors.warning("OPENROUTER_API_KEY not set in environment or hardcoded. Skipping OpenRouter example.")
|
|
1011
|
+
else:
|
|
1012
|
+
lc = LollmsClient(
|
|
1013
|
+
llm_binding_name="open_router",
|
|
1014
|
+
llm_binding_config={
|
|
1015
|
+
"model_name": "anthropic/claude-3-haiku-20240307",
|
|
1016
|
+
# "open_router_api_key": os.environ.get("OPENROUTER_API_KEY", "your_openrouter_api_key_here")
|
|
1017
|
+
}
|
|
1018
|
+
)
|
|
1019
|
+
|
|
1020
|
+
response = lc.generate_text("Explain what an API aggregator is, as if to a beginner.")
|
|
1021
|
+
ASCIIColors.green(f"\nResponse from OpenRouter: {response}")
|
|
1022
|
+
|
|
1023
|
+
except Exception as e:
|
|
1024
|
+
ASCIIColors.error(f"Error initializing OpenRouter binding: {e}")
|
|
1025
|
+
ASCIIColors.info("Please ensure your OpenRouter API key is correctly set and you have access to the specified model.")
|
|
1026
|
+
```
|
|
1027
|
+
|
|
1028
|
+
#### **Groq**
|
|
1029
|
+
|
|
1030
|
+
While Groq is a direct provider, it's famous as an aggregator of speed. It runs open-source models on custom LPU hardware for exceptionally fast inference.
|
|
1031
|
+
|
|
1032
|
+
**Prerequisites:**
|
|
1033
|
+
* A Groq API key. It's recommended to set this as an environment variable `GROQ_API_KEY`.
|
|
1034
|
+
|
|
1035
|
+
**Usage:**
|
|
1036
|
+
|
|
1037
|
+
```python
|
|
1038
|
+
from lollms_client import LollmsClient
|
|
1039
|
+
from ascii_colors import ASCIIColors
|
|
1040
|
+
import os
|
|
1041
|
+
|
|
1042
|
+
# Set your API key as an environment variable or directly in the config
|
|
1043
|
+
# os.environ["GROQ_API_KEY"] = "your_groq_api_key_here"
|
|
1044
|
+
|
|
1045
|
+
try:
|
|
1046
|
+
if "GROQ_API_KEY" not in os.environ and "your_groq_api_key_here" in "your_groq_api_key_here":
|
|
1047
|
+
ASCIIColors.warning("GROQ_API_KEY not set in environment or hardcoded. Skipping Groq example.")
|
|
1048
|
+
else:
|
|
1049
|
+
lc = LollmsClient(
|
|
1050
|
+
llm_binding_name="groq",
|
|
1051
|
+
llm_binding_config={
|
|
1052
|
+
"model_name": "llama3-8b-8192", # Or "mixtral-8x7b-32768"
|
|
1053
|
+
# "groq_api_key": os.environ.get("GROQ_API_KEY", "your_groq_api_key_here")
|
|
1054
|
+
}
|
|
1055
|
+
)
|
|
1056
|
+
|
|
1057
|
+
response = lc.generate_text("Write a 3-line poem about incredible speed.")
|
|
1058
|
+
ASCIIColors.green(f"\nResponse from Groq: {response}")
|
|
1059
|
+
|
|
1060
|
+
except Exception as e:
|
|
1061
|
+
ASCIIColors.error(f"Error initializing Groq binding: {e}")
|
|
1062
|
+
ASCIIColors.info("Please ensure your Groq API key is correctly set and you have access to the specified model.")
|
|
1063
|
+
```
|
|
1064
|
+
|
|
1065
|
+
#### **Hugging Face Inference API**
|
|
1066
|
+
|
|
1067
|
+
This connects to the serverless Hugging Face Inference API, allowing experimentation with thousands of open-source models without local hardware.
|
|
1068
|
+
|
|
1069
|
+
**Note:** This API can have "cold starts," so the first request might be slow.
|
|
1070
|
+
|
|
1071
|
+
**Prerequisites:**
|
|
1072
|
+
* A Hugging Face User Access Token (starts with `hf_...`). It's recommended to set this as an environment variable `HF_API_KEY`.
|
|
1073
|
+
|
|
1074
|
+
**Usage:**
|
|
1075
|
+
|
|
1076
|
+
```python
|
|
1077
|
+
from lollms_client import LollmsClient
|
|
1078
|
+
from ascii_colors import ASCIIColors
|
|
1079
|
+
import os
|
|
1080
|
+
|
|
1081
|
+
# Set your API key as an environment variable or directly in the config
|
|
1082
|
+
# os.environ["HF_API_KEY"] = "your_hugging_face_token_here"
|
|
1083
|
+
|
|
1084
|
+
try:
|
|
1085
|
+
if "HF_API_KEY" not in os.environ and "your_hugging_face_token_here" in "your_hugging_face_token_here":
|
|
1086
|
+
ASCIIColors.warning("HF_API_KEY not set in environment or hardcoded. Skipping Hugging Face Inference API example.")
|
|
1087
|
+
else:
|
|
1088
|
+
lc = LollmsClient(
|
|
1089
|
+
llm_binding_name="hugging_face_inference_api",
|
|
1090
|
+
llm_binding_config={
|
|
1091
|
+
"model_name": "google/gemma-1.1-7b-it", # Or other suitable models from HF
|
|
1092
|
+
# "hf_api_key": os.environ.get("HF_API_KEY", "your_hugging_face_token_here")
|
|
1093
|
+
}
|
|
1094
|
+
)
|
|
1095
|
+
|
|
1096
|
+
response = lc.generate_text("Write a short story about a robot who discovers music.")
|
|
1097
|
+
ASCIIColors.green(f"\nResponse from Hugging Face: {response}")
|
|
1098
|
+
|
|
1099
|
+
except Exception as e:
|
|
1100
|
+
ASCIIColors.error(f"Error initializing Hugging Face Inference API binding: {e}")
|
|
1101
|
+
ASCIIColors.info("Please ensure your Hugging Face API token is correctly set and you have access to the specified model.")
|
|
1102
|
+
```
|
|
1103
|
+
|
|
1104
|
+
### Listing Available Models
|
|
1105
|
+
|
|
1106
|
+
You can query the active LLM binding to get a list of models it supports or has available. The exact information returned depends on the binding (e.g., Ollama lists local models, OpenAI lists all its API models).
|
|
1107
|
+
|
|
1108
|
+
```python
|
|
1109
|
+
from lollms_client import LollmsClient
|
|
1110
|
+
from ascii_colors import ASCIIColors
|
|
1111
|
+
import os
|
|
1112
|
+
|
|
1113
|
+
try:
|
|
1114
|
+
# Initialize client for Ollama (or any other binding)
|
|
1115
|
+
lc = LollmsClient(
|
|
1116
|
+
llm_binding_name="ollama",
|
|
1117
|
+
llm_binding_config={
|
|
1118
|
+
"host_address": "http://localhost:11434"
|
|
1119
|
+
# model_name is not needed just to list models
|
|
1120
|
+
}
|
|
1121
|
+
)
|
|
1122
|
+
|
|
1123
|
+
ASCIIColors.yellow("\nListing available models for the current binding:")
|
|
1124
|
+
available_models = lc.listModels()
|
|
1125
|
+
|
|
1126
|
+
if isinstance(available_models, list):
|
|
1127
|
+
for model in available_models:
|
|
1128
|
+
# Model structure varies by binding, common fields are 'name'
|
|
1129
|
+
model_name = model.get('name', 'N/A')
|
|
1130
|
+
model_size = model.get('size', 'N/A') # Common for Ollama
|
|
1131
|
+
print(f"- {model_name} (Size: {model_size})")
|
|
1132
|
+
elif isinstance(available_models, dict) and "error" in available_models:
|
|
1133
|
+
ASCIIColors.error(f"Error listing models: {available_models['error']}")
|
|
1134
|
+
else:
|
|
1135
|
+
print("Could not retrieve model list or unexpected format.")
|
|
1136
|
+
|
|
1137
|
+
except Exception as e:
|
|
1138
|
+
ASCIIColors.error(f"An error occurred: {e}")
|
|
1139
|
+
|
|
1140
|
+
```
|
|
1141
|
+
|
|
1142
|
+
### Long Context Processing for Long Texts (`long_context_processing`)
|
|
1143
|
+
|
|
1144
|
+
When dealing with a document, article, or transcript that is too large to fit into a model's context window, the `long_context_processing` method is the solution. It intelligently chunks the text, summarizes or processes each piece, and then synthesizes those into a final, coherent output.
|
|
1145
|
+
|
|
1146
|
+
```python
|
|
1147
|
+
from lollms_client import LollmsClient, MSG_TYPE
|
|
1148
|
+
from ascii_colors import ASCIIColors
|
|
1149
|
+
import os
|
|
1150
|
+
|
|
1151
|
+
# --- A very long text (imagine this is 10,000+ tokens) ---
|
|
1152
|
+
long_text = """
|
|
1153
|
+
The history of computing is a fascinating journey from mechanical contraptions to the powerful devices we use today.
|
|
1154
|
+
It began with devices like the abacus, used for arithmetic tasks. In the 19th century, Charles Babbage conceived
|
|
1155
|
+
the Analytical Engine, a mechanical computer that was never fully built but laid the groundwork for modern computing.
|
|
1156
|
+
Ada Lovelace, daughter of Lord Byron, is often credited as the first computer programmer for her work on Babbage's Engine.
|
|
1157
|
+
The 20th century saw the rise of electronic computers, starting with vacuum tubes and progressing to transistors and integrated circuits.
|
|
1158
|
+
Early computers like ENIAC were massive machines, but technological advancements rapidly led to smaller, more powerful, and more accessible devices.
|
|
1159
|
+
The invention of the microprocessor in 1971 by Intel's Ted Hoff was a pivotal moment, leading to the personal computer revolution.
|
|
1160
|
+
Companies like Apple and Microsoft brought computing to the masses. The internet, initially ARPANET, transformed communication and information access globally.
|
|
1161
|
+
In recent decades, cloud computing, big data, and artificial intelligence have become dominant themes. AI, particularly machine learning and deep learning,
|
|
1162
|
+
has enabled breakthroughs in areas like image recognition, natural language processing, and autonomous systems.
|
|
1163
|
+
Today, a new revolution is on the horizon with quantum computing, which promises to solve problems that are currently intractable
|
|
1164
|
+
for even the most powerful supercomputers. Researchers are exploring qubits and quantum entanglement to create
|
|
1165
|
+
machines that will redefine what is computationally possible, impacting fields from medicine to materials science.
|
|
1166
|
+
This continuous evolution demonstrates humanity's relentless pursuit of greater computational power and intelligence.
|
|
1167
|
+
""" * 10 # Simulate a very long text (repeated 10 times)
|
|
1168
|
+
|
|
1169
|
+
# --- Callback to see the process in action ---
|
|
1170
|
+
def lcp_callback(chunk: str, msg_type: MSG_TYPE, params: dict = None, **kwargs):
|
|
1171
|
+
if msg_type in [MSG_TYPE.MSG_TYPE_STEP_START, MSG_TYPE.MSG_TYPE_STEP_END]:
|
|
1172
|
+
ASCIIColors.yellow(f">> {chunk}")
|
|
1173
|
+
elif msg_type == MSG_TYPE.MSG_TYPE_STEP:
|
|
1174
|
+
ASCIIColors.cyan(f" {chunk}")
|
|
1175
|
+
elif msg_type == MSG_TYPE.MSG_TYPE_CHUNK:
|
|
1176
|
+
# Only print final answer chunks, not internal step chunks
|
|
1177
|
+
pass
|
|
1178
|
+
return True
|
|
1179
|
+
|
|
1180
|
+
try:
|
|
1181
|
+
lc = LollmsClient(llm_binding_name="ollama", llm_binding_config={"model_name": "llama3"})
|
|
1182
|
+
|
|
1183
|
+
# The contextual prompt guides the focus of the processing
|
|
1184
|
+
context_prompt = "Summarize the text, focusing on the key technological milestones, notable figures, and future directions in computing history."
|
|
1185
|
+
|
|
1186
|
+
ASCIIColors.blue("--- Starting Long Context Processing (Summarization) ---")
|
|
1187
|
+
|
|
1188
|
+
final_summary = lc.long_context_processing(
|
|
1189
|
+
text_to_process=long_text,
|
|
1190
|
+
contextual_prompt=context_prompt,
|
|
1191
|
+
chunk_size_tokens=1000, # Adjust based on your model's context size
|
|
1192
|
+
overlap_tokens=200,
|
|
1193
|
+
streaming_callback=lcp_callback,
|
|
1194
|
+
temperature=0.1 # Good for factual summarization
|
|
1195
|
+
)
|
|
1196
|
+
|
|
1197
|
+
ASCIIColors.blue("\n--- Final Comprehensive Summary ---")
|
|
1198
|
+
ASCIIColors.green(final_summary)
|
|
1199
|
+
|
|
1200
|
+
except Exception as e:
|
|
1201
|
+
ASCIIColors.error(f"An error occurred during long context processing: {e}")
|
|
1202
|
+
```
|
|
1203
|
+
|
|
1204
|
+
## Contributing
|
|
1205
|
+
|
|
1206
|
+
Contributions are welcome! Whether it's bug reports, feature suggestions, documentation improvements, or new bindings, please feel free to open an issue or submit a pull request on our [GitHub repository](https://github.com/ParisNeo/lollms_client).
|
|
1207
|
+
|
|
1208
|
+
## License
|
|
1209
|
+
|
|
1210
|
+
This project is licensed under the **Apache 2.0 License**. See the [LICENSE](LICENSE) file for details.
|
|
1211
|
+
|
|
1212
|
+
## Changelog
|
|
1213
|
+
|
|
1214
|
+
For a list of changes and updates, please refer to the [CHANGELOG.md](CHANGELOG.md) file.
|