๐
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Docker Model Runner LLM implementation for LlamaIndex. | |
This module provides a custom LLM class that integrates with Docker Model Runner, | |
allowing users to run local models through Docker containers with LlamaIndex. | |
""" | |
import asyncio | |
import json | |
from typing import Any, Dict, List, Optional, Sequence, Union |