Skip to content

Commit

Permalink
feat: 로그 생성 코드 주석 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
dlwhsk0 committed Jul 19, 2024
1 parent 3ce3e19 commit e84794d
Showing 1 changed file with 11 additions and 25 deletions.
36 changes: 11 additions & 25 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,37 +25,23 @@
allow_headers=["*"], # 모든 헤더를 허용
)


# prometeus
instrumentator = Instrumentator().instrument(app)
instrumentator.expose(app, include_in_schema=False)

# 라우팅 설정
logging.basicConfig(
filename='/app/logs/app.log', # 로그 파일 이름
level=logging.INFO, # 로그 레벨
format='%(asctime)s %(levelname)s %(message)s' # 로그 메시지 포맷
)

# 로그 생성
# logging.basicConfig(
# filename='/app/logs/app.log', # 로그 파일 이름
# level=logging.INFO, # 로그 레벨
# format='%(asctime)s %(levelname)s %(message)s' # 로그 메시지 포맷
# )


# 라우팅 설정
"""
라우트란?
- 클라이언트로부터 요청을 받았을 때, 해당 요청을 처리할 수 있는 함수를 매핑하는 것
"""
app.include_router(api.router)

# # 첫 번째 질문
# question1 = "What are the key features of Python?"
# answer1 = with_message_history1.invoke(question=question1)
# print("Answer 1: ", answer1)
#
# # 두 번째 질문, 첫 번째 응답을 기반으로
# feature1 = answer1.split()[0]
# answer2 = with_message_history2.invoke(feature=feature1)
# print("Answer 2: ", answer2)
#
# # 최종 응답, 두 번째 응답을 기반으로
# feature2 = answer2.split()[0]
# final_answer = with_message_history3.invoke(feature1=feature1, feature2=feature2)
# print("Final Answer: ", final_answer)
#
# # 디버깅 정보 출력
# langsmith.debug_info()
app.include_router(api.router)

0 comments on commit e84794d

Please sign in to comment.