1---2name: integration3description: Integration area in TTA.dev (universal_llm_primitive and related). 65 symbols | 10 files | Cohesion: 77%4---56# Integration7865 symbols | 10 files | Cohesion: 77%910## When to Use1112- Working on `integration`-related functionality in TTA.dev13- Navigating `ttadev/primitives/llm/universal_llm_primitive.py`, `ttadev/primitives/core/base.py`14- Understanding test coverage for this area1516## Key Files1718| File | Symbols |19|------|---------|20| `tests/integration/test_provider_apis.py` | _ctx, _timed_execute, _log, test_groq_llama_8b, test_groq_llama_70b (+11) |21| `tests/integration/test_universal_llm_integration.py` | _ctx, test_openai_execute, test_groq_execute, test_together_execute, test_openrouter_execute (+9) |22| `tests/integration/test_circuit_breaker_llm.py` | _ctx, _make_circuit, _drive_to_open, test_circuit_stays_closed_on_success, test_circuit_opens_after_failure_threshold (+4) |23| `tests/integration/test_llm_providers.py` | _ctx, test_groq_llm_round_trip, test_anthropic_llm_round_trip, test_openai_llm_round_trip, test_ollama_llm_round_trip (+3) |24| `tests/integration/test_workflow_code_review.py` | execute, test_security_check, execute, test_complexity_analysis, test_context_metadata_in_review (+1) |25| `tests/integration/test_agent_identity_e2e.py` | _build_isolated_provider, test_lambda_primitive_span_carries_agent_id, test_span_processor_preserves_agent_id, test_session_manager_creates_session_with_agent_id |26| `tests/integration/test_l0_workflow_proof.py` | _call_tool, _pin_agent, test_happy_path_two_step_workflow, test_low_confidence_gate_requires_human_decision_to_quit |27| `ttadev/primitives/llm/universal_llm_primitive.py` | execute, stream |28| `tests/observability/test_span_pipeline.py` | test_lambda_returns_expected_result |29| `ttadev/primitives/core/base.py` | execute |3031## Entry Points3233Start here when exploring this area:3435- **`test_groq_llama_8b`** (Function) — `tests/integration/test_provider_apis.py:110`36- **`test_groq_llama_70b`** (Function) — `tests/integration/test_provider_apis.py:140`37- **`test_groq_gemma2`** (Function) — `tests/integration/test_provider_apis.py:167`38- **`test_groq_mixtral`** (Function) — `tests/integration/test_provider_apis.py:194`39- **`test_groq_rotation`** (Function) — `tests/integration/test_provider_apis.py:221`4041## Key Symbols4243| Symbol | Type | File | Line |44|--------|------|------|------|45| `test_groq_llama_8b` | Function | `tests/integration/test_provider_apis.py` | 110 |46| `test_groq_llama_70b` | Function | `tests/integration/test_provider_apis.py` | 140 |47| `test_groq_gemma2` | Function | `tests/integration/test_provider_apis.py` | 167 |48| `test_groq_mixtral` | Function | `tests/integration/test_provider_apis.py` | 194 |49| `test_groq_rotation` | Function | `tests/integration/test_provider_apis.py` | 221 |50| `test_gemini_auto_prefix` | Function | `tests/integration/test_provider_apis.py` | 380 |51| `test_openrouter_free_model` | Function | `tests/integration/test_provider_apis.py` | 432 |52| `test_openrouter_gemma_free` | Function | `tests/integration/test_provider_apis.py` | 459 |53| `test_together_llama` | Function | `tests/integration/test_provider_apis.py` | 491 |54| `test_anthropic_haiku` | Function | `tests/integration/test_provider_apis.py` | 523 |55| `test_openai_gpt4o_mini` | Function | `tests/integration/test_provider_apis.py` | 558 |56| `test_router_groq_cascade` | Function | `tests/integration/test_provider_apis.py` | 591 |57| `test_router_gemini_tier` | Function | `tests/integration/test_provider_apis.py` | 651 |58| `test_groq_llm_round_trip` | Function | `tests/integration/test_llm_providers.py` | 52 |59| `test_anthropic_llm_round_trip` | Function | `tests/integration/test_llm_providers.py` | 81 |60| `test_openai_llm_round_trip` | Function | `tests/integration/test_llm_providers.py` | 112 |61| `test_ollama_llm_round_trip` | Function | `tests/integration/test_llm_providers.py` | 143 |62| `test_gemini_llm_round_trip` | Function | `tests/integration/test_llm_providers.py` | 197 |63| `test_openrouter_llm_round_trip` | Function | `tests/integration/test_llm_providers.py` | 231 |64| `test_together_llm_round_trip` | Function | `tests/integration/test_llm_providers.py` | 265 |6566## Connected Areas6768| Area | Connections |69|------|-------------|70| Unit | 11 calls |71| Observability | 4 calls |72| Llm | 4 calls |73| Control_plane | 1 calls |7475## How to Explore76771. `gitnexus_context({name: "test_groq_llama_8b"})` — see callers and callees782. `gitnexus_query({query: "integration"})` — find related execution flows793. Read key files listed above for implementation details