File size: 345 Bytes
29a9262 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import os
from langchain_community.llms import HuggingFaceEndpoint
_api = os.environ.get("HUGGINGFACEHUB_API_TOKEN")
def get_response(prompt: str):
llm = HuggingFaceEndpoint(
repo_id="CineAI/FreeThinker3B",
max_length=1200,
temperature=0.5,
huggingfacehub_api_token=_api,
)
return llm.invoke(prompt) |