Update app.py
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ from langchain.schema import HumanMessage, AIMessage
|
|
11 |
import gradio
|
12 |
|
13 |
api_key = os.getenv('OPENAI_API_KEY')
|
14 |
-
extractor_agent = os.getenv('
|
15 |
|
16 |
extractor_llm = OpenAIAssistantRunnable(assistant_id=extractor_agent, api_key=api_key, as_agent=True)
|
17 |
|
@@ -33,5 +33,6 @@ def predict(message, history):
|
|
33 |
non_cited_output = remove_citation(output)
|
34 |
return non_cited_output
|
35 |
|
|
|
36 |
chat = gradio.ChatInterface(predict, title="Solution Specifier A", description="testing for the time being")
|
37 |
chat.launch(share=True)
|
|
|
11 |
import gradio
|
12 |
|
13 |
api_key = os.getenv('OPENAI_API_KEY')
|
14 |
+
extractor_agent = os.getenv('ASSISTANT_ID_SOLUTION_SPECIFIER_A')
|
15 |
|
16 |
extractor_llm = OpenAIAssistantRunnable(assistant_id=extractor_agent, api_key=api_key, as_agent=True)
|
17 |
|
|
|
33 |
non_cited_output = remove_citation(output)
|
34 |
return non_cited_output
|
35 |
|
36 |
+
|
37 |
chat = gradio.ChatInterface(predict, title="Solution Specifier A", description="testing for the time being")
|
38 |
chat.launch(share=True)
|