DexterSptizu commited on
Commit
63c7e91
·
verified ·
1 Parent(s): a00e48a

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +67 -0
app.py ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import gradio as gr
3
+ from langchain_openai import ChatOpenAI
4
+ from langchain_core.output_parsers import StrOutputParser
5
+ from langchain_core.prompts import ChatPromptTemplate
6
+ from langchain_core.runnables import RunnablePassthrough, chain
7
+
8
+ def create_dynamic_chain(api_key):
9
+ llm = ChatOpenAI(model="gpt-4o-mini", api_key=api_key)
10
+
11
+ contextualize_prompt = ChatPromptTemplate.from_messages([
12
+ ("system", "Convert the question into a standalone question given the chat history."),
13
+ ("placeholder", "{chat_history}"),
14
+ ("human", "{question}")
15
+ ])
16
+
17
+ contextualize_question = contextualize_prompt | llm | StrOutputParser()
18
+
19
+ @chain
20
+ def contextualize_if_needed(input_dict):
21
+ if input_dict.get("chat_history"):
22
+ return contextualize_question
23
+ return RunnablePassthrough() | (lambda x: x["question"])
24
+
25
+ return contextualize_if_needed
26
+
27
+ def process_message(message, history, api_key):
28
+ if not api_key:
29
+ return "", [{"role": "assistant", "content": "Please enter your OpenAI API key."}]
30
+
31
+ try:
32
+ chain = create_dynamic_chain(api_key)
33
+ chat_history = [(msg["role"], msg["content"]) for msg in history]
34
+
35
+ response = chain.invoke({
36
+ "question": message,
37
+ "chat_history": chat_history
38
+ })
39
+
40
+ history.append({"role": "user", "content": message})
41
+ history.append({"role": "assistant", "content": response})
42
+
43
+ return "", history
44
+ except Exception as e:
45
+ return "", history + [{"role": "assistant", "content": f"Error: {str(e)}"}]
46
+
47
+ with gr.Blocks() as demo:
48
+ gr.Markdown("# Dynamic Chain Demo")
49
+
50
+ api_key = gr.Textbox(
51
+ label="OpenAI API Key",
52
+ placeholder="Enter your OpenAI API key",
53
+ type="password"
54
+ )
55
+
56
+ chatbot = gr.Chatbot(type="messages")
57
+ msg = gr.Textbox(label="Message")
58
+ clear = gr.ClearButton([msg, chatbot])
59
+
60
+ msg.submit(
61
+ process_message,
62
+ inputs=[msg, chatbot, api_key],
63
+ outputs=[msg, chatbot]
64
+ )
65
+
66
+ if __name__ == "__main__":
67
+ demo.launch()