Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -610,7 +610,7 @@ The form of Desired Outcome must be 'key1, key2, ...'. For example to get the na
|
|
610 |
),
|
611 |
]
|
612 |
|
613 |
-
llm_chain = LLMChain(llm=ChatOpenAI(model='gpt-
|
614 |
|
615 |
tool_names = [tool.name for tool in tools]
|
616 |
agent = LLMSingleActionAgent(
|
@@ -673,8 +673,8 @@ with gr.Blocks(css='#chatbot .overflow-y-auto{height:750px}') as demo:
|
|
673 |
<div>
|
674 |
<h1>ChatWine</h1>
|
675 |
</div>
|
676 |
-
<p style="margin-bottom: 10px; font-size:
|
677 |
-
|
678 |
</p>
|
679 |
</div>""")
|
680 |
|
|
|
610 |
),
|
611 |
]
|
612 |
|
613 |
+
llm_chain = LLMChain(llm=ChatOpenAI(model='gpt-4', temperature=0.5, streaming=True), prompt=prompt, verbose=False,)
|
614 |
|
615 |
tool_names = [tool.name for tool in tools]
|
616 |
agent = LLMSingleActionAgent(
|
|
|
673 |
<div>
|
674 |
<h1>ChatWine</h1>
|
675 |
</div>
|
676 |
+
<p style="margin-bottom: 10px; font-size: 200%">
|
677 |
+
ํด๋น ์๋น์ค์ ๋ํ ์ค๋ฌธ์ ํด์ฃผ์ธ์. ์ถ์ฒจ์ ํตํด ์์ธ์ ๋๋ฆฝ๋๋ค. <a href="https://forms.gle/VxipmChYH4YENySr6">์ค๋ฌธ์กฐ์ฌํ๋ฌ ๊ฐ๊ธฐ</a>
|
678 |
</p>
|
679 |
</div>""")
|
680 |
|