Coverage for /home/admin/Documents/AI/applications/lexigram-dev/lexigram/experimental/ai/lexigram-ai-relay/src/lexigram/ai/relay/mappers/openai_chat/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.15.4, created at 2026-08-25 07:19 +0800

1"""OpenAI Chat Completions mapper package. 

2 

3Public API: :class:`OpenAIChatMapper`. Implementation is split by 

4conversion direction across :mod:`mapper` (public class composing the 

5mixins), :mod:`wire_to_ir`, :mod:`ir_to_wire`, and :mod:`_helpers`. 

6""" 

7 

8from __future__ import annotations 

9 

10from lexigram.ai.relay.mappers.openai_chat.mapper import OpenAIChatMapper 

11 

12__all__ = ["OpenAIChatMapper"]