Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ from typing import List, Tuple, Dict, Generator
|
|
3 |
from langchain.llms import OpenAI
|
4 |
import gradio as gr
|
5 |
|
6 |
-
model_name = "gpt-
|
7 |
LLM = OpenAI(model_name=model_name, temperature=0.1)
|
8 |
|
9 |
def create_history_messages(history: List[Tuple[str, str]]) -> List[dict]:
|
|
|
3 |
from langchain.llms import OpenAI
|
4 |
import gradio as gr
|
5 |
|
6 |
+
model_name = "gpt-3.5-turbo"
|
7 |
LLM = OpenAI(model_name=model_name, temperature=0.1)
|
8 |
|
9 |
def create_history_messages(history: List[Tuple[str, str]]) -> List[dict]:
|