diff --git a/app/main.py b/app/main.py index 88010b1..80b8165 100644 --- a/app/main.py +++ b/app/main.py @@ -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) \ No newline at end of file