StoryStar / app.py
openfree's picture
Update app.py
521288b verified
raw
history blame
10.1 kB
import gradio as gr
from huggingface_hub import InferenceClient
import os
import pandas as pd
from typing import List, Tuple
# LLM λͺ¨λΈ μ •μ˜
LLM_MODELS = {
"Cohere c4ai-crp-08-2024": "CohereForAI/c4ai-command-r-plus-08-2024", # κΈ°λ³Έ λͺ¨λΈ
"Meta Llama3.3-70B": "meta-llama/Llama-3.3-70B-Instruct",
"Mistral Nemo 2407": "mistralai/Mistral-Nemo-Instruct-2407",
"Alibaba Qwen QwQ-32B": "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 in ['parquet', 'csv']:
try:
# 데이터셋 ꡬ쑰 뢄석
lines = content.split('\n')
header = lines[0]
columns = header.count('|') - 1
rows = len(lines) - 3 # 헀더와 ꡬ뢄선 μ œμ™Έ
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:
file_ext = os.path.splitext(file.name)[1].lower()
if file_ext == '.parquet':
df = pd.read_parquet(file.name, engine='pyarrow')
content = df.head(10).to_markdown(index=False)
return content, "parquet"
elif file_ext == '.csv':
# CSV 파일 읽기 μ‹œ λ‹€μ–‘ν•œ 인코딩 μ‹œλ„
encodings = ['utf-8', 'cp949', 'euc-kr', 'latin1']
for encoding in encodings:
try:
df = pd.read_csv(file.name, encoding=encoding)
content = f"데이터 미리보기:\n{df.head(10).to_markdown(index=False)}\n\n"
content += f"\n데이터 정보:\n"
content += f"- 총 ν–‰ 수: {len(df)}\n"
content += f"- 총 μ—΄ 수: {len(df.columns)}\n"
content += f"- 컬럼 λͺ©λ‘: {', '.join(df.columns)}\n"
# 데이터 νƒ€μž… 정보 μΆ”κ°€
content += f"\nμ»¬λŸΌλ³„ 데이터 νƒ€μž…:\n"
for col, dtype in df.dtypes.items():
content += f"- {col}: {dtype}\n"
# 결츑치 정보 μΆ”κ°€
null_counts = df.isnull().sum()
if null_counts.any():
content += f"\n결츑치 정보:\n"
for col, null_count in null_counts[null_counts > 0].items():
content += f"- {col}: {null_count}개\n"
return content, "csv"
except UnicodeDecodeError:
continue
raise UnicodeDecodeError(f"μ§€μ›λ˜λŠ” 인코딩({', '.join(encodings)})으둜 νŒŒμΌμ„ 읽을 수 μ—†μŠ΅λ‹ˆλ‹€.")
else:
# ν…μŠ€νŠΈ 파일 읽기 μ‹œλ„
encodings = ['utf-8', 'cp949', 'euc-kr', 'latin1']
for encoding in encodings:
try:
with open(file.name, 'r', encoding=encoding) as f:
content = f.read()
return content, "text"
except UnicodeDecodeError:
continue
raise UnicodeDecodeError(f"μ§€μ›λ˜λŠ” 인코딩({', '.join(encodings)})으둜 νŒŒμΌμ„ 읽을 수 μ—†μŠ΅λ‹ˆλ‹€.")
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 in ['parquet', 'csv']:
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="Cohere c4ai-crp-08-2024", # 기본값을 Cohere λͺ¨λΈλ‘œ λͺ…μ‹œμ  지정
label="μ΅œμ‹  LLM λͺ¨λΈ 선택",
info="μ‚¬μš©ν•  LLM λͺ¨λΈμ„ μ„ νƒν•˜μ„Έμš”"
)
file_upload = gr.File(
label="파일 μ—…λ‘œλ“œ (ν…μŠ€νŠΈ, μ½”λ“œ, CSV, Parquet 파일)",
file_types=["text", ".csv", ".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()