venkat charan commited on
Commit
6a0c258
·
verified ·
1 Parent(s): 230873b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ openai_api_k = os.getenv("openai_api")
8
  llm = ChatOpenAI(temperature=0, model="gpt-3.5-turbo",openai_api_key=openai_api_k,max_tokens=150)
9
  prompt = ChatPromptTemplate.from_messages([
10
  ("system", "You are a helpful assistant that gives a reply email for a particular email"),
11
- ("human", "{input}")
12
  ])
13
 
14
 
 
8
  llm = ChatOpenAI(temperature=0, model="gpt-3.5-turbo",openai_api_key=openai_api_k,max_tokens=150)
9
  prompt = ChatPromptTemplate.from_messages([
10
  ("system", "You are a helpful assistant that gives a reply email for a particular email"),
11
+ ("human", "give a neat and proper reply email\n{input}")
12
  ])
13
 
14