Skip to content

Commit

Permalink
chore: typing
Browse files Browse the repository at this point in the history
  • Loading branch information
phil65 committed Dec 10, 2024
1 parent 37bdc5a commit d6e6a01
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/llmling/config/llm_tools.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
"""Wrapper for tools supplied to the LLM."""

from collections.abc import Callable, Sequence
from typing import Any
from __future__ import annotations

from typing import TYPE_CHECKING, Any

from llmling.config.runtime import RuntimeConfig
from llmling.tools.base import LLMCallableTool


if TYPE_CHECKING:
from collections.abc import Callable, Sequence

from llmling.config.runtime import RuntimeConfig


class LLMTools:
"""Contains wrapped RuntimeConfig methods for better usage by LLMs.
Expand Down

0 comments on commit d6e6a01

Please sign in to comment.