LICENSE
MANIFEST.in
README.md
pyproject.toml
docs/API.md
docs/ARCHITECTURE.md
docs/CHANGELOG.md
docs/CONFIG_SYSTEM.md
docs/CONTRIBUTING.md
docs/DEPLOYMENT.md
docs/INSTALLATION.md
docs/INSTALLATION_TROUBLESHOOTING.md
docs/PROGRESS.md
docs/PROTECTED_FILES.md
docs/README.md
docs/RECOMMENDATIONS.md
docs/STABLE_COMPONENTS.md
docs/STRATEGIES.md
docs/TESTING.md
docs/TROUBLESHOOTING.md
examples/compare_providers_haiku.py
examples/quickstart.py
examples/simple_haiku.py
requirements/base.txt
requirements/dev.txt
requirements/providers/anthropic.txt
requirements/providers/deepseek.txt
requirements/providers/gemini.txt
requirements/providers/openai.txt
requirements/providers/perplexity.txt
requirements/providers/together.txt
scripts/install/gemini.sh
src/send_2_llm/__init__.py
src/send_2_llm/api.py
src/send_2_llm/cli.py
src/send_2_llm/client.py
src/send_2_llm/config.py
src/send_2_llm/formatters.py
src/send_2_llm/manager.py
src/send_2_llm/response_formatter.py
src/send_2_llm/types.py
src/send_2_llm.egg-info/PKG-INFO
src/send_2_llm.egg-info/SOURCES.txt
src/send_2_llm.egg-info/dependency_links.txt
src/send_2_llm.egg-info/requires.txt
src/send_2_llm.egg-info/top_level.txt
src/send_2_llm/cli/__init__.py
src/send_2_llm/cli/console.py
src/send_2_llm/cli/commands/__init__.py
src/send_2_llm/cli/commands/base.py
src/send_2_llm/cli/commands/config.py
src/send_2_llm/cli/commands/interactive.py
src/send_2_llm/cli/commands/logs.py
src/send_2_llm/cli/commands/single_shot.py
src/send_2_llm/cli/utils/__init__.py
src/send_2_llm/cli/utils/config.py
src/send_2_llm/cli/utils/formatting.py
src/send_2_llm/cli/utils/log_analysis.py
src/send_2_llm/cli/utils/log_rotation.py
src/send_2_llm/cli/utils/logging.py
src/send_2_llm/cli/utils/validation.py
src/send_2_llm/constants/__init__.py
src/send_2_llm/constants/config_loader.py
src/send_2_llm/constants/config_manager.py
src/send_2_llm/constants/defaults.yaml
src/send_2_llm/constants/model_configs.yaml
src/send_2_llm/constants/model_pricing.py
src/send_2_llm/constants/model_pricing.yaml
src/send_2_llm/constants/provider_features.yaml
src/send_2_llm/constants/system_prompts.yaml
src/send_2_llm/logging/__init__.py
src/send_2_llm/logging/api.py
src/send_2_llm/logging/metrics.py
src/send_2_llm/monitoring/__init__.py
src/send_2_llm/monitoring/metrics.py
src/send_2_llm/providers/__init__.py
src/send_2_llm/providers/anthropic_provider.py
src/send_2_llm/providers/base.py
src/send_2_llm/providers/deepseek_provider.py
src/send_2_llm/providers/factory.py
src/send_2_llm/providers/gemini_provider.py
src/send_2_llm/providers/manager.py
src/send_2_llm/providers/openai.py
src/send_2_llm/providers/openai_provider.py
src/send_2_llm/providers/perplexity_provider.py
src/send_2_llm/providers/together_provider.py
src/send_2_llm/security/manager.py
src/send_2_llm/stability/__init__.py
src/send_2_llm/stability/circuit_breaker.py
src/send_2_llm/stability/rate_limiter.py
src/send_2_llm/strategies/__init__.py
src/send_2_llm/strategies/base.py
src/send_2_llm/strategies/fallback.py
src/send_2_llm/strategies/single.py
src/send_2_llm/strategies/together_strategy.py
src/send_2_llm/strategy/base.py
src/send_2_llm/strategy/fallback.py
src/send_2_llm/strategy/single.py
src/send_2_llm/trading/__init__.py
src/send_2_llm/trading/strategies/__init__.py
src/send_2_llm/trading/strategies/base.py
src/send_2_llm/trading/strategies/strategy_one.py
src/send_2_llm/types/__init__.py
src/send_2_llm/types/base/__init__.py
src/send_2_llm/types/common/__init__.py
src/send_2_llm/types/errors/__init__.py
src/send_2_llm/types/providers/__init__.py
src/send_2_llm/types/questions/__init__.py
src/send_2_llm/utils/__init__.py
src/send_2_llm/utils/proxy.py
src/send_2_llm/validation/__init__.py
src/send_2_llm/validation/input_validator.py
tests/__init__.py
tests/conftest.py
tests/test_config.py
tests/test_openai_connection.py
tests/test_strategy_integration.py
tests/mocks/__init__.py
tests/mocks/factory.py
tests/mocks/providers.py
tests/test_providers/test_anthropic.py
tests/test_providers/test_base.py
tests/test_providers/test_deepseek.py
tests/test_providers/test_factory.py
tests/test_providers/test_gemini.py
tests/test_providers/test_openai.py
tests/test_providers/test_together.py
tests/test_providers/perplexity/__init__.py
tests/test_providers/perplexity/conftest.py
tests/test_providers/perplexity/pp_test_citations.py
tests/test_providers/perplexity/pp_test_error_handling.py
tests/test_providers/perplexity/pp_test_initialization.py
tests/test_providers/perplexity/pp_test_related_questions.py
tests/test_providers/perplexity/pp_test_text.py
tests/test_providers/perplexity/test_config_integration.py
tests/test_providers/perplexity/test_streaming.py
tests/test_providers/perplexity/test_web_search.py
tests/test_strategies/test_together_strategy.py