[복습용]

---
# 폴더 새롭게 만들고 / git clone
pwd : /pr-agent
$ python -m venv venv #가상 폴더는 초회에만 진행하고 그 이후는 안만들어도 된다---# 폴더 새롭게 만들고 / git clonepwd : /pr-agent$ python -m venv venv #가상 폴더는 초회에만 진행하고 그 이후는 안만들어도 된다
$ source venv/Scripts/activate
(venv)
$ python.exe -m pip install --upgrade pip
$ pip install -r requirements.txt
$ pip install -r requirements-dev.txt
---
pwd : /pr-agent/pr_agent/settings
권한 600 확인 rw / /
$ cp .secrets_template.toml .secrets.toml
ctrl + s
---
[config]
# models
model="gemini/gemini-2.0-flash"
fallback_models=["gemini/gemini-2.0-flash"]
---
# 파일 3개 넣기 원본2, 내가 수정한거 1
1. C:\\Users\\gozah\\Desktop\\HOPARKSUNG\\pr-agent\\tests\\

2. git add .
3. git commmit -m "변경 사항"
4. git push origin user/HOPARKSUNG

5. PR 레쓰고 # <https://github.com/group-3-sPRinter/pr-agent/pull/10>

# description 생성해줌
6. **$ python -m pr_agent.cli --pr_url <https://github.com/group-3-sPRinter/pr-agent/pull/10> describe**
# .pdf 인식 X /삭제 및 한글 문서 영어로

7. **$ python -m pr_agent.cli --pr_url <https://github.com/group-3-sPRinter/pr-agent/pull/10> reivew**

#지금은 코드 작업 못해서 결과 안나옴
8. **$ python -m pr_agent.cli --pr_url <https://github.com/group-3-sPRinter/pr-agent/pull/10> improve**

9. **$ python -m pr_agent.cli --pr_url <https://github.com/group-3-sPRinter/pr-agent/pull/10> ask "내용"

# --config.publish_output=false 로 로컬 실행
10. $ python -m pr_agent.cli --pr_url <https://github.com/group-3-sPRinter/pr-agent/pull/10> describe --config.publish_output=false**


[박성호] 아래의 PR 하나에서 테스트 진행

https://github.com/group-3-sPRinter/pr-agent-test/pull/10


[1회차] 설치 후 기본 테스트 2025-04-28 (v 1.0)