mirror of https://github.com/locustio/locust.git
update changelog for 2.36.0
This commit is contained in:
parent
f0f6a75017
commit
abce960c54
|
@ -4,6 +4,13 @@ Changelog Highlights
|
|||
|
||||
For full details of changes, please see https://github.com/locustio/locust/releases or https://github.com/locustio/locust/blob/master/CHANGELOG.md
|
||||
|
||||
2.36.0
|
||||
======
|
||||
* Add locust-cloud as a dependency, so you can now run it using ``locust --cloud`` https://github.com/locustio/locust/pull/3097
|
||||
* Various minor UI fixes & changes to build process https://github.com/locustio/locust/pull/3104, https://github.com/locustio/locust/pull/3107, https://github.com/locustio/locust/pull/3116
|
||||
* Refactorings in main() https://github.com/locustio/locust/pull/3101, https://github.com/locustio/locust/pull/3102
|
||||
* Narrow gevent version requirements to avoid incompatible new version for now https://github.com/locustio/locust/pull/3112
|
||||
|
||||
2.35.0
|
||||
======
|
||||
* Add profile argument and display in html report https://github.com/locustio/locust/pull/3093
|
||||
|
|
|
@ -16,6 +16,8 @@ class MyUser(OpenAIUser):
|
|||
instructions="You are a coding assistant that speaks like it were a Monty Python skit.",
|
||||
input="How do I check if a Python object is an instance of a class?",
|
||||
)
|
||||
# print(response.output_text)
|
||||
|
||||
with self.client.rename_request("mini"): # here's how to rename requests
|
||||
self.client.responses.create(
|
||||
model="gpt-4o-mini",
|
||||
|
|
Loading…
Reference in New Issue