genai-otel-instrument 0.1.1.dev0__py3-none-any.whl → 0.1.4.dev0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of genai-otel-instrument might be problematic. Click here for more details.
- genai_otel/__version__.py +2 -2
- genai_otel/auto_instrument.py +18 -1
- genai_otel/config.py +3 -0
- genai_otel/cost_calculator.py +136 -11
- genai_otel/cost_enrichment_processor.py +177 -0
- genai_otel/gpu_metrics.py +34 -0
- genai_otel/instrumentors/base.py +74 -42
- genai_otel/instrumentors/cohere_instrumentor.py +80 -16
- genai_otel/instrumentors/huggingface_instrumentor.py +138 -13
- genai_otel/instrumentors/mistralai_instrumentor.py +249 -37
- genai_otel/instrumentors/ollama_instrumentor.py +104 -35
- genai_otel/instrumentors/replicate_instrumentor.py +59 -14
- genai_otel/instrumentors/togetherai_instrumentor.py +120 -16
- genai_otel/instrumentors/vertexai_instrumentor.py +79 -15
- genai_otel/llm_pricing.json +866 -586
- {genai_otel_instrument-0.1.1.dev0.dist-info → genai_otel_instrument-0.1.4.dev0.dist-info}/METADATA +230 -10
- {genai_otel_instrument-0.1.1.dev0.dist-info → genai_otel_instrument-0.1.4.dev0.dist-info}/RECORD +21 -20
- {genai_otel_instrument-0.1.1.dev0.dist-info → genai_otel_instrument-0.1.4.dev0.dist-info}/WHEEL +0 -0
- {genai_otel_instrument-0.1.1.dev0.dist-info → genai_otel_instrument-0.1.4.dev0.dist-info}/entry_points.txt +0 -0
- {genai_otel_instrument-0.1.1.dev0.dist-info → genai_otel_instrument-0.1.4.dev0.dist-info}/licenses/LICENSE +0 -0
- {genai_otel_instrument-0.1.1.dev0.dist-info → genai_otel_instrument-0.1.4.dev0.dist-info}/top_level.txt +0 -0
{genai_otel_instrument-0.1.1.dev0.dist-info → genai_otel_instrument-0.1.4.dev0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: genai-otel-instrument
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4.dev0
|
|
4
4
|
Summary: Comprehensive OpenTelemetry auto-instrumentation for LLM/GenAI applications
|
|
5
5
|
Author-email: Kshitij Thakkar <kshitijthakkar@rocketmail.com>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -180,6 +180,26 @@ Dynamic: license-file
|
|
|
180
180
|
|
|
181
181
|
# GenAI OpenTelemetry Auto-Instrumentation
|
|
182
182
|
|
|
183
|
+
[](https://badge.fury.io/py/genai-otel-instrument)
|
|
184
|
+
[](https://pypi.org/project/genai-otel-instrument/)
|
|
185
|
+
[](https://opensource.org/licenses/Apache-2.0)
|
|
186
|
+
[](https://pepy.tech/project/genai-otel-instrument)
|
|
187
|
+
[](https://pepy.tech/project/genai-otel-instrument)
|
|
188
|
+
|
|
189
|
+
[](https://github.com/Mandark-droid/genai_otel_instrument)
|
|
190
|
+
[](https://github.com/Mandark-droid/genai_otel_instrument)
|
|
191
|
+
[](https://github.com/Mandark-droid/genai_otel_instrument/issues)
|
|
192
|
+
[](https://github.com/Mandark-droid/genai_otel_instrument/pulls)
|
|
193
|
+
|
|
194
|
+
[](https://github.com/Mandark-droid/genai_otel_instrument)
|
|
195
|
+
[](https://github.com/psf/black)
|
|
196
|
+
[](https://pycqa.github.io/isort/)
|
|
197
|
+
[](http://mypy-lang.org/)
|
|
198
|
+
|
|
199
|
+
[](https://opentelemetry.io/)
|
|
200
|
+
[](https://opentelemetry.io/docs/specs/semconv/gen-ai/)
|
|
201
|
+
[](https://github.com/Mandark-droid/genai_otel_instrument/actions)
|
|
202
|
+
|
|
183
203
|
Production-ready OpenTelemetry instrumentation for GenAI/LLM applications with zero-code setup.
|
|
184
204
|
|
|
185
205
|
## Features
|
|
@@ -188,7 +208,7 @@ Production-ready OpenTelemetry instrumentation for GenAI/LLM applications with z
|
|
|
188
208
|
🤖 **15+ LLM Providers** - OpenAI, Anthropic, Google, AWS, Azure, and more
|
|
189
209
|
🔧 **MCP Tool Support** - Auto-instrument databases, APIs, caches, vector DBs
|
|
190
210
|
💰 **Cost Tracking** - Automatic cost calculation per request
|
|
191
|
-
🎮 **GPU Metrics** - Real-time GPU utilization, memory, temperature
|
|
211
|
+
🎮 **GPU Metrics** - Real-time GPU utilization, memory, temperature, power
|
|
192
212
|
📊 **Complete Observability** - Traces, metrics, and rich span attributes
|
|
193
213
|
➕ **Service Instance ID & Environment** - Identify your services and environments
|
|
194
214
|
⏱️ **Configurable Exporter Timeout** - Set timeout for OTLP exporter
|
|
@@ -235,9 +255,9 @@ For a more comprehensive demonstration of various LLM providers and MCP tools, r
|
|
|
235
255
|
## What Gets Instrumented?
|
|
236
256
|
|
|
237
257
|
### LLM Providers (Auto-detected)
|
|
238
|
-
- OpenAI, Anthropic, Google AI, AWS Bedrock, Azure OpenAI
|
|
239
|
-
-
|
|
240
|
-
-
|
|
258
|
+
- **With Full Cost Tracking**: OpenAI, Anthropic, Google AI, AWS Bedrock, Azure OpenAI, Cohere, Mistral AI, Together AI, Groq, Ollama, Vertex AI
|
|
259
|
+
- **Hardware/Local Pricing**: Replicate (hardware-based $/second), HuggingFace (local execution, free)
|
|
260
|
+
- **Other Providers**: Anyscale
|
|
241
261
|
|
|
242
262
|
### Frameworks
|
|
243
263
|
- LangChain (chains, agents, tools)
|
|
@@ -251,15 +271,52 @@ For a more comprehensive demonstration of various LLM providers and MCP tools, r
|
|
|
251
271
|
- **APIs**: HTTP/REST requests (requests, httpx)
|
|
252
272
|
|
|
253
273
|
### OpenInference (Optional - Python 3.10+ only)
|
|
254
|
-
- Smolagents
|
|
255
|
-
- MCP
|
|
256
|
-
- LiteLLM
|
|
274
|
+
- Smolagents - HuggingFace smolagents framework tracing
|
|
275
|
+
- MCP - Model Context Protocol instrumentation
|
|
276
|
+
- LiteLLM - Multi-provider LLM proxy
|
|
277
|
+
|
|
278
|
+
**Cost Enrichment:** OpenInference instrumentors are automatically enriched with cost tracking! When cost tracking is enabled (`GENAI_ENABLE_COST_TRACKING=true`), a custom `CostEnrichmentSpanProcessor` extracts model and token usage from OpenInference spans and adds cost attributes (`gen_ai.usage.cost.total`, `gen_ai.usage.cost.prompt`, `gen_ai.usage.cost.completion`) using our comprehensive pricing database of 145+ models.
|
|
279
|
+
|
|
280
|
+
The processor supports OpenInference semantic conventions:
|
|
281
|
+
- Model: `llm.model_name`, `embedding.model_name`
|
|
282
|
+
- Tokens: `llm.token_count.prompt`, `llm.token_count.completion`
|
|
283
|
+
- Operations: `openinference.span.kind` (LLM, EMBEDDING, CHAIN, RETRIEVER, etc.)
|
|
257
284
|
|
|
258
285
|
**Note:** OpenInference instrumentors require Python >= 3.10. Install with:
|
|
259
286
|
```bash
|
|
260
287
|
pip install genai-otel-instrument[openinference]
|
|
261
288
|
```
|
|
262
289
|
|
|
290
|
+
## Cost Tracking Coverage
|
|
291
|
+
|
|
292
|
+
The library includes comprehensive cost tracking with pricing data for **145+ models** across **11 providers**:
|
|
293
|
+
|
|
294
|
+
### Providers with Full Token-Based Cost Tracking
|
|
295
|
+
- **OpenAI**: GPT-4o, GPT-4 Turbo, GPT-3.5 Turbo, o1/o3 series, embeddings, audio, vision (35+ models)
|
|
296
|
+
- **Anthropic**: Claude 3.5 Sonnet/Opus/Haiku, Claude 3 series (10+ models)
|
|
297
|
+
- **Google AI**: Gemini 1.5/2.0 Pro/Flash, PaLM 2 (12+ models)
|
|
298
|
+
- **AWS Bedrock**: Amazon Titan, Claude, Llama, Mistral models (20+ models)
|
|
299
|
+
- **Azure OpenAI**: Same as OpenAI with Azure-specific pricing
|
|
300
|
+
- **Cohere**: Command R/R+, Command Light, Embed v3/v2 (8+ models)
|
|
301
|
+
- **Mistral AI**: Mistral Large/Medium/Small, Mixtral, embeddings (8+ models)
|
|
302
|
+
- **Together AI**: DeepSeek-R1, Llama 3.x, Qwen, Mixtral (25+ models)
|
|
303
|
+
- **Groq**: Llama 3.x series, Mixtral, Gemma models (15+ models)
|
|
304
|
+
- **Ollama**: Local models with token tracking (pricing via cost estimation)
|
|
305
|
+
- **Vertex AI**: Gemini models via Google Cloud with usage metadata extraction
|
|
306
|
+
|
|
307
|
+
### Special Pricing Models
|
|
308
|
+
- **Replicate**: Hardware-based pricing ($/second of GPU/CPU time) - not token-based
|
|
309
|
+
- **HuggingFace Transformers**: Local execution - no API costs
|
|
310
|
+
|
|
311
|
+
### Pricing Features
|
|
312
|
+
- **Differential Pricing**: Separate rates for prompt tokens vs. completion tokens
|
|
313
|
+
- **Reasoning Tokens**: Special pricing for OpenAI o1/o3 reasoning tokens
|
|
314
|
+
- **Cache Pricing**: Anthropic prompt caching costs (read/write)
|
|
315
|
+
- **Granular Cost Metrics**: Per-request cost breakdown by token type
|
|
316
|
+
- **Auto-Updated Pricing**: Pricing data maintained in `llm_pricing.json`
|
|
317
|
+
|
|
318
|
+
**Coverage Statistics**: As of v0.1.3, 89% test coverage with 415 passing tests, including comprehensive cost calculation validation and cost enrichment processor tests (supporting both GenAI and OpenInference semantic conventions).
|
|
319
|
+
|
|
263
320
|
## Collected Telemetry
|
|
264
321
|
|
|
265
322
|
### Traces
|
|
@@ -268,7 +325,7 @@ Every LLM call, database query, API request, and vector search is traced with fu
|
|
|
268
325
|
### Metrics
|
|
269
326
|
|
|
270
327
|
**GenAI Metrics:**
|
|
271
|
-
- `gen_ai.requests` - Request counts by provider
|
|
328
|
+
- `gen_ai.requests` - Request counts by provider and model
|
|
272
329
|
- `gen_ai.client.token.usage` - Token usage (prompt/completion)
|
|
273
330
|
- `gen_ai.client.operation.duration` - Request latency histogram (optimized buckets for LLM workloads)
|
|
274
331
|
- `gen_ai.usage.cost` - Total estimated costs in USD
|
|
@@ -278,7 +335,7 @@ Every LLM call, database query, API request, and vector search is traced with fu
|
|
|
278
335
|
- `gen_ai.usage.cost.cache_read` - Cache read cost (Anthropic)
|
|
279
336
|
- `gen_ai.usage.cost.cache_write` - Cache write cost (Anthropic)
|
|
280
337
|
- `gen_ai.client.errors` - Error counts by operation and type
|
|
281
|
-
- `gen_ai.gpu.*` - GPU utilization, memory, temperature (ObservableGauges)
|
|
338
|
+
- `gen_ai.gpu.*` - GPU utilization, memory, temperature, power (ObservableGauges)
|
|
282
339
|
- `gen_ai.co2.emissions` - CO2 emissions tracking (opt-in)
|
|
283
340
|
- `gen_ai.server.ttft` - Time to First Token for streaming responses (histogram, 1ms-10s buckets)
|
|
284
341
|
- `gen_ai.server.tbt` - Time Between Tokens for streaming responses (histogram, 10ms-2.5s buckets)
|
|
@@ -459,5 +516,168 @@ genai-otel-instrument/
|
|
|
459
516
|
└── (other mcp files)
|
|
460
517
|
```
|
|
461
518
|
|
|
519
|
+
## Roadmap
|
|
520
|
+
|
|
521
|
+
### Next Release (v0.2.0) - Q1 2026
|
|
522
|
+
|
|
523
|
+
We're planning significant enhancements for the next major release, focusing on evaluation metrics and safety guardrails alongside completing OpenTelemetry semantic convention compliance.
|
|
524
|
+
|
|
525
|
+
#### 🎯 Evaluation & Monitoring
|
|
526
|
+
|
|
527
|
+
**LLM Output Quality Metrics**
|
|
528
|
+
- **Bias Detection** - Automatically detect and measure bias in LLM responses
|
|
529
|
+
- Gender, racial, political, and cultural bias detection
|
|
530
|
+
- Bias score metrics with configurable thresholds
|
|
531
|
+
- Integration with fairness libraries (e.g., Fairlearn, AIF360)
|
|
532
|
+
|
|
533
|
+
- **Toxicity Detection** - Monitor and alert on toxic or harmful content
|
|
534
|
+
- Perspective API integration for toxicity scoring
|
|
535
|
+
- Custom toxicity models support
|
|
536
|
+
- Real-time toxicity metrics and alerts
|
|
537
|
+
- Configurable severity levels
|
|
538
|
+
|
|
539
|
+
- **Hallucination Detection** - Track factual accuracy and groundedness
|
|
540
|
+
- Fact-checking against provided context
|
|
541
|
+
- Citation validation for RAG applications
|
|
542
|
+
- Confidence scoring for generated claims
|
|
543
|
+
- Hallucination rate metrics by model and use case
|
|
544
|
+
|
|
545
|
+
**Implementation:**
|
|
546
|
+
```python
|
|
547
|
+
import genai_otel
|
|
548
|
+
|
|
549
|
+
# Enable evaluation metrics
|
|
550
|
+
genai_otel.instrument(
|
|
551
|
+
enable_bias_detection=True,
|
|
552
|
+
enable_toxicity_detection=True,
|
|
553
|
+
enable_hallucination_detection=True,
|
|
554
|
+
|
|
555
|
+
# Configure thresholds
|
|
556
|
+
bias_threshold=0.7,
|
|
557
|
+
toxicity_threshold=0.5,
|
|
558
|
+
hallucination_threshold=0.8
|
|
559
|
+
)
|
|
560
|
+
```
|
|
561
|
+
|
|
562
|
+
**Metrics Added:**
|
|
563
|
+
- `gen_ai.eval.bias_score` - Bias detection scores (histogram)
|
|
564
|
+
- `gen_ai.eval.toxicity_score` - Toxicity scores (histogram)
|
|
565
|
+
- `gen_ai.eval.hallucination_score` - Hallucination probability (histogram)
|
|
566
|
+
- `gen_ai.eval.violations` - Count of threshold violations by type
|
|
567
|
+
|
|
568
|
+
#### 🛡️ Safety Guardrails
|
|
569
|
+
|
|
570
|
+
**Input/Output Filtering**
|
|
571
|
+
- **Prompt Injection Detection** - Protect against prompt injection attacks
|
|
572
|
+
- Pattern-based detection (jailbreaking attempts)
|
|
573
|
+
- ML-based classifier for sophisticated attacks
|
|
574
|
+
- Real-time blocking with configurable policies
|
|
575
|
+
- Attack attempt metrics and logging
|
|
576
|
+
|
|
577
|
+
- **Restricted Topics** - Block sensitive or inappropriate topics
|
|
578
|
+
- Configurable topic blacklists (legal, medical, financial advice)
|
|
579
|
+
- Industry-specific content filters
|
|
580
|
+
- Topic detection with confidence scoring
|
|
581
|
+
- Custom topic definition support
|
|
582
|
+
|
|
583
|
+
- **Sensitive Information Protection** - Prevent PII leakage
|
|
584
|
+
- PII detection (emails, phone numbers, SSN, credit cards)
|
|
585
|
+
- Automatic redaction or blocking
|
|
586
|
+
- Compliance mode (GDPR, HIPAA, PCI-DSS)
|
|
587
|
+
- Data leak prevention metrics
|
|
588
|
+
|
|
589
|
+
**Implementation:**
|
|
590
|
+
```python
|
|
591
|
+
import genai_otel
|
|
592
|
+
|
|
593
|
+
# Configure guardrails
|
|
594
|
+
genai_otel.instrument(
|
|
595
|
+
enable_prompt_injection_detection=True,
|
|
596
|
+
enable_restricted_topics=True,
|
|
597
|
+
enable_sensitive_info_detection=True,
|
|
598
|
+
|
|
599
|
+
# Custom configuration
|
|
600
|
+
restricted_topics=["medical_advice", "legal_advice", "financial_advice"],
|
|
601
|
+
pii_detection_mode="block", # or "redact", "warn"
|
|
602
|
+
|
|
603
|
+
# Callbacks for custom handling
|
|
604
|
+
on_guardrail_violation=my_violation_handler
|
|
605
|
+
)
|
|
606
|
+
```
|
|
607
|
+
|
|
608
|
+
**Metrics Added:**
|
|
609
|
+
- `gen_ai.guardrail.prompt_injection_detected` - Injection attempts blocked
|
|
610
|
+
- `gen_ai.guardrail.restricted_topic_blocked` - Restricted topic violations
|
|
611
|
+
- `gen_ai.guardrail.pii_detected` - PII detection events
|
|
612
|
+
- `gen_ai.guardrail.violations` - Total guardrail violations by type
|
|
613
|
+
|
|
614
|
+
**Span Attributes:**
|
|
615
|
+
- `gen_ai.guardrail.violation_type` - Type of violation detected
|
|
616
|
+
- `gen_ai.guardrail.violation_severity` - Severity level (low, medium, high, critical)
|
|
617
|
+
- `gen_ai.guardrail.blocked` - Whether request was blocked (boolean)
|
|
618
|
+
- `gen_ai.eval.bias_categories` - Detected bias types (array)
|
|
619
|
+
- `gen_ai.eval.toxicity_categories` - Toxicity categories (array)
|
|
620
|
+
|
|
621
|
+
#### 📊 Enhanced OpenTelemetry Compliance
|
|
622
|
+
|
|
623
|
+
Completing remaining items from [OTEL_SEMANTIC_GAP_ANALYSIS_AND_IMPLEMENTATION_PLAN.md](OTEL_SEMANTIC_GAP_ANALYSIS_AND_IMPLEMENTATION_PLAN.md):
|
|
624
|
+
|
|
625
|
+
**Phase 4: Optional Enhancements**
|
|
626
|
+
- ✅ Session & User Tracking - Track sessions and users across requests
|
|
627
|
+
```python
|
|
628
|
+
genai_otel.instrument(
|
|
629
|
+
session_id_extractor=lambda ctx: ctx.get("session_id"),
|
|
630
|
+
user_id_extractor=lambda ctx: ctx.get("user_id")
|
|
631
|
+
)
|
|
632
|
+
```
|
|
633
|
+
|
|
634
|
+
- ✅ RAG/Embedding Attributes - Enhanced observability for retrieval-augmented generation
|
|
635
|
+
- `embedding.model_name` - Embedding model used
|
|
636
|
+
- `embedding.vector_dimensions` - Vector dimensions
|
|
637
|
+
- `retrieval.documents.{i}.document.id` - Retrieved document IDs
|
|
638
|
+
- `retrieval.documents.{i}.document.score` - Relevance scores
|
|
639
|
+
- `retrieval.documents.{i}.document.content` - Document content (truncated)
|
|
640
|
+
|
|
641
|
+
- ✅ Agent Workflow Tracking - Better support for agentic workflows
|
|
642
|
+
- `agent.name` - Agent identifier
|
|
643
|
+
- `agent.iteration` - Current iteration number
|
|
644
|
+
- `agent.action` - Action taken
|
|
645
|
+
- `agent.observation` - Observation received
|
|
646
|
+
|
|
647
|
+
#### 🔄 Migration Support
|
|
648
|
+
|
|
649
|
+
**Backward Compatibility:**
|
|
650
|
+
- All new features are opt-in via configuration
|
|
651
|
+
- Existing instrumentation continues to work unchanged
|
|
652
|
+
- Gradual migration path for new semantic conventions
|
|
653
|
+
|
|
654
|
+
**Version Support:**
|
|
655
|
+
- Python 3.9+ (evaluation features require 3.10+)
|
|
656
|
+
- OpenTelemetry SDK 1.20.0+
|
|
657
|
+
- Backward compatible with existing dashboards
|
|
658
|
+
|
|
659
|
+
### Future Releases
|
|
660
|
+
|
|
661
|
+
**v0.3.0 - Advanced Analytics**
|
|
662
|
+
- Custom metric aggregations
|
|
663
|
+
- Cost optimization recommendations
|
|
664
|
+
- Automated performance regression detection
|
|
665
|
+
- A/B testing support for prompts
|
|
666
|
+
|
|
667
|
+
**v0.4.0 - Enterprise Features**
|
|
668
|
+
- Multi-tenancy support
|
|
669
|
+
- Role-based access control for telemetry
|
|
670
|
+
- Advanced compliance reporting
|
|
671
|
+
- SLA monitoring and alerting
|
|
672
|
+
|
|
673
|
+
**Community Feedback**
|
|
674
|
+
|
|
675
|
+
We welcome feedback on our roadmap! Please:
|
|
676
|
+
- Open issues for feature requests
|
|
677
|
+
- Join discussions on prioritization
|
|
678
|
+
- Share your use cases and requirements
|
|
679
|
+
|
|
680
|
+
See [Contributing.md](Contributing.md) for how to get involved.
|
|
681
|
+
|
|
462
682
|
## License
|
|
463
683
|
Apache-2.0 license
|
{genai_otel_instrument-0.1.1.dev0.dist-info → genai_otel_instrument-0.1.4.dev0.dist-info}/RECORD
RENAMED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
genai_otel/__init__.py,sha256=OWgm1dihRkwBQU8fUPnVhE5XCZeF5f15UyH4w6LqGZU,4469
|
|
2
|
-
genai_otel/__version__.py,sha256=
|
|
3
|
-
genai_otel/auto_instrument.py,sha256=
|
|
2
|
+
genai_otel/__version__.py,sha256=tXTq07HZiURpZCu7BgCUswwpzaUPCRD2c6IN9cDtmRo,751
|
|
3
|
+
genai_otel/auto_instrument.py,sha256=NF0Bo_sFMynSmXNh5KFxdsJQPKuPE2NI_bel1i-CtxU,16260
|
|
4
4
|
genai_otel/cli.py,sha256=mbhaTU0WIAkvPKdIing-guIxPDjEKQftChWQUtPFzkY,3170
|
|
5
|
-
genai_otel/config.py,sha256=
|
|
6
|
-
genai_otel/cost_calculator.py,sha256=
|
|
5
|
+
genai_otel/config.py,sha256=hVdvUd1B1aPPUom6PHVi57BoNu-skZvzqLxy2H4mRXQ,6851
|
|
6
|
+
genai_otel/cost_calculator.py,sha256=g5yL9fcOXVXR_zd-d0mU4C2FRV_X47mM0aies6YGaak,15293
|
|
7
|
+
genai_otel/cost_enrichment_processor.py,sha256=iVpJYkDrtlQOm0vMXXYuwctd-p9tgi3NOmTIM3U1xBo,7314
|
|
7
8
|
genai_otel/exceptions.py,sha256=gIRvbI7c4V-M-PG9jS0o4ESRwHUWCm6DVihjfyJI1yg,429
|
|
8
|
-
genai_otel/gpu_metrics.py,sha256=
|
|
9
|
-
genai_otel/llm_pricing.json,sha256=
|
|
9
|
+
genai_otel/gpu_metrics.py,sha256=gHqV17mJ59VscilR_Bcd1ccBDdDiUs5w0bE1hNk7NqI,11168
|
|
10
|
+
genai_otel/llm_pricing.json,sha256=ySmIN-tAbAdyYnOWNlyvxX-NB5nUzwq4aIDKefE7ALQ,21692
|
|
10
11
|
genai_otel/logging_config.py,sha256=XSBeslTqeHUBBadKJV2W8JFIOXorEVZ6W0xqNKjiPlA,1463
|
|
11
12
|
genai_otel/metrics.py,sha256=Vngwtc1MAMAE7JVpbT_KfiCQ5TdIAKIs_0oztjJdDTg,2671
|
|
12
13
|
genai_otel/py.typed,sha256=oe-lun16QtsTO6qa3gicjgj_F4jU7LSKCnBYLr6P5Yk,88
|
|
@@ -15,19 +16,19 @@ genai_otel/instrumentors/anthropic_instrumentor.py,sha256=3koeXSJccALdZiRibavwQt
|
|
|
15
16
|
genai_otel/instrumentors/anyscale_instrumentor.py,sha256=WUcQVDK8W76gkrAT_TLgzFd7NY42Rn6x0irT7VV2bbI,774
|
|
16
17
|
genai_otel/instrumentors/aws_bedrock_instrumentor.py,sha256=W469XxNVsb6eDjerk3SkjZFZEOIzH_HkBkmqqSCRBhU,3670
|
|
17
18
|
genai_otel/instrumentors/azure_openai_instrumentor.py,sha256=HumsAAtW9YzbcyBCrIGhE5KvZ6-mxSbsEoI_W0JU7xg,2428
|
|
18
|
-
genai_otel/instrumentors/base.py,sha256=
|
|
19
|
-
genai_otel/instrumentors/cohere_instrumentor.py,sha256=
|
|
19
|
+
genai_otel/instrumentors/base.py,sha256=dNsJfhKgrZO8dLdEb45roh4WcwrTfFWyCNhhmWDcPnE,26187
|
|
20
|
+
genai_otel/instrumentors/cohere_instrumentor.py,sha256=SRi2CRA1XUbup_UdE6OEgSxqlyUfVXaiVy-ULXvLZGM,5214
|
|
20
21
|
genai_otel/instrumentors/google_ai_instrumentor.py,sha256=ExNo0_OxfCxaRpuUXYU8UZ-ClQRHRLUvf7-kMC6zdc8,2984
|
|
21
22
|
genai_otel/instrumentors/groq_instrumentor.py,sha256=bCm7IDmDyvg0-XuzcCSO5xf9QvDlQGwb7bdQ_ooS6QI,3398
|
|
22
|
-
genai_otel/instrumentors/huggingface_instrumentor.py,sha256=
|
|
23
|
+
genai_otel/instrumentors/huggingface_instrumentor.py,sha256=QiOGC09KY6fdmHHHXHidVDcZikDPC3tI63scmJ0wW9I,9136
|
|
23
24
|
genai_otel/instrumentors/langchain_instrumentor.py,sha256=1Y_zGBQcUNrh877k146XOW4wLBXBkNtbyuEkORXFIyQ,2760
|
|
24
25
|
genai_otel/instrumentors/llamaindex_instrumentor.py,sha256=zZ1J7W4yQo1Ur6Y5y0UXpDdEx9oDnmsqNIin5Jrv9os,1206
|
|
25
|
-
genai_otel/instrumentors/mistralai_instrumentor.py,sha256=
|
|
26
|
-
genai_otel/instrumentors/ollama_instrumentor.py,sha256=
|
|
26
|
+
genai_otel/instrumentors/mistralai_instrumentor.py,sha256=OU8O81wdBLTEwnkMfDQpk0oBisSpUukXlm4JYdnfEg0,12789
|
|
27
|
+
genai_otel/instrumentors/ollama_instrumentor.py,sha256=lv45qf8Cqe_HmF7BIMojZcBFK8AA13uUrCVOKAFhN0k,5286
|
|
27
28
|
genai_otel/instrumentors/openai_instrumentor.py,sha256=0q2vml2oWnTRzfVTEP0_njfxqZS8b3Qek-apeecXvvs,9263
|
|
28
|
-
genai_otel/instrumentors/replicate_instrumentor.py,sha256
|
|
29
|
-
genai_otel/instrumentors/togetherai_instrumentor.py,sha256
|
|
30
|
-
genai_otel/instrumentors/vertexai_instrumentor.py,sha256=
|
|
29
|
+
genai_otel/instrumentors/replicate_instrumentor.py,sha256=-G_Tj0VkAfg-cOKvnk4G56eJiADjyIgv6xEgyAWlFdw,3028
|
|
30
|
+
genai_otel/instrumentors/togetherai_instrumentor.py,sha256=--r0YhCBIrpgyFiUwwc1LFTPoxAAXXV4lOAD66laqEY,5414
|
|
31
|
+
genai_otel/instrumentors/vertexai_instrumentor.py,sha256=F0-z0YXANHqccTT3SHbr7ggj3l4ebI_WwubIkPYPa68,4058
|
|
31
32
|
genai_otel/mcp_instrumentors/__init__.py,sha256=0yVx5bwFxCmI72BORDKLgkn0t5h_xRXvtjUskVE60eo,512
|
|
32
33
|
genai_otel/mcp_instrumentors/api_instrumentor.py,sha256=tAogtajeq4zjaM4-05XYSOzD3ig2mXX9_xFyGHL4auQ,5690
|
|
33
34
|
genai_otel/mcp_instrumentors/base.py,sha256=oF_GyGZPEDS-NapIYzM_-TV1KYJeVlXXFzxzs9sMsqU,4044
|
|
@@ -36,9 +37,9 @@ genai_otel/mcp_instrumentors/kafka_instrumentor.py,sha256=QJYJC1rvo_zZAIaw-cp_Ic
|
|
|
36
37
|
genai_otel/mcp_instrumentors/manager.py,sha256=1Pj5lkEOL8Yq1Oeud4ZExN6k6NLIVtTzKnFLNiFdJvw,5895
|
|
37
38
|
genai_otel/mcp_instrumentors/redis_instrumentor.py,sha256=KUbs0dMyfMzU4T0SS8u43I5fvr09lcBBM92I3KCsYUw,943
|
|
38
39
|
genai_otel/mcp_instrumentors/vector_db_instrumentor.py,sha256=2vhnk4PGpfYKr-XlRbnCIOap4BPKHOn--fh-ai2YXlM,9994
|
|
39
|
-
genai_otel_instrument-0.1.
|
|
40
|
-
genai_otel_instrument-0.1.
|
|
41
|
-
genai_otel_instrument-0.1.
|
|
42
|
-
genai_otel_instrument-0.1.
|
|
43
|
-
genai_otel_instrument-0.1.
|
|
44
|
-
genai_otel_instrument-0.1.
|
|
40
|
+
genai_otel_instrument-0.1.4.dev0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
genai_otel_instrument-0.1.4.dev0.dist-info/METADATA,sha256=jY6ORZ3rNiaqaygHDhgZE3t4cYEzdRb4k26GY18B29I,30063
|
|
42
|
+
genai_otel_instrument-0.1.4.dev0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
43
|
+
genai_otel_instrument-0.1.4.dev0.dist-info/entry_points.txt,sha256=E9UqoHA_fq69yNGAY3SRYf5HH94sZT5DiDueiU1v0KM,57
|
|
44
|
+
genai_otel_instrument-0.1.4.dev0.dist-info/top_level.txt,sha256=cvCm8PUwvYUSQKruk-x6S-_YuDyhOBk8gD910XICcbg,11
|
|
45
|
+
genai_otel_instrument-0.1.4.dev0.dist-info/RECORD,,
|
{genai_otel_instrument-0.1.1.dev0.dist-info → genai_otel_instrument-0.1.4.dev0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|