import os | |
import logging | |
import streamlit as st | |
from typing import Optional, Dict, Any | |
from ..command_interface import CommandInterface | |
class Documentation(CommandInterface): | |
def __init__(self, | |
command_file: str, | |
commands: Optional[str], | |
llm: Any, | |
id: int): | |
self.command_file = command_file | |
if commands is not None: | |
self.commands = commands | |
else: | |
self.commands = [] | |
self.llm = llm | |
self.id = id | |
def get_command() -> Dict[str, Dict[str, list]]: | |
pass | |
def is_contains(commands: Optional[str], llm: Any, id: Any, command: Dict[str, Dict[str, list]]) -> bool: | |
pass | |
def execute() -> Any: | |
pass | |