Skip to content

Commit

Permalink
fuzz
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Cole <[email protected]>
  • Loading branch information
codefromthecrypt committed Nov 15, 2024
1 parent 611ce5c commit 42a8390
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- Add example to `opentelemetry-instrumentation-openai-v2`
([#0000](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/0000))
([#3006](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3006))
- `opentelemetry-instrumentation-sqlalchemy` Update unit tests to run with SQLALchemy 2
([#2976](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/2976))
- Add `opentelemetry-instrumentation-openai-v2` to `opentelemetry-bootstrap`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ def main():
},
]
model = os.getenv("CHAT_MODEL", "gpt-4o-mini")
chat_completion = client.chat.completions.create(model=model, messages=messages)
chat_completion = client.chat.completions.create(
model=model, messages=messages
)
print(chat_completion.choices[0].message.content)


Expand Down

0 comments on commit 42a8390

Please sign in to comment.