/
githubmirror
/
GeniA
Обзор
Документация
Войти
/
githubmirror
/
GeniA
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
genia/llm_function/llm_function.py
8 строк
190 B
shlomsh
initial code commit
25 июл 2023, 22:08
25 июл 2023, 22:08
3a433c9
Код
Авторство
О чём код?
from abc import ABC, abstractmethod from typing import Any class LLMFunction(ABC): @abstractmethod def evaluate(self, function_config: dict, parameters: dict) -> Any: pass