├── .gitignore ├── .vscode └── settings.json ├── README.md ├── backup ├── chatbot.py ├── intents.json ├── intents_back_1.json ├── intents_backup.json ├── intents_neuralnine.json ├── ipynb_files │ ├── chatbot.ipynb │ └── training.ipynb └── training.py ├── chatbot.py ├── database.py ├── generated ├── chatbotmodel.keras ├── classes.pkl └── words.pkl ├── main.py ├── models.py ├── repository.py ├── requirements.txt ├── resources ├── intents origin.json └── intents.json ├── routes ├── admin_api.py └── chatbot_api.py ├── schemas.py ├── training.py └── venv ├── bin ├── Activate.ps1 ├── activate ├── activate.csh ├── activate.fish ├── pip ├── pip3 ├── pip3.10 ├── python ├── python3 ├── python3.10 └── uvicorn ├── lib └── python3.10 │ └── site-packages │ ├── __pycache__ │ └── typing_extensions.cpython-310.pyc │ ├── _distutils_hack │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── override.cpython-310.pyc │ └── override.py │ ├── annotated_types-0.6.0.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── licenses │ │ └── LICENSE │ ├── annotated_types │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── test_cases.cpython-310.pyc │ ├── py.typed │ └── test_cases.py │ ├── anyio-4.3.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── anyio │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── from_thread.cpython-310.pyc │ │ ├── lowlevel.cpython-310.pyc │ │ ├── pytest_plugin.cpython-310.pyc │ │ ├── to_process.cpython-310.pyc │ │ └── to_thread.cpython-310.pyc │ ├── _backends │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── _asyncio.cpython-310.pyc │ │ │ └── _trio.cpython-310.pyc │ │ ├── _asyncio.py │ │ └── _trio.py │ ├── _core │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── _eventloop.cpython-310.pyc │ │ │ ├── _exceptions.cpython-310.pyc │ │ │ ├── _fileio.cpython-310.pyc │ │ │ ├── _resources.cpython-310.pyc │ │ │ ├── _signals.cpython-310.pyc │ │ │ ├── _sockets.cpython-310.pyc │ │ │ ├── _streams.cpython-310.pyc │ │ │ ├── _subprocesses.cpython-310.pyc │ │ │ ├── _synchronization.cpython-310.pyc │ │ │ ├── _tasks.cpython-310.pyc │ │ │ ├── _testing.cpython-310.pyc │ │ │ └── _typedattr.cpython-310.pyc │ │ ├── _eventloop.py │ │ ├── _exceptions.py │ │ ├── _fileio.py │ │ ├── _resources.py │ │ ├── _signals.py │ │ ├── _sockets.py │ │ ├── _streams.py │ │ ├── _subprocesses.py │ │ ├── _synchronization.py │ │ ├── _tasks.py │ │ ├── _testing.py │ │ └── _typedattr.py │ ├── abc │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── _eventloop.cpython-310.pyc │ │ │ ├── _resources.cpython-310.pyc │ │ │ ├── _sockets.cpython-310.pyc │ │ │ ├── _streams.cpython-310.pyc │ │ │ ├── _subprocesses.cpython-310.pyc │ │ │ ├── _tasks.cpython-310.pyc │ │ │ └── _testing.cpython-310.pyc │ │ ├── _eventloop.py │ │ ├── _resources.py │ │ ├── _sockets.py │ │ ├── _streams.py │ │ ├── _subprocesses.py │ │ ├── _tasks.py │ │ └── _testing.py │ ├── from_thread.py │ ├── lowlevel.py │ ├── py.typed │ ├── pytest_plugin.py │ ├── streams │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── buffered.cpython-310.pyc │ │ │ ├── file.cpython-310.pyc │ │ │ ├── memory.cpython-310.pyc │ │ │ ├── stapled.cpython-310.pyc │ │ │ ├── text.cpython-310.pyc │ │ │ └── tls.cpython-310.pyc │ │ ├── buffered.py │ │ ├── file.py │ │ ├── memory.py │ │ ├── stapled.py │ │ ├── text.py │ │ └── tls.py │ ├── to_process.py │ └── to_thread.py │ ├── click-8.1.7.dist-info │ ├── INSTALLER │ ├── LICENSE.rst │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── click │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── _compat.cpython-310.pyc │ │ ├── _termui_impl.cpython-310.pyc │ │ ├── _textwrap.cpython-310.pyc │ │ ├── _winconsole.cpython-310.pyc │ │ ├── core.cpython-310.pyc │ │ ├── decorators.cpython-310.pyc │ │ ├── exceptions.cpython-310.pyc │ │ ├── formatting.cpython-310.pyc │ │ ├── globals.cpython-310.pyc │ │ ├── parser.cpython-310.pyc │ │ ├── shell_completion.cpython-310.pyc │ │ ├── termui.cpython-310.pyc │ │ ├── testing.cpython-310.pyc │ │ ├── types.cpython-310.pyc │ │ └── utils.cpython-310.pyc │ ├── _compat.py │ ├── _termui_impl.py │ ├── _textwrap.py │ ├── _winconsole.py │ ├── core.py │ ├── decorators.py │ ├── exceptions.py │ ├── formatting.py │ ├── globals.py │ ├── parser.py │ ├── py.typed │ ├── shell_completion.py │ ├── termui.py │ ├── testing.py │ ├── types.py │ └── utils.py │ ├── distutils-precedence.pth │ ├── exceptiongroup-1.2.1.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ └── WHEEL │ ├── exceptiongroup │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── _catch.cpython-310.pyc │ │ ├── _exceptions.cpython-310.pyc │ │ ├── _formatting.cpython-310.pyc │ │ ├── _suppress.cpython-310.pyc │ │ └── _version.cpython-310.pyc │ ├── _catch.py │ ├── _exceptions.py │ ├── _formatting.py │ ├── _suppress.py │ ├── _version.py │ └── py.typed │ ├── fastapi-0.110.3.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ └── licenses │ │ └── LICENSE │ ├── fastapi │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── _compat.cpython-310.pyc │ │ ├── applications.cpython-310.pyc │ │ ├── background.cpython-310.pyc │ │ ├── concurrency.cpython-310.pyc │ │ ├── datastructures.cpython-310.pyc │ │ ├── encoders.cpython-310.pyc │ │ ├── exception_handlers.cpython-310.pyc │ │ ├── exceptions.cpython-310.pyc │ │ ├── logger.cpython-310.pyc │ │ ├── param_functions.cpython-310.pyc │ │ ├── params.cpython-310.pyc │ │ ├── requests.cpython-310.pyc │ │ ├── responses.cpython-310.pyc │ │ ├── routing.cpython-310.pyc │ │ ├── staticfiles.cpython-310.pyc │ │ ├── templating.cpython-310.pyc │ │ ├── testclient.cpython-310.pyc │ │ ├── types.cpython-310.pyc │ │ ├── utils.cpython-310.pyc │ │ └── websockets.cpython-310.pyc │ ├── _compat.py │ ├── applications.py │ ├── background.py │ ├── concurrency.py │ ├── datastructures.py │ ├── dependencies │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── models.cpython-310.pyc │ │ │ └── utils.cpython-310.pyc │ │ ├── models.py │ │ └── utils.py │ ├── encoders.py │ ├── exception_handlers.py │ ├── exceptions.py │ ├── logger.py │ ├── middleware │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── cors.cpython-310.pyc │ │ │ ├── gzip.cpython-310.pyc │ │ │ ├── httpsredirect.cpython-310.pyc │ │ │ ├── trustedhost.cpython-310.pyc │ │ │ └── wsgi.cpython-310.pyc │ │ ├── cors.py │ │ ├── gzip.py │ │ ├── httpsredirect.py │ │ ├── trustedhost.py │ │ └── wsgi.py │ ├── openapi │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── constants.cpython-310.pyc │ │ │ ├── docs.cpython-310.pyc │ │ │ ├── models.cpython-310.pyc │ │ │ └── utils.cpython-310.pyc │ │ ├── constants.py │ │ ├── docs.py │ │ ├── models.py │ │ └── utils.py │ ├── param_functions.py │ ├── params.py │ ├── py.typed │ ├── requests.py │ ├── responses.py │ ├── routing.py │ ├── security │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── api_key.cpython-310.pyc │ │ │ ├── base.cpython-310.pyc │ │ │ ├── http.cpython-310.pyc │ │ │ ├── oauth2.cpython-310.pyc │ │ │ ├── open_id_connect_url.cpython-310.pyc │ │ │ └── utils.cpython-310.pyc │ │ ├── api_key.py │ │ ├── base.py │ │ ├── http.py │ │ ├── oauth2.py │ │ ├── open_id_connect_url.py │ │ └── utils.py │ ├── staticfiles.py │ ├── templating.py │ ├── testclient.py │ ├── types.py │ ├── utils.py │ └── websockets.py │ ├── h11-0.14.0.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── h11 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── _abnf.cpython-310.pyc │ │ ├── _connection.cpython-310.pyc │ │ ├── _events.cpython-310.pyc │ │ ├── _headers.cpython-310.pyc │ │ ├── _readers.cpython-310.pyc │ │ ├── _receivebuffer.cpython-310.pyc │ │ ├── _state.cpython-310.pyc │ │ ├── _util.cpython-310.pyc │ │ ├── _version.cpython-310.pyc │ │ └── _writers.cpython-310.pyc │ ├── _abnf.py │ ├── _connection.py │ ├── _events.py │ ├── _headers.py │ ├── _readers.py │ ├── _receivebuffer.py │ ├── _state.py │ ├── _util.py │ ├── _version.py │ ├── _writers.py │ ├── py.typed │ └── tests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── helpers.cpython-310.pyc │ │ ├── test_against_stdlib_http.cpython-310.pyc │ │ ├── test_connection.cpython-310.pyc │ │ ├── test_events.cpython-310.pyc │ │ ├── test_headers.cpython-310.pyc │ │ ├── test_helpers.cpython-310.pyc │ │ ├── test_io.cpython-310.pyc │ │ ├── test_receivebuffer.cpython-310.pyc │ │ ├── test_state.cpython-310.pyc │ │ └── test_util.cpython-310.pyc │ │ ├── data │ │ └── test-file │ │ ├── helpers.py │ │ ├── test_against_stdlib_http.py │ │ ├── test_connection.py │ │ ├── test_events.py │ │ ├── test_headers.py │ │ ├── test_helpers.py │ │ ├── test_io.py │ │ ├── test_receivebuffer.py │ │ ├── test_state.py │ │ └── test_util.py │ ├── idna-3.7.dist-info │ ├── INSTALLER │ ├── LICENSE.md │ ├── METADATA │ ├── RECORD │ └── WHEEL │ ├── idna │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── codec.cpython-310.pyc │ │ ├── compat.cpython-310.pyc │ │ ├── core.cpython-310.pyc │ │ ├── idnadata.cpython-310.pyc │ │ ├── intranges.cpython-310.pyc │ │ ├── package_data.cpython-310.pyc │ │ └── uts46data.cpython-310.pyc │ ├── codec.py │ ├── compat.py │ ├── core.py │ ├── idnadata.py │ ├── intranges.py │ ├── package_data.py │ ├── py.typed │ └── uts46data.py │ ├── pip-22.0.2.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── pip │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── __main__.cpython-310.pyc │ ├── _internal │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── build_env.cpython-310.pyc │ │ │ ├── cache.cpython-310.pyc │ │ │ ├── configuration.cpython-310.pyc │ │ │ ├── exceptions.cpython-310.pyc │ │ │ ├── main.cpython-310.pyc │ │ │ ├── pyproject.cpython-310.pyc │ │ │ ├── self_outdated_check.cpython-310.pyc │ │ │ └── wheel_builder.cpython-310.pyc │ │ ├── build_env.py │ │ ├── cache.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── autocompletion.cpython-310.pyc │ │ │ │ ├── base_command.cpython-310.pyc │ │ │ │ ├── cmdoptions.cpython-310.pyc │ │ │ │ ├── command_context.cpython-310.pyc │ │ │ │ ├── main.cpython-310.pyc │ │ │ │ ├── main_parser.cpython-310.pyc │ │ │ │ ├── parser.cpython-310.pyc │ │ │ │ ├── progress_bars.cpython-310.pyc │ │ │ │ ├── req_command.cpython-310.pyc │ │ │ │ ├── spinners.cpython-310.pyc │ │ │ │ └── status_codes.cpython-310.pyc │ │ │ ├── autocompletion.py │ │ │ ├── base_command.py │ │ │ ├── cmdoptions.py │ │ │ ├── command_context.py │ │ │ ├── main.py │ │ │ ├── main_parser.py │ │ │ ├── parser.py │ │ │ ├── progress_bars.py │ │ │ ├── req_command.py │ │ │ ├── spinners.py │ │ │ └── status_codes.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── cache.cpython-310.pyc │ │ │ │ ├── check.cpython-310.pyc │ │ │ │ ├── completion.cpython-310.pyc │ │ │ │ ├── configuration.cpython-310.pyc │ │ │ │ ├── debug.cpython-310.pyc │ │ │ │ ├── download.cpython-310.pyc │ │ │ │ ├── freeze.cpython-310.pyc │ │ │ │ ├── hash.cpython-310.pyc │ │ │ │ ├── help.cpython-310.pyc │ │ │ │ ├── index.cpython-310.pyc │ │ │ │ ├── install.cpython-310.pyc │ │ │ │ ├── list.cpython-310.pyc │ │ │ │ ├── search.cpython-310.pyc │ │ │ │ ├── show.cpython-310.pyc │ │ │ │ ├── uninstall.cpython-310.pyc │ │ │ │ └── wheel.cpython-310.pyc │ │ │ ├── cache.py │ │ │ ├── check.py │ │ │ ├── completion.py │ │ │ ├── configuration.py │ │ │ ├── debug.py │ │ │ ├── download.py │ │ │ ├── freeze.py │ │ │ ├── hash.py │ │ │ ├── help.py │ │ │ ├── index.py │ │ │ ├── install.py │ │ │ ├── list.py │ │ │ ├── search.py │ │ │ ├── show.py │ │ │ ├── uninstall.py │ │ │ └── wheel.py │ │ ├── configuration.py │ │ ├── distributions │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── base.cpython-310.pyc │ │ │ │ ├── installed.cpython-310.pyc │ │ │ │ ├── sdist.cpython-310.pyc │ │ │ │ └── wheel.cpython-310.pyc │ │ │ ├── base.py │ │ │ ├── installed.py │ │ │ ├── sdist.py │ │ │ └── wheel.py │ │ ├── exceptions.py │ │ ├── index │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── collector.cpython-310.pyc │ │ │ │ ├── package_finder.cpython-310.pyc │ │ │ │ └── sources.cpython-310.pyc │ │ │ ├── collector.py │ │ │ ├── package_finder.py │ │ │ └── sources.py │ │ ├── locations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── _distutils.cpython-310.pyc │ │ │ │ ├── _sysconfig.cpython-310.pyc │ │ │ │ └── base.cpython-310.pyc │ │ │ ├── _distutils.py │ │ │ ├── _sysconfig.py │ │ │ └── base.py │ │ ├── main.py │ │ ├── metadata │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── base.cpython-310.pyc │ │ │ │ └── pkg_resources.cpython-310.pyc │ │ │ ├── base.py │ │ │ └── pkg_resources.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── candidate.cpython-310.pyc │ │ │ │ ├── direct_url.cpython-310.pyc │ │ │ │ ├── format_control.cpython-310.pyc │ │ │ │ ├── index.cpython-310.pyc │ │ │ │ ├── link.cpython-310.pyc │ │ │ │ ├── scheme.cpython-310.pyc │ │ │ │ ├── search_scope.cpython-310.pyc │ │ │ │ ├── selection_prefs.cpython-310.pyc │ │ │ │ ├── target_python.cpython-310.pyc │ │ │ │ └── wheel.cpython-310.pyc │ │ │ ├── candidate.py │ │ │ ├── direct_url.py │ │ │ ├── format_control.py │ │ │ ├── index.py │ │ │ ├── link.py │ │ │ ├── scheme.py │ │ │ ├── search_scope.py │ │ │ ├── selection_prefs.py │ │ │ ├── target_python.py │ │ │ └── wheel.py │ │ ├── network │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── auth.cpython-310.pyc │ │ │ │ ├── cache.cpython-310.pyc │ │ │ │ ├── download.cpython-310.pyc │ │ │ │ ├── lazy_wheel.cpython-310.pyc │ │ │ │ ├── session.cpython-310.pyc │ │ │ │ ├── utils.cpython-310.pyc │ │ │ │ └── xmlrpc.cpython-310.pyc │ │ │ ├── auth.py │ │ │ ├── cache.py │ │ │ ├── download.py │ │ │ ├── lazy_wheel.py │ │ │ ├── session.py │ │ │ ├── utils.py │ │ │ └── xmlrpc.py │ │ ├── operations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── check.cpython-310.pyc │ │ │ │ ├── freeze.cpython-310.pyc │ │ │ │ └── prepare.cpython-310.pyc │ │ │ ├── build │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── metadata.cpython-310.pyc │ │ │ │ │ ├── metadata_editable.cpython-310.pyc │ │ │ │ │ ├── metadata_legacy.cpython-310.pyc │ │ │ │ │ ├── wheel.cpython-310.pyc │ │ │ │ │ ├── wheel_editable.cpython-310.pyc │ │ │ │ │ └── wheel_legacy.cpython-310.pyc │ │ │ │ ├── metadata.py │ │ │ │ ├── metadata_editable.py │ │ │ │ ├── metadata_legacy.py │ │ │ │ ├── wheel.py │ │ │ │ ├── wheel_editable.py │ │ │ │ └── wheel_legacy.py │ │ │ ├── check.py │ │ │ ├── freeze.py │ │ │ ├── install │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── editable_legacy.cpython-310.pyc │ │ │ │ │ ├── legacy.cpython-310.pyc │ │ │ │ │ └── wheel.cpython-310.pyc │ │ │ │ ├── editable_legacy.py │ │ │ │ ├── legacy.py │ │ │ │ └── wheel.py │ │ │ └── prepare.py │ │ ├── pyproject.py │ │ ├── req │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── constructors.cpython-310.pyc │ │ │ │ ├── req_file.cpython-310.pyc │ │ │ │ ├── req_install.cpython-310.pyc │ │ │ │ ├── req_set.cpython-310.pyc │ │ │ │ ├── req_tracker.cpython-310.pyc │ │ │ │ └── req_uninstall.cpython-310.pyc │ │ │ ├── constructors.py │ │ │ ├── req_file.py │ │ │ ├── req_install.py │ │ │ ├── req_set.py │ │ │ ├── req_tracker.py │ │ │ └── req_uninstall.py │ │ ├── resolution │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ └── base.cpython-310.pyc │ │ │ ├── base.py │ │ │ ├── legacy │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ └── resolver.cpython-310.pyc │ │ │ │ └── resolver.py │ │ │ └── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── base.cpython-310.pyc │ │ │ │ ├── candidates.cpython-310.pyc │ │ │ │ ├── factory.cpython-310.pyc │ │ │ │ ├── found_candidates.cpython-310.pyc │ │ │ │ ├── provider.cpython-310.pyc │ │ │ │ ├── reporter.cpython-310.pyc │ │ │ │ ├── requirements.cpython-310.pyc │ │ │ │ └── resolver.cpython-310.pyc │ │ │ │ ├── base.py │ │ │ │ ├── candidates.py │ │ │ │ ├── factory.py │ │ │ │ ├── found_candidates.py │ │ │ │ ├── provider.py │ │ │ │ ├── reporter.py │ │ │ │ ├── requirements.py │ │ │ │ └── resolver.py │ │ ├── self_outdated_check.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── _log.cpython-310.pyc │ │ │ │ ├── appdirs.cpython-310.pyc │ │ │ │ ├── compat.cpython-310.pyc │ │ │ │ ├── compatibility_tags.cpython-310.pyc │ │ │ │ ├── datetime.cpython-310.pyc │ │ │ │ ├── deprecation.cpython-310.pyc │ │ │ │ ├── direct_url_helpers.cpython-310.pyc │ │ │ │ ├── distutils_args.cpython-310.pyc │ │ │ │ ├── egg_link.cpython-310.pyc │ │ │ │ ├── encoding.cpython-310.pyc │ │ │ │ ├── entrypoints.cpython-310.pyc │ │ │ │ ├── filesystem.cpython-310.pyc │ │ │ │ ├── filetypes.cpython-310.pyc │ │ │ │ ├── glibc.cpython-310.pyc │ │ │ │ ├── hashes.cpython-310.pyc │ │ │ │ ├── inject_securetransport.cpython-310.pyc │ │ │ │ ├── logging.cpython-310.pyc │ │ │ │ ├── misc.cpython-310.pyc │ │ │ │ ├── models.cpython-310.pyc │ │ │ │ ├── packaging.cpython-310.pyc │ │ │ │ ├── setuptools_build.cpython-310.pyc │ │ │ │ ├── subprocess.cpython-310.pyc │ │ │ │ ├── temp_dir.cpython-310.pyc │ │ │ │ ├── unpacking.cpython-310.pyc │ │ │ │ ├── urls.cpython-310.pyc │ │ │ │ ├── virtualenv.cpython-310.pyc │ │ │ │ └── wheel.cpython-310.pyc │ │ │ ├── _log.py │ │ │ ├── appdirs.py │ │ │ ├── compat.py │ │ │ ├── compatibility_tags.py │ │ │ ├── datetime.py │ │ │ ├── deprecation.py │ │ │ ├── direct_url_helpers.py │ │ │ ├── distutils_args.py │ │ │ ├── egg_link.py │ │ │ ├── encoding.py │ │ │ ├── entrypoints.py │ │ │ ├── filesystem.py │ │ │ ├── filetypes.py │ │ │ ├── glibc.py │ │ │ ├── hashes.py │ │ │ ├── inject_securetransport.py │ │ │ ├── logging.py │ │ │ ├── misc.py │ │ │ ├── models.py │ │ │ ├── packaging.py │ │ │ ├── setuptools_build.py │ │ │ ├── subprocess.py │ │ │ ├── temp_dir.py │ │ │ ├── unpacking.py │ │ │ ├── urls.py │ │ │ ├── virtualenv.py │ │ │ └── wheel.py │ │ ├── vcs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── bazaar.cpython-310.pyc │ │ │ │ ├── git.cpython-310.pyc │ │ │ │ ├── mercurial.cpython-310.pyc │ │ │ │ ├── subversion.cpython-310.pyc │ │ │ │ └── versioncontrol.cpython-310.pyc │ │ │ ├── bazaar.py │ │ │ ├── git.py │ │ │ ├── mercurial.py │ │ │ ├── subversion.py │ │ │ └── versioncontrol.py │ │ └── wheel_builder.py │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── distro.cpython-310.pyc │ │ │ ├── six.cpython-310.pyc │ │ │ └── typing_extensions.cpython-310.pyc │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── _cmd.cpython-310.pyc │ │ │ │ ├── adapter.cpython-310.pyc │ │ │ │ ├── cache.cpython-310.pyc │ │ │ │ ├── compat.cpython-310.pyc │ │ │ │ ├── controller.cpython-310.pyc │ │ │ │ ├── filewrapper.cpython-310.pyc │ │ │ │ ├── heuristics.cpython-310.pyc │ │ │ │ ├── serialize.cpython-310.pyc │ │ │ │ └── wrapper.cpython-310.pyc │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── file_cache.cpython-310.pyc │ │ │ │ │ └── redis_cache.cpython-310.pyc │ │ │ │ ├── file_cache.py │ │ │ │ └── redis_cache.py │ │ │ ├── compat.py │ │ │ ├── controller.py │ │ │ ├── filewrapper.py │ │ │ ├── heuristics.py │ │ │ ├── serialize.py │ │ │ └── wrapper.py │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __main__.cpython-310.pyc │ │ │ │ └── core.cpython-310.pyc │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── big5freq.cpython-310.pyc │ │ │ │ ├── big5prober.cpython-310.pyc │ │ │ │ ├── chardistribution.cpython-310.pyc │ │ │ │ ├── charsetgroupprober.cpython-310.pyc │ │ │ │ ├── charsetprober.cpython-310.pyc │ │ │ │ ├── codingstatemachine.cpython-310.pyc │ │ │ │ ├── compat.cpython-310.pyc │ │ │ │ ├── cp949prober.cpython-310.pyc │ │ │ │ ├── enums.cpython-310.pyc │ │ │ │ ├── escprober.cpython-310.pyc │ │ │ │ ├── escsm.cpython-310.pyc │ │ │ │ ├── eucjpprober.cpython-310.pyc │ │ │ │ ├── euckrfreq.cpython-310.pyc │ │ │ │ ├── euckrprober.cpython-310.pyc │ │ │ │ ├── euctwfreq.cpython-310.pyc │ │ │ │ ├── euctwprober.cpython-310.pyc │ │ │ │ ├── gb2312freq.cpython-310.pyc │ │ │ │ ├── gb2312prober.cpython-310.pyc │ │ │ │ ├── hebrewprober.cpython-310.pyc │ │ │ │ ├── jisfreq.cpython-310.pyc │ │ │ │ ├── jpcntx.cpython-310.pyc │ │ │ │ ├── langbulgarianmodel.cpython-310.pyc │ │ │ │ ├── langgreekmodel.cpython-310.pyc │ │ │ │ ├── langhebrewmodel.cpython-310.pyc │ │ │ │ ├── langhungarianmodel.cpython-310.pyc │ │ │ │ ├── langrussianmodel.cpython-310.pyc │ │ │ │ ├── langthaimodel.cpython-310.pyc │ │ │ │ ├── langturkishmodel.cpython-310.pyc │ │ │ │ ├── latin1prober.cpython-310.pyc │ │ │ │ ├── mbcharsetprober.cpython-310.pyc │ │ │ │ ├── mbcsgroupprober.cpython-310.pyc │ │ │ │ ├── mbcssm.cpython-310.pyc │ │ │ │ ├── sbcharsetprober.cpython-310.pyc │ │ │ │ ├── sbcsgroupprober.cpython-310.pyc │ │ │ │ ├── sjisprober.cpython-310.pyc │ │ │ │ ├── universaldetector.cpython-310.pyc │ │ │ │ ├── utf8prober.cpython-310.pyc │ │ │ │ └── version.cpython-310.pyc │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ └── chardetect.cpython-310.pyc │ │ │ │ └── chardetect.py │ │ │ ├── codingstatemachine.py │ │ │ ├── compat.py │ │ │ ├── cp949prober.py │ │ │ ├── enums.py │ │ │ ├── escprober.py │ │ │ ├── escsm.py │ │ │ ├── eucjpprober.py │ │ │ ├── euckrfreq.py │ │ │ ├── euckrprober.py │ │ │ ├── euctwfreq.py │ │ │ ├── euctwprober.py │ │ │ ├── gb2312freq.py │ │ │ ├── gb2312prober.py │ │ │ ├── hebrewprober.py │ │ │ ├── jisfreq.py │ │ │ ├── jpcntx.py │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langrussianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── langturkishmodel.py │ │ │ ├── latin1prober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── metadata │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ └── languages.cpython-310.pyc │ │ │ │ └── languages.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ ├── utf8prober.py │ │ │ └── version.py │ │ ├── colorama │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── ansi.cpython-310.pyc │ │ │ │ ├── ansitowin32.cpython-310.pyc │ │ │ │ ├── initialise.cpython-310.pyc │ │ │ │ ├── win32.cpython-310.pyc │ │ │ │ └── winterm.cpython-310.pyc │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── compat.cpython-310.pyc │ │ │ │ ├── database.cpython-310.pyc │ │ │ │ ├── index.cpython-310.pyc │ │ │ │ ├── locators.cpython-310.pyc │ │ │ │ ├── manifest.cpython-310.pyc │ │ │ │ ├── markers.cpython-310.pyc │ │ │ │ ├── metadata.cpython-310.pyc │ │ │ │ ├── resources.cpython-310.pyc │ │ │ │ ├── scripts.cpython-310.pyc │ │ │ │ ├── util.cpython-310.pyc │ │ │ │ ├── version.cpython-310.pyc │ │ │ │ └── wheel.cpython-310.pyc │ │ │ ├── compat.py │ │ │ ├── database.py │ │ │ ├── index.py │ │ │ ├── locators.py │ │ │ ├── manifest.py │ │ │ ├── markers.py │ │ │ ├── metadata.py │ │ │ ├── resources.py │ │ │ ├── scripts.py │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ └── wheel.py │ │ ├── distro.py │ │ ├── html5lib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── _ihatexml.cpython-310.pyc │ │ │ │ ├── _inputstream.cpython-310.pyc │ │ │ │ ├── _tokenizer.cpython-310.pyc │ │ │ │ ├── _utils.cpython-310.pyc │ │ │ │ ├── constants.cpython-310.pyc │ │ │ │ ├── html5parser.cpython-310.pyc │ │ │ │ └── serializer.cpython-310.pyc │ │ │ ├── _ihatexml.py │ │ │ ├── _inputstream.py │ │ │ ├── _tokenizer.py │ │ │ ├── _trie │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── _base.cpython-310.pyc │ │ │ │ │ └── py.cpython-310.pyc │ │ │ │ ├── _base.py │ │ │ │ └── py.py │ │ │ ├── _utils.py │ │ │ ├── constants.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── alphabeticalattributes.cpython-310.pyc │ │ │ │ │ ├── base.cpython-310.pyc │ │ │ │ │ ├── inject_meta_charset.cpython-310.pyc │ │ │ │ │ ├── lint.cpython-310.pyc │ │ │ │ │ ├── optionaltags.cpython-310.pyc │ │ │ │ │ ├── sanitizer.cpython-310.pyc │ │ │ │ │ └── whitespace.cpython-310.pyc │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ ├── base.py │ │ │ │ ├── inject_meta_charset.py │ │ │ │ ├── lint.py │ │ │ │ ├── optionaltags.py │ │ │ │ ├── sanitizer.py │ │ │ │ └── whitespace.py │ │ │ ├── html5parser.py │ │ │ ├── serializer.py │ │ │ ├── treeadapters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── genshi.cpython-310.pyc │ │ │ │ │ └── sax.cpython-310.pyc │ │ │ │ ├── genshi.py │ │ │ │ └── sax.py │ │ │ ├── treebuilders │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── base.cpython-310.pyc │ │ │ │ │ ├── dom.cpython-310.pyc │ │ │ │ │ ├── etree.cpython-310.pyc │ │ │ │ │ └── etree_lxml.cpython-310.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ └── etree_lxml.py │ │ │ └── treewalkers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── base.cpython-310.pyc │ │ │ │ ├── dom.cpython-310.pyc │ │ │ │ ├── etree.cpython-310.pyc │ │ │ │ ├── etree_lxml.cpython-310.pyc │ │ │ │ └── genshi.cpython-310.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ ├── etree_lxml.py │ │ │ │ └── genshi.py │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── codec.cpython-310.pyc │ │ │ │ ├── compat.cpython-310.pyc │ │ │ │ ├── core.cpython-310.pyc │ │ │ │ ├── idnadata.cpython-310.pyc │ │ │ │ ├── intranges.cpython-310.pyc │ │ │ │ ├── package_data.cpython-310.pyc │ │ │ │ └── uts46data.cpython-310.pyc │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── _version.cpython-310.pyc │ │ │ │ ├── exceptions.cpython-310.pyc │ │ │ │ ├── ext.cpython-310.pyc │ │ │ │ └── fallback.cpython-310.pyc │ │ │ ├── _version.py │ │ │ ├── exceptions.py │ │ │ ├── ext.py │ │ │ └── fallback.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-310.pyc │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── _manylinux.cpython-310.pyc │ │ │ │ ├── _musllinux.cpython-310.pyc │ │ │ │ ├── _structures.cpython-310.pyc │ │ │ │ ├── markers.cpython-310.pyc │ │ │ │ ├── requirements.cpython-310.pyc │ │ │ │ ├── specifiers.cpython-310.pyc │ │ │ │ ├── tags.cpython-310.pyc │ │ │ │ ├── utils.cpython-310.pyc │ │ │ │ └── version.cpython-310.pyc │ │ │ ├── _manylinux.py │ │ │ ├── _musllinux.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pep517 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── build.cpython-310.pyc │ │ │ │ ├── check.cpython-310.pyc │ │ │ │ ├── colorlog.cpython-310.pyc │ │ │ │ ├── compat.cpython-310.pyc │ │ │ │ ├── dirtools.cpython-310.pyc │ │ │ │ ├── envbuild.cpython-310.pyc │ │ │ │ ├── meta.cpython-310.pyc │ │ │ │ └── wrappers.cpython-310.pyc │ │ │ ├── build.py │ │ │ ├── check.py │ │ │ ├── colorlog.py │ │ │ ├── compat.py │ │ │ ├── dirtools.py │ │ │ ├── envbuild.py │ │ │ ├── in_process │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ └── _in_process.cpython-310.pyc │ │ │ │ └── _in_process.py │ │ │ ├── meta.py │ │ │ └── wrappers.py │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ └── py31compat.cpython-310.pyc │ │ │ └── py31compat.py │ │ ├── platformdirs │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __main__.cpython-310.pyc │ │ │ │ ├── android.cpython-310.pyc │ │ │ │ ├── api.cpython-310.pyc │ │ │ │ ├── macos.cpython-310.pyc │ │ │ │ ├── unix.cpython-310.pyc │ │ │ │ ├── version.cpython-310.pyc │ │ │ │ └── windows.cpython-310.pyc │ │ │ ├── android.py │ │ │ ├── api.py │ │ │ ├── macos.py │ │ │ ├── unix.py │ │ │ ├── version.py │ │ │ └── windows.py │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── bar.cpython-310.pyc │ │ │ │ ├── colors.cpython-310.pyc │ │ │ │ ├── counter.cpython-310.pyc │ │ │ │ └── spinner.cpython-310.pyc │ │ │ ├── bar.py │ │ │ ├── colors.py │ │ │ ├── counter.py │ │ │ └── spinner.py │ │ ├── pygments │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __main__.cpython-310.pyc │ │ │ │ ├── cmdline.cpython-310.pyc │ │ │ │ ├── console.cpython-310.pyc │ │ │ │ ├── filter.cpython-310.pyc │ │ │ │ ├── formatter.cpython-310.pyc │ │ │ │ ├── lexer.cpython-310.pyc │ │ │ │ ├── modeline.cpython-310.pyc │ │ │ │ ├── plugin.cpython-310.pyc │ │ │ │ ├── regexopt.cpython-310.pyc │ │ │ │ ├── scanner.cpython-310.pyc │ │ │ │ ├── sphinxext.cpython-310.pyc │ │ │ │ ├── style.cpython-310.pyc │ │ │ │ ├── token.cpython-310.pyc │ │ │ │ ├── unistring.cpython-310.pyc │ │ │ │ └── util.cpython-310.pyc │ │ │ ├── cmdline.py │ │ │ ├── console.py │ │ │ ├── filter.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ ├── formatter.py │ │ │ ├── formatters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── _mapping.cpython-310.pyc │ │ │ │ │ ├── bbcode.cpython-310.pyc │ │ │ │ │ ├── groff.cpython-310.pyc │ │ │ │ │ ├── html.cpython-310.pyc │ │ │ │ │ ├── img.cpython-310.pyc │ │ │ │ │ ├── irc.cpython-310.pyc │ │ │ │ │ ├── latex.cpython-310.pyc │ │ │ │ │ ├── other.cpython-310.pyc │ │ │ │ │ ├── pangomarkup.cpython-310.pyc │ │ │ │ │ ├── rtf.cpython-310.pyc │ │ │ │ │ ├── svg.cpython-310.pyc │ │ │ │ │ ├── terminal.cpython-310.pyc │ │ │ │ │ └── terminal256.cpython-310.pyc │ │ │ │ ├── _mapping.py │ │ │ │ ├── bbcode.py │ │ │ │ ├── groff.py │ │ │ │ ├── html.py │ │ │ │ ├── img.py │ │ │ │ ├── irc.py │ │ │ │ ├── latex.py │ │ │ │ ├── other.py │ │ │ │ ├── pangomarkup.py │ │ │ │ ├── rtf.py │ │ │ │ ├── svg.py │ │ │ │ ├── terminal.py │ │ │ │ └── terminal256.py │ │ │ ├── lexer.py │ │ │ ├── lexers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── _mapping.cpython-310.pyc │ │ │ │ │ └── python.cpython-310.pyc │ │ │ │ ├── _mapping.py │ │ │ │ └── python.py │ │ │ ├── modeline.py │ │ │ ├── plugin.py │ │ │ ├── regexopt.py │ │ │ ├── scanner.py │ │ │ ├── sphinxext.py │ │ │ ├── style.py │ │ │ ├── styles │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ ├── token.py │ │ │ ├── unistring.py │ │ │ └── util.py │ │ ├── pyparsing │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── actions.cpython-310.pyc │ │ │ │ ├── common.cpython-310.pyc │ │ │ │ ├── core.cpython-310.pyc │ │ │ │ ├── exceptions.cpython-310.pyc │ │ │ │ ├── helpers.cpython-310.pyc │ │ │ │ ├── results.cpython-310.pyc │ │ │ │ ├── testing.cpython-310.pyc │ │ │ │ ├── unicode.cpython-310.pyc │ │ │ │ └── util.cpython-310.pyc │ │ │ ├── actions.py │ │ │ ├── common.py │ │ │ ├── core.py │ │ │ ├── diagram │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ ├── exceptions.py │ │ │ ├── helpers.py │ │ │ ├── results.py │ │ │ ├── testing.py │ │ │ ├── unicode.py │ │ │ └── util.py │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __version__.cpython-310.pyc │ │ │ │ ├── _internal_utils.cpython-310.pyc │ │ │ │ ├── adapters.cpython-310.pyc │ │ │ │ ├── api.cpython-310.pyc │ │ │ │ ├── auth.cpython-310.pyc │ │ │ │ ├── certs.cpython-310.pyc │ │ │ │ ├── compat.cpython-310.pyc │ │ │ │ ├── cookies.cpython-310.pyc │ │ │ │ ├── exceptions.cpython-310.pyc │ │ │ │ ├── help.cpython-310.pyc │ │ │ │ ├── hooks.cpython-310.pyc │ │ │ │ ├── models.cpython-310.pyc │ │ │ │ ├── packages.cpython-310.pyc │ │ │ │ ├── sessions.cpython-310.pyc │ │ │ │ ├── status_codes.cpython-310.pyc │ │ │ │ ├── structures.cpython-310.pyc │ │ │ │ └── utils.cpython-310.pyc │ │ │ ├── __version__.py │ │ │ ├── _internal_utils.py │ │ │ ├── adapters.py │ │ │ ├── api.py │ │ │ ├── auth.py │ │ │ ├── certs.py │ │ │ ├── compat.py │ │ │ ├── cookies.py │ │ │ ├── exceptions.py │ │ │ ├── help.py │ │ │ ├── hooks.py │ │ │ ├── models.py │ │ │ ├── packages.py │ │ │ ├── sessions.py │ │ │ ├── status_codes.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ ├── resolvelib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── providers.cpython-310.pyc │ │ │ │ ├── reporters.cpython-310.pyc │ │ │ │ ├── resolvers.cpython-310.pyc │ │ │ │ └── structs.cpython-310.pyc │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ └── collections_abc.cpython-310.pyc │ │ │ │ └── collections_abc.py │ │ │ ├── providers.py │ │ │ ├── reporters.py │ │ │ ├── resolvers.py │ │ │ └── structs.py │ │ ├── rich │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __main__.cpython-310.pyc │ │ │ │ ├── _cell_widths.cpython-310.pyc │ │ │ │ ├── _emoji_codes.cpython-310.pyc │ │ │ │ ├── _emoji_replace.cpython-310.pyc │ │ │ │ ├── _extension.cpython-310.pyc │ │ │ │ ├── _inspect.cpython-310.pyc │ │ │ │ ├── _log_render.cpython-310.pyc │ │ │ │ ├── _loop.cpython-310.pyc │ │ │ │ ├── _lru_cache.cpython-310.pyc │ │ │ │ ├── _palettes.cpython-310.pyc │ │ │ │ ├── _pick.cpython-310.pyc │ │ │ │ ├── _ratio.cpython-310.pyc │ │ │ │ ├── _spinners.cpython-310.pyc │ │ │ │ ├── _stack.cpython-310.pyc │ │ │ │ ├── _timer.cpython-310.pyc │ │ │ │ ├── _windows.cpython-310.pyc │ │ │ │ ├── _wrap.cpython-310.pyc │ │ │ │ ├── abc.cpython-310.pyc │ │ │ │ ├── align.cpython-310.pyc │ │ │ │ ├── ansi.cpython-310.pyc │ │ │ │ ├── bar.cpython-310.pyc │ │ │ │ ├── box.cpython-310.pyc │ │ │ │ ├── cells.cpython-310.pyc │ │ │ │ ├── color.cpython-310.pyc │ │ │ │ ├── color_triplet.cpython-310.pyc │ │ │ │ ├── columns.cpython-310.pyc │ │ │ │ ├── console.cpython-310.pyc │ │ │ │ ├── constrain.cpython-310.pyc │ │ │ │ ├── containers.cpython-310.pyc │ │ │ │ ├── control.cpython-310.pyc │ │ │ │ ├── default_styles.cpython-310.pyc │ │ │ │ ├── diagnose.cpython-310.pyc │ │ │ │ ├── emoji.cpython-310.pyc │ │ │ │ ├── errors.cpython-310.pyc │ │ │ │ ├── file_proxy.cpython-310.pyc │ │ │ │ ├── filesize.cpython-310.pyc │ │ │ │ ├── highlighter.cpython-310.pyc │ │ │ │ ├── json.cpython-310.pyc │ │ │ │ ├── jupyter.cpython-310.pyc │ │ │ │ ├── layout.cpython-310.pyc │ │ │ │ ├── live.cpython-310.pyc │ │ │ │ ├── live_render.cpython-310.pyc │ │ │ │ ├── logging.cpython-310.pyc │ │ │ │ ├── markup.cpython-310.pyc │ │ │ │ ├── measure.cpython-310.pyc │ │ │ │ ├── padding.cpython-310.pyc │ │ │ │ ├── pager.cpython-310.pyc │ │ │ │ ├── palette.cpython-310.pyc │ │ │ │ ├── panel.cpython-310.pyc │ │ │ │ ├── pretty.cpython-310.pyc │ │ │ │ ├── progress.cpython-310.pyc │ │ │ │ ├── progress_bar.cpython-310.pyc │ │ │ │ ├── prompt.cpython-310.pyc │ │ │ │ ├── protocol.cpython-310.pyc │ │ │ │ ├── region.cpython-310.pyc │ │ │ │ ├── repr.cpython-310.pyc │ │ │ │ ├── rule.cpython-310.pyc │ │ │ │ ├── scope.cpython-310.pyc │ │ │ │ ├── screen.cpython-310.pyc │ │ │ │ ├── segment.cpython-310.pyc │ │ │ │ ├── spinner.cpython-310.pyc │ │ │ │ ├── status.cpython-310.pyc │ │ │ │ ├── style.cpython-310.pyc │ │ │ │ ├── styled.cpython-310.pyc │ │ │ │ ├── syntax.cpython-310.pyc │ │ │ │ ├── table.cpython-310.pyc │ │ │ │ ├── tabulate.cpython-310.pyc │ │ │ │ ├── terminal_theme.cpython-310.pyc │ │ │ │ ├── text.cpython-310.pyc │ │ │ │ ├── theme.cpython-310.pyc │ │ │ │ ├── themes.cpython-310.pyc │ │ │ │ ├── traceback.cpython-310.pyc │ │ │ │ └── tree.cpython-310.pyc │ │ │ ├── _cell_widths.py │ │ │ ├── _emoji_codes.py │ │ │ ├── _emoji_replace.py │ │ │ ├── _extension.py │ │ │ ├── _inspect.py │ │ │ ├── _log_render.py │ │ │ ├── _loop.py │ │ │ ├── _lru_cache.py │ │ │ ├── _palettes.py │ │ │ ├── _pick.py │ │ │ ├── _ratio.py │ │ │ ├── _spinners.py │ │ │ ├── _stack.py │ │ │ ├── _timer.py │ │ │ ├── _windows.py │ │ │ ├── _wrap.py │ │ │ ├── abc.py │ │ │ ├── align.py │ │ │ ├── ansi.py │ │ │ ├── bar.py │ │ │ ├── box.py │ │ │ ├── cells.py │ │ │ ├── color.py │ │ │ ├── color_triplet.py │ │ │ ├── columns.py │ │ │ ├── console.py │ │ │ ├── constrain.py │ │ │ ├── containers.py │ │ │ ├── control.py │ │ │ ├── default_styles.py │ │ │ ├── diagnose.py │ │ │ ├── emoji.py │ │ │ ├── errors.py │ │ │ ├── file_proxy.py │ │ │ ├── filesize.py │ │ │ ├── highlighter.py │ │ │ ├── json.py │ │ │ ├── jupyter.py │ │ │ ├── layout.py │ │ │ ├── live.py │ │ │ ├── live_render.py │ │ │ ├── logging.py │ │ │ ├── markup.py │ │ │ ├── measure.py │ │ │ ├── padding.py │ │ │ ├── pager.py │ │ │ ├── palette.py │ │ │ ├── panel.py │ │ │ ├── pretty.py │ │ │ ├── progress.py │ │ │ ├── progress_bar.py │ │ │ ├── prompt.py │ │ │ ├── protocol.py │ │ │ ├── region.py │ │ │ ├── repr.py │ │ │ ├── rule.py │ │ │ ├── scope.py │ │ │ ├── screen.py │ │ │ ├── segment.py │ │ │ ├── spinner.py │ │ │ ├── status.py │ │ │ ├── style.py │ │ │ ├── styled.py │ │ │ ├── syntax.py │ │ │ ├── table.py │ │ │ ├── tabulate.py │ │ │ ├── terminal_theme.py │ │ │ ├── text.py │ │ │ ├── theme.py │ │ │ ├── themes.py │ │ │ ├── traceback.py │ │ │ └── tree.py │ │ ├── six.py │ │ ├── tenacity │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── _asyncio.cpython-310.pyc │ │ │ │ ├── _utils.cpython-310.pyc │ │ │ │ ├── after.cpython-310.pyc │ │ │ │ ├── before.cpython-310.pyc │ │ │ │ ├── before_sleep.cpython-310.pyc │ │ │ │ ├── nap.cpython-310.pyc │ │ │ │ ├── retry.cpython-310.pyc │ │ │ │ ├── stop.cpython-310.pyc │ │ │ │ ├── tornadoweb.cpython-310.pyc │ │ │ │ └── wait.cpython-310.pyc │ │ │ ├── _asyncio.py │ │ │ ├── _utils.py │ │ │ ├── after.py │ │ │ ├── before.py │ │ │ ├── before_sleep.py │ │ │ ├── nap.py │ │ │ ├── retry.py │ │ │ ├── stop.py │ │ │ ├── tornadoweb.py │ │ │ └── wait.py │ │ ├── tomli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── _parser.cpython-310.pyc │ │ │ │ └── _re.cpython-310.pyc │ │ │ ├── _parser.py │ │ │ └── _re.py │ │ ├── typing_extensions.py │ │ ├── urllib3 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── _collections.cpython-310.pyc │ │ │ │ ├── _version.cpython-310.pyc │ │ │ │ ├── connection.cpython-310.pyc │ │ │ │ ├── connectionpool.cpython-310.pyc │ │ │ │ ├── exceptions.cpython-310.pyc │ │ │ │ ├── fields.cpython-310.pyc │ │ │ │ ├── filepost.cpython-310.pyc │ │ │ │ ├── poolmanager.cpython-310.pyc │ │ │ │ ├── request.cpython-310.pyc │ │ │ │ └── response.cpython-310.pyc │ │ │ ├── _collections.py │ │ │ ├── _version.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── _appengine_environ.cpython-310.pyc │ │ │ │ │ ├── appengine.cpython-310.pyc │ │ │ │ │ ├── ntlmpool.cpython-310.pyc │ │ │ │ │ ├── pyopenssl.cpython-310.pyc │ │ │ │ │ ├── securetransport.cpython-310.pyc │ │ │ │ │ └── socks.cpython-310.pyc │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── bindings.cpython-310.pyc │ │ │ │ │ │ └── low_level.cpython-310.pyc │ │ │ │ │ ├── bindings.py │ │ │ │ │ └── low_level.py │ │ │ │ ├── appengine.py │ │ │ │ ├── ntlmpool.py │ │ │ │ ├── pyopenssl.py │ │ │ │ ├── securetransport.py │ │ │ │ └── socks.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ └── six.cpython-310.pyc │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ └── makefile.cpython-310.pyc │ │ │ │ │ └── makefile.py │ │ │ │ └── six.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── connection.cpython-310.pyc │ │ │ │ ├── proxy.cpython-310.pyc │ │ │ │ ├── queue.cpython-310.pyc │ │ │ │ ├── request.cpython-310.pyc │ │ │ │ ├── response.cpython-310.pyc │ │ │ │ ├── retry.cpython-310.pyc │ │ │ │ ├── ssl_.cpython-310.pyc │ │ │ │ ├── ssl_match_hostname.cpython-310.pyc │ │ │ │ ├── ssltransport.cpython-310.pyc │ │ │ │ ├── timeout.cpython-310.pyc │ │ │ │ ├── url.cpython-310.pyc │ │ │ │ └── wait.cpython-310.pyc │ │ │ │ ├── connection.py │ │ │ │ ├── proxy.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── ssl_match_hostname.py │ │ │ │ ├── ssltransport.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ ├── vendor.txt │ │ └── webencodings │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── labels.cpython-310.pyc │ │ │ ├── mklabels.cpython-310.pyc │ │ │ ├── tests.cpython-310.pyc │ │ │ └── x_user_defined.cpython-310.pyc │ │ │ ├── labels.py │ │ │ ├── mklabels.py │ │ │ ├── tests.py │ │ │ └── x_user_defined.py │ └── py.typed │ ├── pkg_resources │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-310.pyc │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── appdirs.cpython-310.pyc │ │ │ └── pyparsing.cpython-310.pyc │ │ ├── appdirs.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-310.pyc │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── _manylinux.cpython-310.pyc │ │ │ │ ├── _musllinux.cpython-310.pyc │ │ │ │ ├── _structures.cpython-310.pyc │ │ │ │ ├── markers.cpython-310.pyc │ │ │ │ ├── requirements.cpython-310.pyc │ │ │ │ ├── specifiers.cpython-310.pyc │ │ │ │ ├── tags.cpython-310.pyc │ │ │ │ ├── utils.cpython-310.pyc │ │ │ │ └── version.cpython-310.pyc │ │ │ ├── _manylinux.py │ │ │ ├── _musllinux.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ └── pyparsing.py │ ├── extern │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-310.pyc │ └── tests │ │ └── data │ │ └── my-test-package-source │ │ ├── __pycache__ │ │ └── setup.cpython-310.pyc │ │ └── setup.py │ ├── pydantic-2.7.1.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── licenses │ │ └── LICENSE │ ├── pydantic │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── _migration.cpython-310.pyc │ │ ├── alias_generators.cpython-310.pyc │ │ ├── aliases.cpython-310.pyc │ │ ├── annotated_handlers.cpython-310.pyc │ │ ├── class_validators.cpython-310.pyc │ │ ├── color.cpython-310.pyc │ │ ├── config.cpython-310.pyc │ │ ├── dataclasses.cpython-310.pyc │ │ ├── datetime_parse.cpython-310.pyc │ │ ├── decorator.cpython-310.pyc │ │ ├── env_settings.cpython-310.pyc │ │ ├── error_wrappers.cpython-310.pyc │ │ ├── errors.cpython-310.pyc │ │ ├── fields.cpython-310.pyc │ │ ├── functional_serializers.cpython-310.pyc │ │ ├── functional_validators.cpython-310.pyc │ │ ├── generics.cpython-310.pyc │ │ ├── json.cpython-310.pyc │ │ ├── json_schema.cpython-310.pyc │ │ ├── main.cpython-310.pyc │ │ ├── mypy.cpython-310.pyc │ │ ├── networks.cpython-310.pyc │ │ ├── parse.cpython-310.pyc │ │ ├── root_model.cpython-310.pyc │ │ ├── schema.cpython-310.pyc │ │ ├── tools.cpython-310.pyc │ │ ├── type_adapter.cpython-310.pyc │ │ ├── types.cpython-310.pyc │ │ ├── typing.cpython-310.pyc │ │ ├── utils.cpython-310.pyc │ │ ├── validate_call_decorator.cpython-310.pyc │ │ ├── validators.cpython-310.pyc │ │ ├── version.cpython-310.pyc │ │ └── warnings.cpython-310.pyc │ ├── _internal │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── _config.cpython-310.pyc │ │ │ ├── _core_metadata.cpython-310.pyc │ │ │ ├── _core_utils.cpython-310.pyc │ │ │ ├── _dataclasses.cpython-310.pyc │ │ │ ├── _decorators.cpython-310.pyc │ │ │ ├── _decorators_v1.cpython-310.pyc │ │ │ ├── _discriminated_union.cpython-310.pyc │ │ │ ├── _docs_extraction.cpython-310.pyc │ │ │ ├── _fields.cpython-310.pyc │ │ │ ├── _forward_ref.cpython-310.pyc │ │ │ ├── _generate_schema.cpython-310.pyc │ │ │ ├── _generics.cpython-310.pyc │ │ │ ├── _git.cpython-310.pyc │ │ │ ├── _internal_dataclass.cpython-310.pyc │ │ │ ├── _known_annotated_metadata.cpython-310.pyc │ │ │ ├── _mock_val_ser.cpython-310.pyc │ │ │ ├── _model_construction.cpython-310.pyc │ │ │ ├── _repr.cpython-310.pyc │ │ │ ├── _schema_generation_shared.cpython-310.pyc │ │ │ ├── _signature.cpython-310.pyc │ │ │ ├── _std_types_schema.cpython-310.pyc │ │ │ ├── _typing_extra.cpython-310.pyc │ │ │ ├── _utils.cpython-310.pyc │ │ │ ├── _validate_call.cpython-310.pyc │ │ │ └── _validators.cpython-310.pyc │ │ ├── _config.py │ │ ├── _core_metadata.py │ │ ├── _core_utils.py │ │ ├── _dataclasses.py │ │ ├── _decorators.py │ │ ├── _decorators_v1.py │ │ ├── _discriminated_union.py │ │ ├── _docs_extraction.py │ │ ├── _fields.py │ │ ├── _forward_ref.py │ │ ├── _generate_schema.py │ │ ├── _generics.py │ │ ├── _git.py │ │ ├── _internal_dataclass.py │ │ ├── _known_annotated_metadata.py │ │ ├── _mock_val_ser.py │ │ ├── _model_construction.py │ │ ├── _repr.py │ │ ├── _schema_generation_shared.py │ │ ├── _signature.py │ │ ├── _std_types_schema.py │ │ ├── _typing_extra.py │ │ ├── _utils.py │ │ ├── _validate_call.py │ │ └── _validators.py │ ├── _migration.py │ ├── alias_generators.py │ ├── aliases.py │ ├── annotated_handlers.py │ ├── class_validators.py │ ├── color.py │ ├── config.py │ ├── dataclasses.py │ ├── datetime_parse.py │ ├── decorator.py │ ├── deprecated │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── class_validators.cpython-310.pyc │ │ │ ├── config.cpython-310.pyc │ │ │ ├── copy_internals.cpython-310.pyc │ │ │ ├── decorator.cpython-310.pyc │ │ │ ├── json.cpython-310.pyc │ │ │ ├── parse.cpython-310.pyc │ │ │ └── tools.cpython-310.pyc │ │ ├── class_validators.py │ │ ├── config.py │ │ ├── copy_internals.py │ │ ├── decorator.py │ │ ├── json.py │ │ ├── parse.py │ │ └── tools.py │ ├── env_settings.py │ ├── error_wrappers.py │ ├── errors.py │ ├── fields.py │ ├── functional_serializers.py │ ├── functional_validators.py │ ├── generics.py │ ├── json.py │ ├── json_schema.py │ ├── main.py │ ├── mypy.py │ ├── networks.py │ ├── parse.py │ ├── plugin │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── _loader.cpython-310.pyc │ │ │ └── _schema_validator.cpython-310.pyc │ │ ├── _loader.py │ │ └── _schema_validator.py │ ├── py.typed │ ├── root_model.py │ ├── schema.py │ ├── tools.py │ ├── type_adapter.py │ ├── types.py │ ├── typing.py │ ├── utils.py │ ├── v1 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── _hypothesis_plugin.cpython-310.pyc │ │ │ ├── annotated_types.cpython-310.pyc │ │ │ ├── class_validators.cpython-310.pyc │ │ │ ├── color.cpython-310.pyc │ │ │ ├── config.cpython-310.pyc │ │ │ ├── dataclasses.cpython-310.pyc │ │ │ ├── datetime_parse.cpython-310.pyc │ │ │ ├── decorator.cpython-310.pyc │ │ │ ├── env_settings.cpython-310.pyc │ │ │ ├── error_wrappers.cpython-310.pyc │ │ │ ├── errors.cpython-310.pyc │ │ │ ├── fields.cpython-310.pyc │ │ │ ├── generics.cpython-310.pyc │ │ │ ├── json.cpython-310.pyc │ │ │ ├── main.cpython-310.pyc │ │ │ ├── mypy.cpython-310.pyc │ │ │ ├── networks.cpython-310.pyc │ │ │ ├── parse.cpython-310.pyc │ │ │ ├── schema.cpython-310.pyc │ │ │ ├── tools.cpython-310.pyc │ │ │ ├── types.cpython-310.pyc │ │ │ ├── typing.cpython-310.pyc │ │ │ ├── utils.cpython-310.pyc │ │ │ ├── v1.cpython-310.pyc │ │ │ ├── validators.cpython-310.pyc │ │ │ └── version.cpython-310.pyc │ │ ├── _hypothesis_plugin.py │ │ ├── annotated_types.py │ │ ├── class_validators.py │ │ ├── color.py │ │ ├── config.py │ │ ├── dataclasses.py │ │ ├── datetime_parse.py │ │ ├── decorator.py │ │ ├── env_settings.py │ │ ├── error_wrappers.py │ │ ├── errors.py │ │ ├── fields.py │ │ ├── generics.py │ │ ├── json.py │ │ ├── main.py │ │ ├── mypy.py │ │ ├── networks.py │ │ ├── parse.py │ │ ├── py.typed │ │ ├── schema.py │ │ ├── tools.py │ │ ├── types.py │ │ ├── typing.py │ │ ├── utils.py │ │ ├── v1.py │ │ ├── validators.py │ │ └── version.py │ ├── validate_call_decorator.py │ ├── validators.py │ ├── version.py │ └── warnings.py │ ├── pydantic_core-2.18.2.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── license_files │ │ └── LICENSE │ ├── pydantic_core │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── core_schema.cpython-310.pyc │ ├── _pydantic_core.cpython-310-x86_64-linux-gnu.so │ ├── _pydantic_core.pyi │ ├── core_schema.py │ └── py.typed │ ├── setuptools-59.6.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── setuptools │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── _deprecation_warning.cpython-310.pyc │ │ ├── _imp.cpython-310.pyc │ │ ├── archive_util.cpython-310.pyc │ │ ├── build_meta.cpython-310.pyc │ │ ├── config.cpython-310.pyc │ │ ├── dep_util.cpython-310.pyc │ │ ├── depends.cpython-310.pyc │ │ ├── dist.cpython-310.pyc │ │ ├── errors.cpython-310.pyc │ │ ├── extension.cpython-310.pyc │ │ ├── glob.cpython-310.pyc │ │ ├── installer.cpython-310.pyc │ │ ├── launch.cpython-310.pyc │ │ ├── monkey.cpython-310.pyc │ │ ├── msvc.cpython-310.pyc │ │ ├── namespaces.cpython-310.pyc │ │ ├── package_index.cpython-310.pyc │ │ ├── py34compat.cpython-310.pyc │ │ ├── sandbox.cpython-310.pyc │ │ ├── unicode_utils.cpython-310.pyc │ │ ├── version.cpython-310.pyc │ │ ├── wheel.cpython-310.pyc │ │ └── windows_support.cpython-310.pyc │ ├── _deprecation_warning.py │ ├── _distutils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── _msvccompiler.cpython-310.pyc │ │ │ ├── archive_util.cpython-310.pyc │ │ │ ├── bcppcompiler.cpython-310.pyc │ │ │ ├── ccompiler.cpython-310.pyc │ │ │ ├── cmd.cpython-310.pyc │ │ │ ├── config.cpython-310.pyc │ │ │ ├── core.cpython-310.pyc │ │ │ ├── cygwinccompiler.cpython-310.pyc │ │ │ ├── debug.cpython-310.pyc │ │ │ ├── dep_util.cpython-310.pyc │ │ │ ├── dir_util.cpython-310.pyc │ │ │ ├── dist.cpython-310.pyc │ │ │ ├── errors.cpython-310.pyc │ │ │ ├── extension.cpython-310.pyc │ │ │ ├── fancy_getopt.cpython-310.pyc │ │ │ ├── file_util.cpython-310.pyc │ │ │ ├── filelist.cpython-310.pyc │ │ │ ├── log.cpython-310.pyc │ │ │ ├── msvc9compiler.cpython-310.pyc │ │ │ ├── msvccompiler.cpython-310.pyc │ │ │ ├── py35compat.cpython-310.pyc │ │ │ ├── py38compat.cpython-310.pyc │ │ │ ├── spawn.cpython-310.pyc │ │ │ ├── sysconfig.cpython-310.pyc │ │ │ ├── text_file.cpython-310.pyc │ │ │ ├── unixccompiler.cpython-310.pyc │ │ │ ├── util.cpython-310.pyc │ │ │ ├── version.cpython-310.pyc │ │ │ └── versionpredicate.cpython-310.pyc │ │ ├── _msvccompiler.py │ │ ├── archive_util.py │ │ ├── bcppcompiler.py │ │ ├── ccompiler.py │ │ ├── cmd.py │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── bdist.cpython-310.pyc │ │ │ │ ├── bdist_dumb.cpython-310.pyc │ │ │ │ ├── bdist_msi.cpython-310.pyc │ │ │ │ ├── bdist_rpm.cpython-310.pyc │ │ │ │ ├── bdist_wininst.cpython-310.pyc │ │ │ │ ├── build.cpython-310.pyc │ │ │ │ ├── build_clib.cpython-310.pyc │ │ │ │ ├── build_ext.cpython-310.pyc │ │ │ │ ├── build_py.cpython-310.pyc │ │ │ │ ├── build_scripts.cpython-310.pyc │ │ │ │ ├── check.cpython-310.pyc │ │ │ │ ├── clean.cpython-310.pyc │ │ │ │ ├── config.cpython-310.pyc │ │ │ │ ├── install.cpython-310.pyc │ │ │ │ ├── install_data.cpython-310.pyc │ │ │ │ ├── install_egg_info.cpython-310.pyc │ │ │ │ ├── install_headers.cpython-310.pyc │ │ │ │ ├── install_lib.cpython-310.pyc │ │ │ │ ├── install_scripts.cpython-310.pyc │ │ │ │ ├── py37compat.cpython-310.pyc │ │ │ │ ├── register.cpython-310.pyc │ │ │ │ ├── sdist.cpython-310.pyc │ │ │ │ └── upload.cpython-310.pyc │ │ │ ├── bdist.py │ │ │ ├── bdist_dumb.py │ │ │ ├── bdist_msi.py │ │ │ ├── bdist_rpm.py │ │ │ ├── bdist_wininst.py │ │ │ ├── build.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── build_scripts.py │ │ │ ├── check.py │ │ │ ├── clean.py │ │ │ ├── config.py │ │ │ ├── install.py │ │ │ ├── install_data.py │ │ │ ├── install_egg_info.py │ │ │ ├── install_headers.py │ │ │ ├── install_lib.py │ │ │ ├── install_scripts.py │ │ │ ├── py37compat.py │ │ │ ├── register.py │ │ │ ├── sdist.py │ │ │ └── upload.py │ │ ├── config.py │ │ ├── core.py │ │ ├── cygwinccompiler.py │ │ ├── debug.py │ │ ├── dep_util.py │ │ ├── dir_util.py │ │ ├── dist.py │ │ ├── errors.py │ │ ├── extension.py │ │ ├── fancy_getopt.py │ │ ├── file_util.py │ │ ├── filelist.py │ │ ├── log.py │ │ ├── msvc9compiler.py │ │ ├── msvccompiler.py │ │ ├── py35compat.py │ │ ├── py38compat.py │ │ ├── spawn.py │ │ ├── sysconfig.py │ │ ├── text_file.py │ │ ├── unixccompiler.py │ │ ├── util.py │ │ ├── version.py │ │ └── versionpredicate.py │ ├── _imp.py │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── ordered_set.cpython-310.pyc │ │ │ └── pyparsing.cpython-310.pyc │ │ ├── more_itertools │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── more.cpython-310.pyc │ │ │ │ └── recipes.cpython-310.pyc │ │ │ ├── more.py │ │ │ └── recipes.py │ │ ├── ordered_set.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-310.pyc │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── _manylinux.cpython-310.pyc │ │ │ │ ├── _musllinux.cpython-310.pyc │ │ │ │ ├── _structures.cpython-310.pyc │ │ │ │ ├── markers.cpython-310.pyc │ │ │ │ ├── requirements.cpython-310.pyc │ │ │ │ ├── specifiers.cpython-310.pyc │ │ │ │ ├── tags.cpython-310.pyc │ │ │ │ ├── utils.cpython-310.pyc │ │ │ │ └── version.cpython-310.pyc │ │ │ ├── _manylinux.py │ │ │ ├── _musllinux.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ └── pyparsing.py │ ├── archive_util.py │ ├── build_meta.py │ ├── cli-32.exe │ ├── cli-64.exe │ ├── cli-arm64.exe │ ├── cli.exe │ ├── command │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── alias.cpython-310.pyc │ │ │ ├── bdist_egg.cpython-310.pyc │ │ │ ├── bdist_rpm.cpython-310.pyc │ │ │ ├── build_clib.cpython-310.pyc │ │ │ ├── build_ext.cpython-310.pyc │ │ │ ├── build_py.cpython-310.pyc │ │ │ ├── develop.cpython-310.pyc │ │ │ ├── dist_info.cpython-310.pyc │ │ │ ├── easy_install.cpython-310.pyc │ │ │ ├── egg_info.cpython-310.pyc │ │ │ ├── install.cpython-310.pyc │ │ │ ├── install_egg_info.cpython-310.pyc │ │ │ ├── install_lib.cpython-310.pyc │ │ │ ├── install_scripts.cpython-310.pyc │ │ │ ├── py36compat.cpython-310.pyc │ │ │ ├── register.cpython-310.pyc │ │ │ ├── rotate.cpython-310.pyc │ │ │ ├── saveopts.cpython-310.pyc │ │ │ ├── sdist.cpython-310.pyc │ │ │ ├── setopt.cpython-310.pyc │ │ │ ├── test.cpython-310.pyc │ │ │ ├── upload.cpython-310.pyc │ │ │ └── upload_docs.cpython-310.pyc │ │ ├── alias.py │ │ ├── bdist_egg.py │ │ ├── bdist_rpm.py │ │ ├── build_clib.py │ │ ├── build_ext.py │ │ ├── build_py.py │ │ ├── develop.py │ │ ├── dist_info.py │ │ ├── easy_install.py │ │ ├── egg_info.py │ │ ├── install.py │ │ ├── install_egg_info.py │ │ ├── install_lib.py │ │ ├── install_scripts.py │ │ ├── launcher manifest.xml │ │ ├── py36compat.py │ │ ├── register.py │ │ ├── rotate.py │ │ ├── saveopts.py │ │ ├── sdist.py │ │ ├── setopt.py │ │ ├── test.py │ │ ├── upload.py │ │ └── upload_docs.py │ ├── config.py │ ├── dep_util.py │ ├── depends.py │ ├── dist.py │ ├── errors.py │ ├── extension.py │ ├── extern │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-310.pyc │ ├── glob.py │ ├── gui-32.exe │ ├── gui-64.exe │ ├── gui-arm64.exe │ ├── gui.exe │ ├── installer.py │ ├── launch.py │ ├── monkey.py │ ├── msvc.py │ ├── namespaces.py │ ├── package_index.py │ ├── py34compat.py │ ├── sandbox.py │ ├── script (dev).tmpl │ ├── script.tmpl │ ├── unicode_utils.py │ ├── version.py │ ├── wheel.py │ └── windows_support.py │ ├── sniffio-1.3.1.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── LICENSE.APACHE2 │ ├── LICENSE.MIT │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── sniffio │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── _impl.cpython-310.pyc │ │ └── _version.cpython-310.pyc │ ├── _impl.py │ ├── _tests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ └── test_sniffio.cpython-310.pyc │ │ └── test_sniffio.py │ ├── _version.py │ └── py.typed │ ├── starlette-0.37.2.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── licenses │ │ └── LICENSE.md │ ├── starlette │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── _compat.cpython-310.pyc │ │ ├── _exception_handler.cpython-310.pyc │ │ ├── _utils.cpython-310.pyc │ │ ├── applications.cpython-310.pyc │ │ ├── authentication.cpython-310.pyc │ │ ├── background.cpython-310.pyc │ │ ├── concurrency.cpython-310.pyc │ │ ├── config.cpython-310.pyc │ │ ├── convertors.cpython-310.pyc │ │ ├── datastructures.cpython-310.pyc │ │ ├── endpoints.cpython-310.pyc │ │ ├── exceptions.cpython-310.pyc │ │ ├── formparsers.cpython-310.pyc │ │ ├── requests.cpython-310.pyc │ │ ├── responses.cpython-310.pyc │ │ ├── routing.cpython-310.pyc │ │ ├── schemas.cpython-310.pyc │ │ ├── staticfiles.cpython-310.pyc │ │ ├── status.cpython-310.pyc │ │ ├── templating.cpython-310.pyc │ │ ├── testclient.cpython-310.pyc │ │ ├── types.cpython-310.pyc │ │ └── websockets.cpython-310.pyc │ ├── _compat.py │ ├── _exception_handler.py │ ├── _utils.py │ ├── applications.py │ ├── authentication.py │ ├── background.py │ ├── concurrency.py │ ├── config.py │ ├── convertors.py │ ├── datastructures.py │ ├── endpoints.py │ ├── exceptions.py │ ├── formparsers.py │ ├── middleware │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── authentication.cpython-310.pyc │ │ │ ├── base.cpython-310.pyc │ │ │ ├── cors.cpython-310.pyc │ │ │ ├── errors.cpython-310.pyc │ │ │ ├── exceptions.cpython-310.pyc │ │ │ ├── gzip.cpython-310.pyc │ │ │ ├── httpsredirect.cpython-310.pyc │ │ │ ├── sessions.cpython-310.pyc │ │ │ ├── trustedhost.cpython-310.pyc │ │ │ └── wsgi.cpython-310.pyc │ │ ├── authentication.py │ │ ├── base.py │ │ ├── cors.py │ │ ├── errors.py │ │ ├── exceptions.py │ │ ├── gzip.py │ │ ├── httpsredirect.py │ │ ├── sessions.py │ │ ├── trustedhost.py │ │ └── wsgi.py │ ├── py.typed │ ├── requests.py │ ├── responses.py │ ├── routing.py │ ├── schemas.py │ ├── staticfiles.py │ ├── status.py │ ├── templating.py │ ├── testclient.py │ ├── types.py │ └── websockets.py │ ├── typing_extensions-4.11.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ └── WHEEL │ ├── typing_extensions.py │ ├── uvicorn-0.29.0.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── licenses │ │ └── LICENSE.md │ └── uvicorn │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── __main__.cpython-310.pyc │ ├── _subprocess.cpython-310.pyc │ ├── _types.cpython-310.pyc │ ├── config.cpython-310.pyc │ ├── importer.cpython-310.pyc │ ├── logging.cpython-310.pyc │ ├── main.cpython-310.pyc │ ├── server.cpython-310.pyc │ └── workers.cpython-310.pyc │ ├── _subprocess.py │ ├── _types.py │ ├── config.py │ ├── importer.py │ ├── lifespan │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── off.cpython-310.pyc │ │ └── on.cpython-310.pyc │ ├── off.py │ └── on.py │ ├── logging.py │ ├── loops │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── asyncio.cpython-310.pyc │ │ ├── auto.cpython-310.pyc │ │ └── uvloop.cpython-310.pyc │ ├── asyncio.py │ ├── auto.py │ └── uvloop.py │ ├── main.py │ ├── middleware │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── asgi2.cpython-310.pyc │ │ ├── message_logger.cpython-310.pyc │ │ ├── proxy_headers.cpython-310.pyc │ │ └── wsgi.cpython-310.pyc │ ├── asgi2.py │ ├── message_logger.py │ ├── proxy_headers.py │ └── wsgi.py │ ├── protocols │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── utils.cpython-310.pyc │ ├── http │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── auto.cpython-310.pyc │ │ │ ├── flow_control.cpython-310.pyc │ │ │ ├── h11_impl.cpython-310.pyc │ │ │ └── httptools_impl.cpython-310.pyc │ │ ├── auto.py │ │ ├── flow_control.py │ │ ├── h11_impl.py │ │ └── httptools_impl.py │ ├── utils.py │ └── websockets │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── auto.cpython-310.pyc │ │ ├── websockets_impl.cpython-310.pyc │ │ └── wsproto_impl.cpython-310.pyc │ │ ├── auto.py │ │ ├── websockets_impl.py │ │ └── wsproto_impl.py │ ├── py.typed │ ├── server.py │ ├── supervisors │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── basereload.cpython-310.pyc │ │ ├── multiprocess.cpython-310.pyc │ │ ├── statreload.cpython-310.pyc │ │ ├── watchfilesreload.cpython-310.pyc │ │ └── watchgodreload.cpython-310.pyc │ ├── basereload.py │ ├── multiprocess.py │ ├── statreload.py │ ├── watchfilesreload.py │ └── watchgodreload.py │ └── workers.py ├── lib64 └── pyvenv.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.analysis.autoImportCompletions": true 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/README.md -------------------------------------------------------------------------------- /backup/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/backup/chatbot.py -------------------------------------------------------------------------------- /backup/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/backup/intents.json -------------------------------------------------------------------------------- /backup/intents_back_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/backup/intents_back_1.json -------------------------------------------------------------------------------- /backup/intents_backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/backup/intents_backup.json -------------------------------------------------------------------------------- /backup/intents_neuralnine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/backup/intents_neuralnine.json -------------------------------------------------------------------------------- /backup/ipynb_files/chatbot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/backup/ipynb_files/chatbot.ipynb -------------------------------------------------------------------------------- /backup/ipynb_files/training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/backup/ipynb_files/training.ipynb -------------------------------------------------------------------------------- /backup/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/backup/training.py -------------------------------------------------------------------------------- /chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/chatbot.py -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/database.py -------------------------------------------------------------------------------- /generated/chatbotmodel.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/generated/chatbotmodel.keras -------------------------------------------------------------------------------- /generated/classes.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/generated/classes.pkl -------------------------------------------------------------------------------- /generated/words.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/generated/words.pkl -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/models.py -------------------------------------------------------------------------------- /repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/repository.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/intents origin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/resources/intents origin.json -------------------------------------------------------------------------------- /resources/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/resources/intents.json -------------------------------------------------------------------------------- /routes/admin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/routes/admin_api.py -------------------------------------------------------------------------------- /routes/chatbot_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/routes/chatbot_api.py -------------------------------------------------------------------------------- /schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/schemas.py -------------------------------------------------------------------------------- /training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/training.py -------------------------------------------------------------------------------- /venv/bin/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/bin/Activate.ps1 -------------------------------------------------------------------------------- /venv/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/bin/activate -------------------------------------------------------------------------------- /venv/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/bin/activate.csh -------------------------------------------------------------------------------- /venv/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/bin/activate.fish -------------------------------------------------------------------------------- /venv/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/bin/pip -------------------------------------------------------------------------------- /venv/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/bin/pip3 -------------------------------------------------------------------------------- /venv/bin/pip3.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/bin/pip3.10 -------------------------------------------------------------------------------- /venv/bin/python: -------------------------------------------------------------------------------- 1 | python3 -------------------------------------------------------------------------------- /venv/bin/python3: -------------------------------------------------------------------------------- 1 | /usr/bin/python3 -------------------------------------------------------------------------------- /venv/bin/python3.10: -------------------------------------------------------------------------------- 1 | python3 -------------------------------------------------------------------------------- /venv/bin/uvicorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/bin/uvicorn -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/_distutils_hack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/_distutils_hack/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/annotated_types-0.6.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/annotated_types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/annotated_types/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/annotated_types/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/annotated_types/test_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/annotated_types/test_cases.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio-4.3.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio-4.3.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio-4.3.0.dist-info/LICENSE -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio-4.3.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio-4.3.0.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio-4.3.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio-4.3.0.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio-4.3.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.42.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio-4.3.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | anyio 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/_backends/_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/_backends/_asyncio.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/_backends/_trio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/_backends/_trio.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/_core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/_core/_eventloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/_core/_eventloop.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/_core/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/_core/_exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/_core/_fileio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/_core/_fileio.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/_core/_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/_core/_resources.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/_core/_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/_core/_signals.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/_core/_sockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/_core/_sockets.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/_core/_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/_core/_streams.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/_core/_subprocesses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/_core/_subprocesses.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/_core/_synchronization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/_core/_synchronization.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/_core/_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/_core/_tasks.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/_core/_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/_core/_testing.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/_core/_typedattr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/_core/_typedattr.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/abc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/abc/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/abc/_eventloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/abc/_eventloop.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/abc/_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/abc/_resources.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/abc/_sockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/abc/_sockets.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/abc/_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/abc/_streams.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/abc/_subprocesses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/abc/_subprocesses.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/abc/_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/abc/_tasks.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/abc/_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/abc/_testing.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/from_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/from_thread.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/lowlevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/lowlevel.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/pytest_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/pytest_plugin.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/streams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/streams/buffered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/streams/buffered.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/streams/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/streams/file.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/streams/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/streams/memory.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/streams/stapled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/streams/stapled.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/streams/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/streams/text.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/streams/tls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/streams/tls.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/to_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/to_process.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/anyio/to_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/anyio/to_thread.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click-8.1.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click-8.1.7.dist-info/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/LICENSE.rst -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click-8.1.7.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click-8.1.7.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click-8.1.7.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click-8.1.7.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.41.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click-8.1.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click/_compat.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/_termui_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click/_termui_impl.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/_textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click/_textwrap.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/_winconsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click/_winconsole.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click/core.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click/decorators.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click/formatting.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click/globals.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click/parser.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/shell_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click/shell_completion.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click/termui.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click/testing.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click/types.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/click/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/distutils-precedence.pth -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/exceptiongroup-1.2.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/exceptiongroup-1.2.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/exceptiongroup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/exceptiongroup/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/exceptiongroup/_catch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/exceptiongroup/_catch.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/exceptiongroup/_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/exceptiongroup/_exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/exceptiongroup/_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/exceptiongroup/_formatting.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/exceptiongroup/_suppress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/exceptiongroup/_suppress.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/exceptiongroup/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/exceptiongroup/_version.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/exceptiongroup/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi-0.110.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi-0.110.3.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi-0.110.3.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi-0.110.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi-0.110.3.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi-0.110.3.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/_compat.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/applications.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/background.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/concurrency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/concurrency.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/datastructures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/datastructures.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/dependencies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/dependencies/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/dependencies/models.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/dependencies/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/dependencies/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/encoders.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/exception_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/exception_handlers.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/logger.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/middleware/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/middleware/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/middleware/cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/middleware/cors.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/middleware/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/middleware/gzip.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/middleware/trustedhost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/middleware/trustedhost.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/middleware/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/middleware/wsgi.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/openapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/openapi/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/openapi/constants.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/openapi/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/openapi/docs.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/openapi/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/openapi/models.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/openapi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/openapi/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/param_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/param_functions.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/params.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/requests.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/responses.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/routing.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/security/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/security/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/security/api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/security/api_key.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/security/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/security/base.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/security/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/security/http.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/security/oauth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/security/oauth2.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/security/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/security/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/staticfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/staticfiles.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/templating.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/testclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/testclient.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/types.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/fastapi/websockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/fastapi/websockets.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11-0.14.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11-0.14.0.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11-0.14.0.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11-0.14.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11-0.14.0.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11-0.14.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11-0.14.0.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11-0.14.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11-0.14.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | h11 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/_abnf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/_abnf.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/_connection.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/_events.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/_headers.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/_readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/_readers.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/_receivebuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/_receivebuffer.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/_state.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/_util.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/_version.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/_writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/_writers.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/py.typed: -------------------------------------------------------------------------------- 1 | Marker 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/tests/data/test-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/tests/data/test-file -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/tests/helpers.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/tests/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/tests/test_connection.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/tests/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/tests/test_events.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/tests/test_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/tests/test_headers.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/tests/test_helpers.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/tests/test_io.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/tests/test_receivebuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/tests/test_receivebuffer.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/tests/test_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/tests/test_state.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/h11/tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/h11/tests/test_util.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/idna-3.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/idna-3.7.dist-info/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/idna-3.7.dist-info/LICENSE.md -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/idna-3.7.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/idna-3.7.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/idna-3.7.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/idna-3.7.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/idna-3.7.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/idna/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/idna/codec.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/idna/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/idna/core.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/idna/idnadata.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/idna/intranges.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.7' 2 | 3 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/idna/uts46data.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip-22.0.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/build_env.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/cli/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/cli/base_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/cli/base_command.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/cli/main.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/cli/req_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/cli/req_command.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/cli/spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/cli/spinners.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/commands/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/commands/cache.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/commands/check.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/commands/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/commands/debug.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/commands/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/commands/freeze.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/commands/hash.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/commands/help.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/commands/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/commands/index.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/commands/install.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/commands/list.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/commands/search.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/commands/show.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/commands/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/configuration.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/index/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/index/collector.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/index/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/index/sources.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/locations/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/locations/base.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/metadata/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/metadata/base.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/models/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/models/candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/models/candidate.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/models/index.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/models/link.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/models/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/models/scheme.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/models/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/models/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/network/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/network/auth.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/network/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/network/cache.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/network/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/network/download.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/network/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/network/session.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/network/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/operations/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/operations/check.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/req/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/req/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/req/constructors.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/req/req_file.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/req/req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/req/req_install.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/req/req_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/req/req_tracker.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/resolution/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/resolution/base.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/_log.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/datetime.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/encoding.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/hashes.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/logging.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/models.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/packaging.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/urls.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/utils/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/utils/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_internal/wheel_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_internal/wheel_builder.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2021.10.08" 4 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/certifi/cacert.pem -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/chardet/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/chardet/big5freq.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/chardet/big5prober.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/chardet/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/chardet/enums.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/chardet/escprober.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/chardet/escsm.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/chardet/euckrfreq.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/chardet/jisfreq.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/chardet/jpcntx.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/chardet/mbcssm.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/chardet/version.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/colorama/ansi.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/colorama/win32.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/colorama/winterm.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/distlib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/distlib/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/distlib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/distlib/database.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/distlib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/distlib/index.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/distlib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/distlib/locators.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/distlib/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/distlib/manifest.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/distlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/distlib/markers.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/distlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/distlib/metadata.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/distlib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/distlib/version.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/distlib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/distlib/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/distro.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/html5lib/_utils.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/idna/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/idna/intranges.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.3' 2 | 3 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/idna/uts46data.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/msgpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 3) 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/msgpack/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/msgpack/fallback.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pep517/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pep517/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pep517/build.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pep517/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pep517/check.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pep517/colorlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pep517/colorlog.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pep517/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pep517/dirtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pep517/dirtools.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pep517/envbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pep517/envbuild.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pep517/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pep517/meta.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pep517/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pep517/wrappers.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/platformdirs/api.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/progress/bar.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/progress/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/progress/colors.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/progress/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/progress/counter.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/progress/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/progress/spinner.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pygments/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pygments/cmdline.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pygments/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pygments/console.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pygments/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pygments/filter.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pygments/lexer.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pygments/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pygments/plugin.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pygments/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pygments/scanner.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pygments/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pygments/style.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pygments/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pygments/token.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pygments/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pygments/util.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/common.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/core.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/pyparsing/util.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/requests/certs.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/requests/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/requests/cookies.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/requests/help.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/requests/hooks.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/requests/models.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/requests/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/_extension.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/_log_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/_log_render.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/_loop.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/_lru_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/_lru_cache.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/_palettes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/_palettes.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/_pick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/_pick.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/_ratio.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/_spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/_spinners.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/_stack.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/_timer.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/_windows.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/abc.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/align.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/ansi.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/bar.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/box.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/cells.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/color.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/columns.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/console.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/constrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/constrain.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/containers.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/control.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/emoji.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/errors.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/file_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/file_proxy.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/filesize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/filesize.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/highlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/highlighter.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/json.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/jupyter.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/layout.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/live.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/live_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/live_render.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/logging.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/markup.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/measure.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/padding.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/pager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/pager.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/palette.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/panel.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/pretty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/pretty.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/progress.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/prompt.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/protocol.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/region.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/repr.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/rule.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/scope.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/screen.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/segment.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/spinner.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/status.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/style.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/styled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/styled.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/syntax.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/table.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/tabulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/tabulate.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/text.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/theme.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/themes.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/traceback.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/rich/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/rich/tree.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/tenacity/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/_utils.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/tenacity/after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/after.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/tenacity/before.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/before.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/tenacity/nap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/nap.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/tenacity/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/retry.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/tenacity/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/stop.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/tenacity/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/tenacity/wait.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/tomli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/tomli/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/tomli/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/tomli/_parser.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/tomli/_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/tomli/_re.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.8" 3 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/fields.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/filepost.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/request.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/response.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/url.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pip/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pip/py.typed -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pkg_resources/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic-2.7.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic-2.7.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic-2.7.1.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic-2.7.1.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic-2.7.1.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/_internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/_internal/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/_internal/_config.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/_internal/_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/_internal/_fields.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/_internal/_generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/_internal/_generics.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/_internal/_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/_internal/_git.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/_internal/_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/_internal/_repr.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/_internal/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/_internal/_utils.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/_migration.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/alias_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/alias_generators.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/aliases.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/annotated_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/annotated_handlers.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/class_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/class_validators.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/color.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/config.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/dataclasses.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/datetime_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/datetime_parse.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/decorator.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/deprecated/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/deprecated/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/deprecated/config.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/deprecated/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/deprecated/json.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/deprecated/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/deprecated/parse.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/deprecated/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/deprecated/tools.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/env_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/env_settings.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/error_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/error_wrappers.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/errors.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/fields.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/generics.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/json.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/json_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/json_schema.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/main.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/mypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/mypy.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/networks.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/parse.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/plugin/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/plugin/_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/plugin/_loader.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/root_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/root_model.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/schema.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/tools.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/type_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/type_adapter.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/types.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/typing.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/annotated_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/annotated_types.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/class_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/class_validators.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/color.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/config.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/dataclasses.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/datetime_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/datetime_parse.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/decorator.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/env_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/env_settings.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/error_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/error_wrappers.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/errors.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/fields.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/generics.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/json.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/main.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/mypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/mypy.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/networks.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/parse.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/schema.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/tools.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/types.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/typing.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/v1.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/validators.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/v1/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/v1/version.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/validators.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/version.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic/warnings.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic_core-2.18.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic_core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic_core/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic_core/core_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/pydantic_core/core_schema.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/pydantic_core/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/_distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/_distutils/cmd.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/_distutils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/_distutils/config.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/_distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/_distutils/core.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/_distutils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/_distutils/debug.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/_distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/_distutils/dist.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/_distutils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/_distutils/errors.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/_distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/_distutils/log.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/_distutils/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/_distutils/spawn.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/_distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/_distutils/util.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/archive_util.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/cli-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/cli-arm64.exe -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/alias.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/bdist_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/bdist_egg.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/bdist_rpm.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/build_ext.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/build_py.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/develop.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/dist_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/dist_info.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/egg_info.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/install.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/register.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/rotate.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/saveopts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/saveopts.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/sdist.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/setopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/setopt.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/test.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/command/upload.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/extern/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/gui-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/gui-arm64.exe -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/installer.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/package_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/package_index.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/py34compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/py34compat.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/script (dev).tmpl -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/unicode_utils.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/setuptools/windows_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/setuptools/windows_support.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/sniffio-1.3.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/sniffio-1.3.1.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/sniffio-1.3.1.dist-info/LICENSE -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/sniffio-1.3.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/sniffio-1.3.1.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/sniffio-1.3.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.42.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/sniffio-1.3.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sniffio 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/sniffio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/sniffio/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/sniffio/_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/sniffio/_impl.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/sniffio/_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/sniffio/_tests/test_sniffio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/sniffio/_tests/test_sniffio.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/sniffio/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/sniffio/_version.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/sniffio/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette-0.37.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.37.2" 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/_compat.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/_exception_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/_exception_handler.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/_utils.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/applications.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/authentication.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/background.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/concurrency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/concurrency.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/config.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/convertors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/convertors.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/datastructures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/datastructures.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/endpoints.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/formparsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/formparsers.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/middleware/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/middleware/base.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/middleware/cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/middleware/cors.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/middleware/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/middleware/errors.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/middleware/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/middleware/gzip.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/middleware/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/middleware/wsgi.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/requests.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/responses.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/routing.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/schemas.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/staticfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/staticfiles.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/status.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/templating.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/testclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/testclient.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/types.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/starlette/websockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/starlette/websockets.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/typing_extensions-4.11.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/typing_extensions-4.11.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: flit 3.9.0 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/typing_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/typing_extensions.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn-0.29.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn-0.29.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn-0.29.0.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn-0.29.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn-0.29.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn-0.29.0.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/_subprocess.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/_types.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/config.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/importer.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/lifespan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/lifespan/off.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/lifespan/off.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/lifespan/on.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/lifespan/on.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/logging.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/loops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/loops/asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/loops/asyncio.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/loops/auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/loops/auto.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/loops/uvloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/loops/uvloop.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/main.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/middleware/asgi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/middleware/asgi2.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/middleware/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/middleware/wsgi.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/protocols/http/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/protocols/http/auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/protocols/http/auto.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/protocols/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/protocols/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/protocols/websockets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/py.typed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/server.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/supervisors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/supervisors/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.10/site-packages/uvicorn/workers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/lib/python3.10/site-packages/uvicorn/workers.py -------------------------------------------------------------------------------- /venv/lib64: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anuradha151/chatbot-trained-neural-network/HEAD/venv/pyvenv.cfg --------------------------------------------------------------------------------