ginipharm / app.py
openfree's picture
Update app.py
da20c1b verified
raw
history blame
7.92 kB
import gradio as gr
from huggingface_hub import InferenceClient
import os
import pandas as pd
from typing import List, Tuple
# LLM λͺ¨λΈ μ •μ˜
LLM_MODELS = {
"Default": "CohereForAI/c4ai-command-r-plus-08-2024", # κΈ°λ³Έ λͺ¨λΈ
"Meta": "meta-llama/Llama-3.3-70B-Instruct",
"Mistral": "mistralai/Mistral-Nemo-Instruct-2407",
"Alibaba": "Qwen/QwQ-32B-Preview"
}
def get_client(model_name):
return InferenceClient(LLM_MODELS[model_name], token=os.getenv("HF_TOKEN"))
def analyze_file_content(content, file_type):
"""파일 λ‚΄μš©μ„ λΆ„μ„ν•˜μ—¬ ꡬ쑰적 μš”μ•½μ„ λ°˜ν™˜"""
if file_type == 'parquet':
try:
# Parquet 파일 ꡬ쑰 뢄석
columns = content.split('\n')[0].count('|') - 1
rows = content.count('\n') - 2 # 헀더와 ꡬ뢄선 μ œμ™Έ
return f"데이터셋 ꡬ쑰: {columns}개 컬럼, {rows}개 데이터 μƒ˜ν”Œ"
except:
return "데이터셋 ꡬ쑰 뢄석 μ‹€νŒ¨"
# ν…μŠ€νŠΈ/μ½”λ“œ 파일의 경우
lines = content.split('\n')
total_lines = len(lines)
non_empty_lines = len([line for line in lines if line.strip()])
# μ½”λ“œ 파일 νŠΉμ§• 뢄석
if any(keyword in content.lower() for keyword in ['def ', 'class ', 'import ', 'function']):
functions = len([line for line in lines if 'def ' in line])
classes = len([line for line in lines if 'class ' in line])
imports = len([line for line in lines if 'import ' in line or 'from ' in line])
return f"μ½”λ“œ ꡬ쑰 뢄석: 총 {total_lines}쀄 (ν•¨μˆ˜ {functions}개, 클래슀 {classes}개, μž„ν¬νŠΈ {imports}개)"
# 일반 ν…μŠ€νŠΈ λ¬Έμ„œ 뢄석
paragraphs = content.count('\n\n') + 1
words = len(content.split())
return f"λ¬Έμ„œ ꡬ쑰 뢄석: 총 {total_lines}쀄, {paragraphs}개 문단, μ•½ {words}개 단어"
def read_uploaded_file(file):
if file is None:
return "", ""
try:
if file.name.endswith('.parquet'):
df = pd.read_parquet(file.name, engine='pyarrow')
content = df.head(10).to_markdown(index=False)
return content, "parquet"
else:
content = file.read()
if isinstance(content, bytes):
content = content.decode('utf-8')
return content, "text"
except Exception as e:
return f"νŒŒμΌμ„ μ½λŠ” 쀑 였λ₯˜κ°€ λ°œμƒν–ˆμŠ΅λ‹ˆλ‹€: {str(e)}", "error"
def format_history(history):
formatted_history = []
for user_msg, assistant_msg in history:
formatted_history.append({"role": "user", "content": user_msg})
if assistant_msg:
formatted_history.append({"role": "assistant", "content": assistant_msg})
return formatted_history
def chat(message, history, uploaded_file, model_name, system_message="", max_tokens=4000, temperature=0.7, top_p=0.9):
system_prefix = """λ„ˆλŠ” 파일 뢄석 μ „λ¬Έκ°€μž…λ‹ˆλ‹€. μ—…λ‘œλ“œλœ 파일의 λ‚΄μš©μ„ 깊이 있게 λΆ„μ„ν•˜μ—¬ λ‹€μŒκ³Ό 같은 κ΄€μ μ—μ„œ μ„€λͺ…ν•΄μ•Ό ν•©λ‹ˆλ‹€:
1. 파일의 μ „λ°˜μ μΈ ꡬ쑰와 ꡬ성
2. μ£Όμš” λ‚΄μš©κ³Ό νŒ¨ν„΄ 뢄석
3. λ°μ΄ν„°μ˜ νŠΉμ§•κ³Ό 의미
4. 잠재적 ν™œμš© λ°©μ•ˆ
5. μ£Όμ˜ν•΄μ•Ό ν•  μ μ΄λ‚˜ κ°œμ„  κ°€λŠ₯ν•œ λΆ€λΆ„
전문가적 κ΄€μ μ—μ„œ μƒμ„Έν•˜κ³  ꡬ쑰적인 뢄석을 μ œκ³΅ν•˜λ˜, μ΄ν•΄ν•˜κΈ° μ‰½κ²Œ μ„€λͺ…ν•˜μ„Έμš”. 뢄석 κ²°κ³ΌλŠ” Markdown ν˜•μ‹μœΌλ‘œ μž‘μ„±ν•˜κ³ , κ°€λŠ₯ν•œ ν•œ ꡬ체적인 μ˜ˆμ‹œλ₯Ό ν¬ν•¨ν•˜μ„Έμš”."""
if uploaded_file:
content, file_type = read_uploaded_file(uploaded_file)
if file_type == "error":
yield "", history + [[message, content]]
return
# 파일 λ‚΄μš© 뢄석 및 ꡬ쑰적 μš”μ•½
file_summary = analyze_file_content(content, file_type)
if file_type == 'parquet':
system_message += f"\n\n파일 λ‚΄μš©:\n```markdown\n{content}\n```"
else:
system_message += f"\n\n파일 λ‚΄μš©:\n```\n{content}\n```"
if message == "파일 뢄석을 μ‹œμž‘ν•©λ‹ˆλ‹€.":
message = f"""[ꡬ쑰 뢄석] {file_summary}
λ‹€μŒ κ΄€μ μ—μ„œ 상세 뢄석을 μ œκ³΅ν•΄μ£Όμ„Έμš”:
1. 파일의 μ „λ°˜μ μΈ ꡬ쑰와 ν˜•μ‹
2. μ£Όμš” λ‚΄μš© 및 κ΅¬μ„±μš”μ†Œ 뢄석
3. 데이터/λ‚΄μš©μ˜ νŠΉμ§•κ³Ό νŒ¨ν„΄
4. ν’ˆμ§ˆ 및 완성도 평가
5. κ°œμ„  κ°€λŠ₯ν•œ λΆ€λΆ„ μ œμ•ˆ
6. μ‹€μ œ ν™œμš© λ°©μ•ˆ 및 μΆ”μ²œμ‚¬ν•­"""
messages = [{"role": "system", "content": f"{system_prefix} {system_message}"}]
messages.extend(format_history(history))
messages.append({"role": "user", "content": message})
try:
client = get_client(model_name)
partial_message = ""
for msg in client.chat_completion(
messages,
max_tokens=max_tokens,
stream=True,
temperature=temperature,
top_p=top_p,
):
token = msg.choices[0].delta.get('content', None)
if token:
partial_message += token
yield "", history + [[message, partial_message]]
except Exception as e:
error_msg = f"μΆ”λ‘  쀑 였λ₯˜κ°€ λ°œμƒν–ˆμŠ΅λ‹ˆλ‹€: {str(e)}"
yield "", history + [[message, error_msg]]
css = """
footer {visibility: hidden}
"""
with gr.Blocks(theme="Yntec/HaleyCH_Theme_Orange", css=css) as demo:
with gr.Row():
with gr.Column(scale=2):
chatbot = gr.Chatbot(height=600)
msg = gr.Textbox(
label="λ©”μ‹œμ§€λ₯Ό μž…λ ₯ν•˜μ„Έμš”",
show_label=False,
placeholder="λ©”μ‹œμ§€λ₯Ό μž…λ ₯ν•˜μ„Έμš”...",
container=False
)
clear = gr.ClearButton([msg, chatbot])
with gr.Column(scale=1):
model_name = gr.Radio(
choices=list(LLM_MODELS.keys()),
value="Default",
label="LLM λͺ¨λΈ 선택",
info="μ‚¬μš©ν•  LLM λͺ¨λΈμ„ μ„ νƒν•˜μ„Έμš”"
)
file_upload = gr.File(
label="파일 μ—…λ‘œλ“œ (ν…μŠ€νŠΈ, μ½”λ“œ, 데이터 파일)",
file_types=["text", ".parquet"],
type="filepath"
)
with gr.Accordion("κ³ κΈ‰ μ„€μ •", open=False):
system_message = gr.Textbox(label="System Message", value="")
max_tokens = gr.Slider(minimum=1, maximum=8000, value=4000, label="Max Tokens")
temperature = gr.Slider(minimum=0, maximum=1, value=0.7, label="Temperature")
top_p = gr.Slider(minimum=0, maximum=1, value=0.9, label="Top P")
# 이벀트 바인딩
msg.submit(
chat,
inputs=[msg, chatbot, file_upload, model_name, system_message, max_tokens, temperature, top_p],
outputs=[msg, chatbot],
queue=True
).then(
lambda: gr.update(interactive=True),
None,
[msg]
)
# 파일 μ—…λ‘œλ“œ μ‹œ μžλ™ 뢄석
file_upload.change(
chat,
inputs=[gr.Textbox(value="파일 뢄석을 μ‹œμž‘ν•©λ‹ˆλ‹€."), chatbot, file_upload, model_name, system_message, max_tokens, temperature, top_p],
outputs=[msg, chatbot],
queue=True
)
# 예제 μΆ”κ°€
gr.Examples(
examples=[
["파일의 μ „λ°˜μ μΈ ꡬ쑰와 νŠΉμ§•μ„ μžμ„Ένžˆ μ„€λͺ…ν•΄μ£Όμ„Έμš”."],
["이 파일의 μ£Όμš” νŒ¨ν„΄κ³Ό νŠΉμ§•μ„ λΆ„μ„ν•΄μ£Όμ„Έμš”."],
["파일의 ν’ˆμ§ˆκ³Ό κ°œμ„  κ°€λŠ₯ν•œ 뢀뢄을 ν‰κ°€ν•΄μ£Όμ„Έμš”."],
["이 νŒŒμΌμ„ μ‹€μ œλ‘œ μ–΄λ–»κ²Œ ν™œμš©ν•  수 μžˆμ„κΉŒμš”?"],
["파일의 μ£Όμš” λ‚΄μš©μ„ μš”μ•½ν•˜κ³  핡심 μΈμ‚¬μ΄νŠΈλ₯Ό λ„μΆœν•΄μ£Όμ„Έμš”."],
["이전 뢄석을 μ΄μ–΄μ„œ 더 μžμ„Ένžˆ μ„€λͺ…ν•΄μ£Όμ„Έμš”."],
],
inputs=msg,
)
if __name__ == "__main__":
demo.launch()