LICENSE
MANIFEST.in
README.md
pyproject.toml
requirements.txt
llmrouterx/__init__.py
llmrouterx/cli.py
llmrouterx.egg-info/PKG-INFO
llmrouterx.egg-info/SOURCES.txt
llmrouterx.egg-info/dependency_links.txt
llmrouterx.egg-info/entry_points.txt
llmrouterx.egg-info/requires.txt
llmrouterx.egg-info/top_level.txt
llmrouterx/adapters/__init__.py
llmrouterx/adapters/anthropic.py
llmrouterx/adapters/azure.py
llmrouterx/adapters/base.py
llmrouterx/adapters/factory.py
llmrouterx/adapters/gemini.py
llmrouterx/adapters/groq.py
llmrouterx/adapters/mistral.py
llmrouterx/adapters/nim.py
llmrouterx/adapters/openai.py
llmrouterx/adapters/openai_compatible.py
llmrouterx/adapters/together.py
llmrouterx/client/__init__.py
llmrouterx/client/client_node.py
llmrouterx/config/__init__.py
llmrouterx/config/config.py
llmrouterx/config/secrets.py
llmrouterx/context/__init__.py
llmrouterx/context/request_context.py
llmrouterx/exceptions/__init__.py
llmrouterx/metrics/__init__.py
llmrouterx/metrics/metrics.py
llmrouterx/middleware/__init__.py
llmrouterx/middleware/base.py
llmrouterx/middleware/langfuse_trace.py
llmrouterx/providers/__init__.py
llmrouterx/providers/composite_router.py
llmrouterx/providers/provider_router.py
llmrouterx/providers/stub_provider.py
llmrouterx/registry/__init__.py
llmrouterx/registry/provider_registry.py
llmrouterx/retry/__init__.py
llmrouterx/retry/base.py
llmrouterx/retry/circuit_breaker.py
llmrouterx/retry/exponential.py
llmrouterx/router/__init__.py
llmrouterx/router/factory.py
llmrouterx/router/llmrouter.py
llmrouterx/scheduler/__init__.py
llmrouterx/scheduler/base.py
llmrouterx/scheduler/least_busy.py
llmrouterx/scheduler/priority.py
llmrouterx/scheduler/random.py
llmrouterx/scheduler/round_robin.py
llmrouterx/scheduler/weighted.py
llmrouterx/server/__init__.py
llmrouterx/server/app.py
llmrouterx/streaming/__init__.py
llmrouterx/streaming/async_stream.py
llmrouterx/streaming/manager.py
llmrouterx/streaming/sync.py
llmrouterx/streaming/tokenizer.py
llmrouterx/utils/__init__.py
llmrouterx/utils/cancellation.py
llmrouterx/utils/logging.py
llmrouterx/utils/masking.py
tests/test_anthropic_adapter.py
tests/test_cancellation.py
tests/test_circuit_breaker.py
tests/test_code_review_fixes.py
tests/test_composite_clientnode.py
tests/test_config_registry_factory.py
tests/test_design_features.py
tests/test_langfuse_middleware.py
tests/test_metrics_context.py
tests/test_metrics_labels_and_logging.py
tests/test_middleware.py
tests/test_openai_compatible_adapter.py
tests/test_retry_failover_metrics.py
tests/test_retry_middleware_and_timeouts.py
tests/test_retry_policy.py
tests/test_schedulers.py
tests/test_server_and_cli.py
tests/test_streaming_components.py
tests/test_streaming_shutdown.py