lindermanqms1984

Results 1 comments of lindermanqms1984

_Hello World_ ``` from typing import Optional, List, Mapping, Any from langchain.llms.base import LLM import gpt4free from gpt4free import Provider class EducationalLLM(LLM): @property def _llm_type(self) -> str: return "custom" def...