Skip to content

Commit b23dfcd

Browse files
Update with Adrian's comments
Co-authored-by: Adrian Cole <[email protected]>
1 parent 7b33adf commit b23dfcd

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Added
1515

16-
- `opentelemetry-instrumentation-openai-v2` Update doc for OpenAI Instrumentation to support DeepSeek
16+
- `opentelemetry-instrumentation-openai-v2` Update doc for OpenAI Instrumentation to support OpenAI Compatible Platforms
1717
([#3279](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3279))
1818
- `opentelemetry-instrumentation-botocore` Add support for GenAI user events and lazy initialize tracer
1919
([#3258](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3258))

instrumentation-genai/opentelemetry-instrumentation-openai-v2/README.rst

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,19 @@ This library allows tracing LLM requests and logging of messages made by the
1010
`OpenAI Python API library <https://pypi.org/project/openai/>`_. It also captures
1111
the duration of the operations and the number of tokens used as metrics.
1212

13-
This instrumentation also works with OpenAI compatible platforms include the following:
14-
15-
- DeepSeek
16-
- Azure OpenAI
13+
Many LLM platforms support the OpenAI SDK. This means systems such as the following are observable with this instrumentation when accessed using it:
14+
15+
+---------------------------------------------------------------------------------------------------+----------------+
16+
| Name | gen_ai.system |
17+
+---------------------------------------------------------------------------------------------------+----------------+
18+
| `Azure OpenAI <https://github.com/openai/openai-python?tab=readme-ov-file#microsoft-azure-openai>`_ | `az.ai.openai` |
19+
| `Gemini <https://developers.googleblog.com/en/gemini-is-now-accessible-from-the-openai-library/>`_ | `gemini` |
20+
| `Perplexity <https://docs.perplexity.ai/api-reference/chat-completions>`_ | `perplexity` |
21+
| `xAI <https://x.ai/api>`_ (note: they also say they are compatible with Anthropic!) | `xai` |
22+
| `DeepSeek <https://api-docs.deepseek.com/zh-cn/>`_ | `deepseek` |
23+
| `Groq <https://console.groq.com/docs/openai>`_ | `groq` |
24+
| `MistralAI <https://docs.mistral.ai/api/>`_ | `mistral_ai` |
25+
+---------------------------------------------------------------------------------------------------+----------------+
1726

1827
Installation
1928
------------

0 commit comments

Comments
 (0)