Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Eunji committed Nov 12, 2023
1 parent ff2beef commit a7dcb8e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
11 changes: 5 additions & 6 deletions api/onecall_script/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
import json


def create_script(departure, arrival, date, time):
def create_script(departure, arrival, datetime):

CONTENT = departure + "에서 " + arrival + "으로 " + date + " " + time + "에 가는 기차 승차권을 예매하는 말을 1줄로 해줘"
CONTENT = departure + "에서 " + arrival + "으로 " + datetime + " 에 가는 기차 승차권을 예매하는 말을 1줄로 해줘"

openai.api_key = "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"

response = openai.ChatCompletion.create(
model="gpt-3.5-turbo",
messages=[
{"role": "user", "content": "동대구역에서 서울역으로 20231112 162300 에 가는 기차 승차권을 예매하는 말을 1줄로 해줘."},
{"role": "user", "content": "동대구역에서 서울역으로 2023-11-12-16-23-00 에 가는 기차 승차권을 예매하는 말을 1줄로 해줘."},
{"role": "assistant", "content": "동대구역에서 서울역으로 11월 12일 16시 23분에 출발하는 기차 승차권을 예매하고 싶어요."},
{"role": "user", "content": CONTENT},
],
Expand All @@ -38,7 +38,6 @@ def create_script(departure, arrival, date, time):

dep = sys.argv[1] # 출발역
arr = sys.argv[2] # 도착역
date = sys.argv[3] # 출발 날짜
time = sys.argv[4] # 출발 시간
datetime = sys.argv[3] # 출발 날짜

create_script(dep, arr, date, time)
create_script(dep, arr, datetime)
5 changes: 2 additions & 3 deletions src/html/initial.html
Original file line number Diff line number Diff line change
Expand Up @@ -904,7 +904,7 @@ <h1 class="footer-logo">
</script>

<script>
async function submitRowAsync(dep, arr, date, time) {
async function submitRowAsync(dep, arr, datetime) {
try {
const script = await (
await fetch(`/api/onecall_script`, {
Expand All @@ -915,8 +915,7 @@ <h1 class="footer-logo">
body: JSON.stringify({
"dep": dep,
"arr": arr,
"date": date,
"time": time,
"datetime": datetime,
}),
})
).text();
Expand Down

0 comments on commit a7dcb8e

Please sign in to comment.