Chelsea / command /basic /basic_commands.py
CineAI's picture
Rename command/basic/documentation.py to command/basic/basic_commands.py
7cc6e93 verified
raw
history blame
819 Bytes
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