.cursorrules
.env.example
.gitignore
.pre-commit-config.yaml
LICENSE
MANIFEST.in
README.md
pyproject.toml
requirements.txt
setup.py
docs/API.md
docs/ARCHITECTURE.md
docs/CHANGELOG.md
docs/CONTRIBUTING.md
docs/DEPLOYMENT.md
docs/PROGRESS.md
docs/PROTECTED_FILES.md
docs/README.md
docs/RECOMMENDATIONS.md
docs/STABLE_COMPONENTS.md
docs/STRATEGIES.md
docs/TESTING.md
examples/basic_usage.py
examples/domain_search.py
examples/fallback_strategy.py
examples/follow_up_search.py
examples/haiku_generator.py
examples/minimal_example.py
examples/perplexity_chat.py
examples/random_provider_chat.py
examples/raw_api_cli.py
examples/raw_llm_response.py
examples/raw_output_test.py
examples/related_questions_api.py
examples/simple_chat.py
examples/super_simple.py
examples/test_output_formats.py
examples/test_related_questions.py
examples/together_quickstart.py
examples/together_strategy_example.py
examples/web_search.py
examples/output_formats/markdown_example.py
examples/output_formats/raw_example.py
examples/output_formats/text_example.py
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/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/entry_points.txt
src/send_2_llm.egg-info/requires.txt
src/send_2_llm.egg-info/top_level.txt
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/providers/__init__.py
src/send_2_llm/providers/anthropic.py
src/send_2_llm/providers/base.py
src/send_2_llm/providers/deepseek.py
src/send_2_llm/providers/factory.py
src/send_2_llm/providers/gemini.py
src/send_2_llm/providers/openai.py
src/send_2_llm/providers/openai_v2.py
src/send_2_llm/providers/perplexity.py
src/send_2_llm/providers/together.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/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/utils/__init__.py
src/send_2_llm/utils/proxy.py
tests/__init__.py
tests/conftest.py
tests/test_cli.py
tests/test_config.py
tests/test_formatters.py
tests/test_openai_connection.py
tests/test_response_formatter.py
tests/test_strategies.py
tests/test_strategy_integration.py
tests/test_strategy_switching.py
tests/mocks/__init__.py
tests/mocks/factory.py
tests/mocks/providers.py
tests/test_logging/__init__.py
tests/test_logging/test_api.py
tests/test_logging/test_base.py
tests/test_logging/test_metrics.py
tests/test_providers/test_anthropic.py
tests/test_providers/test_base.py
tests/test_providers/test_deepseek.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_strategies/test_together_strategy.py