
Security News
Potemkin Understanding in LLMs: New Study Reveals Flaws in AI Benchmarks
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Tested with kong v3.8
To install the package
pip install aio-kong
To run tests, clone the repository and
make install
make test
:warning: If you don't have Kong or postgres running locally, run the services first
make services
test certificates were generated using the command
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -nodes -subj '/CN=localhost'
The client can be imported via
from kong.client import Kong
In a coroutine:
async with Kong() as cli:
services = await cli.services.get_list()
print(json.dumps([s.data for s in services], indent=2))
By default the url is obtained from the "KONG_ADMIN_URL" environment variable which defaults to http://127.0.0.1:8001.
The client has handlers for all Kong objects
cli.acls
To list all ACLsThe client allow to apply a configuration object to kong:
await cli.apply_json(config)
The library can install the kongfig
command line tool for uploading kong configuration files.
For the command line tool to work, you need to install the package as:
pip install aio-kong[cli]
and to run the cli tool, you can use the following command:
kongfig --help
The client uses the following environment variables:
KONG_ADMIN_URL
: The URL of the Kong admin API. Defaults to http://127.0.0.1:8001
.KONG_ADMIN_SSL
: Whether to use SSL validation for the Kong admin API. Defaults to true
.FAQs
Asynchronous Kong Client
We found that aio-kong demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.