Skip to content

Commit

Permalink
[#6] feat: change llm model to gpt-3.5-16k
Browse files Browse the repository at this point in the history
  • Loading branch information
FacerAin committed Oct 15, 2023
1 parent fac898b commit a71fc50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def get_docs(pages):
elif mode == 'VIDEO':
docs = process_mp4(source)

llm = ChatOpenAI(temperature=0)
llm = ChatOpenAI(model_name='gpt-3.5-turbo-16k', temperature=0)
summary = llm.predict(
f"당신은 전공 강의 자료 요약기 입니다. 아래 주어진 대본을 키워드 위주로 적절하게 요약하세요. 링크나 의미 없는 단어, 문장 들은 무시해도 좋습니다. 대본: {docs[:10000]} "
)
Expand Down

0 comments on commit a71fc50

Please sign in to comment.