Home / Function/ test_abatch_tags() — langchain Function Reference

test_abatch_tags() — langchain Function Reference

Architecture documentation for the test_abatch_tags() function in test_llms.py from the langchain codebase.

Entity Profile

Dependency Diagram

graph TD
  fa78c343_e57c_ebfe_3f4b_fbc2184285d8["test_abatch_tags()"]
  b375279a_4970_f212_b93f_b3ffc97dc9d8["test_llms.py"]
  fa78c343_e57c_ebfe_3f4b_fbc2184285d8 -->|defined in| b375279a_4970_f212_b93f_b3ffc97dc9d8
  style fa78c343_e57c_ebfe_3f4b_fbc2184285d8 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

libs/partners/ollama/tests/integration_tests/test_llms.py lines 60–68

async def test_abatch_tags() -> None:
    """Test batch async token generation with tags."""
    llm = OllamaLLM(model=MODEL_NAME)

    result = await llm.abatch(
        ["I'm Pickle Rick", "I'm not Pickle Rick"], config={"tags": ["foo"]}
    )
    for token in result:
        assert isinstance(token, str)

Domain

Subdomains

Frequently Asked Questions

What does test_abatch_tags() do?
test_abatch_tags() is a function in the langchain codebase, defined in libs/partners/ollama/tests/integration_tests/test_llms.py.
Where is test_abatch_tags() defined?
test_abatch_tags() is defined in libs/partners/ollama/tests/integration_tests/test_llms.py at line 60.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free