Skip to content

Commit

Permalink
Test: 추가 RAG only 테스트 코드
Browse files Browse the repository at this point in the history
OCR까지 불필요하게 호출하지 않도록
  • Loading branch information
semnisem committed Sep 26, 2024
1 parent 6767bf2 commit 40bb7b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ async def analysis(problem_url = None):
await connect_milvus() # milvus 서버 연결

if problem_url is None:
problem_text = "확률변수 X는 평균이 m, 표준편차가 5인 정규분포를 따르고, 확률변수 X의 확률밀도함수 f(x)가 다음 조건을 만족시킨다. m이 자연수일 때 P(17<=X<=18)=a이다. 1000a의 값을 오른쪽 표준정규분포표를 이용하여 구하시오."
problem_text = '확률변수 X는 평균이 m, 표준편차가 5인 정규분포를 따르고, 확률변수 X의 확률밀도함수 f(x)가 다음 조건을 만족시킨다. m이 자연수일 때 P(17<=X<=18)=a이다. 1000a의 값을 오른쪽 표준정규분포표를 이용하여 구하시오.'
else:
problem_text = await ocr(problem_url)

Expand Down

0 comments on commit 40bb7b8

Please sign in to comment.