File size: 1,110 Bytes
3ecfb12
 
 
fbfb21b
3ecfb12
 
 
 
 
 
 
 
 
 
6020700
3ecfb12
 
 
 
6222bec
 
3f0bce7
3ecfb12
 
 
 
 
 
 
 
 
601cd86
3ecfb12
 
 
 
 
 
 
 
685eb57
 
c796669
 
685eb57
 
c796669
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from langchain_community.llms import HuggingFaceEndpoint
from langchain.prompts import PromptTemplate
from langchain.schema import AIMessage, HumanMessage
from langchain.chains import LLMChain
import gradio as gr
import os

from dotenv import load_dotenv

load_dotenv()

repo_id = "mistralai/Mistral-7B-Instruct-v0.2"
llm = HuggingFaceEndpoint(
    repo_id = repo_id, 
    # huggingfacehub_api_token=HUGGINGFACEHUB_API_TOKEN,
)


template = """You're a good chatbot. Answer this request: {question}
Answer: Let's think step by step."""
prompt = PromptTemplate.from_template(template=template)
llm_chain = LLMChain(llm=llm, prompt=prompt)


def predict(message, history):
    history_langchain_format = []
    # for human, ai in history:
    #     history_langchain_format.append(HumanMessage(content=human))
    #     history_langchain_format.append(AIMessage(content=ai))
    # history_langchain_format.append(HumanMessage(content=message))
    # gpt_response = llm(history_langchain_format)
    response = llm_chain.invoke(message)['text']
    return response

gr.ChatInterface(predict).launch()