fantos commited on
Commit
ddc57e1
Β·
verified Β·
1 Parent(s): 915a848

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +51 -28
app.py CHANGED
@@ -10,16 +10,14 @@ API_KEY = os.getenv("TOGETHER_API_KEY")
10
  if not API_KEY:
11
  raise ValueError("API key is missing! Make sure TOGETHER_API_KEY is set in the Secrets.")
12
 
13
- # Initialize the Together client
14
  @st.cache_resource
15
  def get_client():
16
  return Together(api_key=API_KEY)
17
 
18
  def process_file(file) -> str:
19
- """Process uploaded file and return its content"""
20
  if file is None:
21
  return ""
22
-
23
  try:
24
  if file.type == "application/pdf":
25
  text = ""
@@ -47,15 +45,28 @@ def generate_response(
47
  client = get_client()
48
 
49
  try:
50
- # λ©”μ‹œμ§€ ν˜•μ‹ μˆ˜μ •
51
- messages = [{"role": "system", "content": system_message}]
52
 
53
- # νžˆμŠ€ν† λ¦¬ μΆ”κ°€
 
 
 
 
 
 
 
54
  for user_msg, assistant_msg in history:
55
- messages.append({"role": "user", "content": user_msg})
56
- messages.append({"role": "assistant", "content": assistant_msg})
 
 
 
 
 
 
57
 
58
- # ν˜„μž¬ λ©”μ‹œμ§€μ™€ 파일 λ‚΄μš© μΆ”κ°€
59
  current_content = message
60
  if files:
61
  file_contents = []
@@ -66,28 +77,40 @@ def generate_response(
66
  if file_contents:
67
  current_content = current_content + "\n\n" + "\n\n".join(file_contents)
68
 
69
- messages.append({"role": "user", "content": current_content})
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
 
71
- # API 호좜 μ‹œλ„
72
  try:
73
- stream = client.chat.completions.create(
74
- model="deepseek-ai/DeepSeek-R1",
75
- messages=messages,
76
- max_tokens=max_tokens,
77
- temperature=temperature,
78
- top_p=top_p,
79
- stream=True
80
- )
81
 
82
  for chunk in stream:
83
- if chunk.choices and chunk.choices[0].delta.content:
84
  yield chunk.choices[0].delta.content
85
 
86
  except Exception as e:
87
  if "rate limit" in str(e).lower():
88
- yield "μ£„μ†‘ν•©λ‹ˆλ‹€. API 호좜 ν•œλ„μ— λ„λ‹¬ν–ˆμŠ΅λ‹ˆλ‹€. μž μ‹œ ν›„ λ‹€μ‹œ μ‹œλ„ν•΄μ£Όμ„Έμš”."
89
  else:
90
- yield f"API 호좜 쀑 였λ₯˜κ°€ λ°œμƒν–ˆμŠ΅λ‹ˆλ‹€: {str(e)}"
 
 
 
 
 
91
 
92
  except Exception as e:
93
  yield f"였λ₯˜κ°€ λ°œμƒν–ˆμŠ΅λ‹ˆλ‹€: {str(e)}"
@@ -105,12 +128,12 @@ def main():
105
  st.header("μ„€μ •")
106
  system_message = st.text_area(
107
  "μ‹œμŠ€ν…œ λ©”μ‹œμ§€",
108
- value="당신은 깊이 있게 μƒκ°ν•˜λŠ” AIμž…λ‹ˆλ‹€. 문제λ₯Ό 깊이 κ³ λ €ν•˜κ³  체계적인 μΆ”λ‘  과정을 톡해 μ˜¬λ°”λ₯Έ 해결책을 λ„μΆœν•˜κΈ° μœ„ν•΄ 맀우 κΈ΄ 사고 체인을 μ‚¬μš©ν•  수 μžˆμŠ΅λ‹ˆλ‹€. λ°˜λ“œμ‹œ ν•œκΈ€λ‘œ λ‹΅λ³€ν•˜μ„Έμš”.",
109
  height=100
110
  )
111
- max_tokens = st.slider("μ΅œλŒ€ 토큰 수", 1, 8192, 8192)
112
- temperature = st.slider("μ˜¨λ„", 0.1, 4.0, 0.0, 0.1)
113
- top_p = st.slider("Top-p", 0.1, 1.0, 0.95, 0.05)
114
  uploaded_file = st.file_uploader(
115
  "파일 μ—…λ‘œλ“œ (선택사항)",
116
  type=['txt', 'py', 'md', 'pdf', 'png', 'jpg', 'jpeg'],
@@ -119,12 +142,12 @@ def main():
119
 
120
  for message in st.session_state.messages:
121
  with st.chat_message(message["role"]):
122
- st.write(message["content"])
123
 
124
  if prompt := st.chat_input("무엇을 μ•Œκ³  μ‹ΆμœΌμ‹ κ°€μš”?"):
125
  st.session_state.messages.append({"role": "user", "content": prompt})
126
  with st.chat_message("user"):
127
- st.write(prompt)
128
 
129
  with st.chat_message("assistant"):
130
  response_placeholder = st.empty()
 
10
  if not API_KEY:
11
  raise ValueError("API key is missing! Make sure TOGETHER_API_KEY is set in the Secrets.")
12
 
 
13
  @st.cache_resource
14
  def get_client():
15
  return Together(api_key=API_KEY)
16
 
17
  def process_file(file) -> str:
 
18
  if file is None:
19
  return ""
20
+
21
  try:
22
  if file.type == "application/pdf":
23
  text = ""
 
45
  client = get_client()
46
 
47
  try:
48
+ # λ©”μ‹œμ§€ λ°°μ—΄ μ΄ˆκΈ°ν™”
49
+ messages = []
50
 
51
+ # μ‹œμŠ€ν…œ λ©”μ‹œμ§€κ°€ μžˆλŠ” κ²½μš°μ—λ§Œ μΆ”κ°€
52
+ if system_message.strip():
53
+ messages.append({
54
+ "role": "system",
55
+ "content": system_message
56
+ })
57
+
58
+ # λŒ€ν™” νžˆμŠ€ν† λ¦¬ μΆ”κ°€
59
  for user_msg, assistant_msg in history:
60
+ messages.append({
61
+ "role": "user",
62
+ "content": user_msg
63
+ })
64
+ messages.append({
65
+ "role": "assistant",
66
+ "content": assistant_msg
67
+ })
68
 
69
+ # ν˜„μž¬ λ©”μ‹œμ§€μ™€ 파일 λ‚΄μš© μ€€λΉ„
70
  current_content = message
71
  if files:
72
  file_contents = []
 
77
  if file_contents:
78
  current_content = current_content + "\n\n" + "\n\n".join(file_contents)
79
 
80
+ # ν˜„μž¬ λ©”μ‹œμ§€ μΆ”κ°€
81
+ messages.append({
82
+ "role": "user",
83
+ "content": current_content
84
+ })
85
+
86
+ # API μš”μ²­ μ„€μ •
87
+ request_params = {
88
+ "model": "deepseek-ai/DeepSeek-R1",
89
+ "messages": messages,
90
+ "max_tokens": max_tokens,
91
+ "temperature": temperature,
92
+ "top_p": top_p,
93
+ "stream": True
94
+ }
95
 
96
+ # API 호좜
97
  try:
98
+ stream = client.chat.completions.create(**request_params)
 
 
 
 
 
 
 
99
 
100
  for chunk in stream:
101
+ if hasattr(chunk.choices[0].delta, 'content') and chunk.choices[0].delta.content:
102
  yield chunk.choices[0].delta.content
103
 
104
  except Exception as e:
105
  if "rate limit" in str(e).lower():
106
+ yield "API 호좜 ν•œλ„μ— λ„λ‹¬ν–ˆμŠ΅λ‹ˆλ‹€. μž μ‹œ ν›„ λ‹€μ‹œ μ‹œλ„ν•΄μ£Όμ„Έμš”."
107
  else:
108
+ error_message = str(e)
109
+ # Together.ai의 였λ₯˜ 응닡 뢄석
110
+ if "Input validation error" in error_message:
111
+ yield "μž…λ ₯ ν˜•μ‹μ΄ μ˜¬λ°”λ₯΄μ§€ μ•ŠμŠ΅λ‹ˆλ‹€. μ‹œμŠ€ν…œ κ΄€λ¦¬μžμ—κ²Œ λ¬Έμ˜ν•΄μ£Όμ„Έμš”."
112
+ else:
113
+ yield f"API 호좜 쀑 였λ₯˜κ°€ λ°œμƒν–ˆμŠ΅λ‹ˆλ‹€: {error_message}"
114
 
115
  except Exception as e:
116
  yield f"였λ₯˜κ°€ λ°œμƒν–ˆμŠ΅λ‹ˆλ‹€: {str(e)}"
 
128
  st.header("μ„€μ •")
129
  system_message = st.text_area(
130
  "μ‹œμŠ€ν…œ λ©”μ‹œμ§€",
131
+ value="당신은 깊이 있게 μƒκ°ν•˜λŠ” AIμž…λ‹ˆλ‹€. 문제λ₯Ό 깊이 κ³ λ €ν•˜κ³  체계적인 μΆ”λ‘  과정을 톡해 μ˜¬λ°”λ₯Έ 해결책을 λ„μΆœν•˜μ„Έμš”. λ°˜λ“œμ‹œ ν•œκΈ€λ‘œ λ‹΅λ³€ν•˜μ„Έμš”.",
132
  height=100
133
  )
134
+ max_tokens = st.slider("μ΅œλŒ€ 토큰 수", 1, 4096, 2048) # 토큰 μ œν•œ μ‘°μ •
135
+ temperature = st.slider("μ˜¨λ„", 0.0, 2.0, 0.7, 0.1) # μ˜¨λ„ λ²”μœ„ μ‘°μ •
136
+ top_p = st.slider("Top-p", 0.0, 1.0, 0.7, 0.1) # top_p λ²”μœ„ μ‘°μ •
137
  uploaded_file = st.file_uploader(
138
  "파일 μ—…λ‘œλ“œ (선택사항)",
139
  type=['txt', 'py', 'md', 'pdf', 'png', 'jpg', 'jpeg'],
 
142
 
143
  for message in st.session_state.messages:
144
  with st.chat_message(message["role"]):
145
+ st.markdown(message["content"])
146
 
147
  if prompt := st.chat_input("무엇을 μ•Œκ³  μ‹ΆμœΌμ‹ κ°€μš”?"):
148
  st.session_state.messages.append({"role": "user", "content": prompt})
149
  with st.chat_message("user"):
150
+ st.markdown(prompt)
151
 
152
  with st.chat_message("assistant"):
153
  response_placeholder = st.empty()