yera.models.atlas.llm

LLM atlas: configured LLM models, organised by provider.

Symbols

class LLMAtlas — Atlas of configured LLM models.

LLMAtlas

Inherits: BaseAtlas

Atlas of configured LLM models.

Specialisation of BaseAtlas whose leaves are LLM context factories. Accessed via the llm singleton:

Examples

import yera as yr

    ...

with yr.llm.openai.gpt_4o():
    # LLM calls in here use gpt-4o
    ...

See BaseAtlas for the access patterns and tree-view behaviour shared with other atlas types.