File size: 11,420 Bytes
cf21b55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c5ce4c9
cf21b55
 
 
 
 
 
 
 
 
 
 
 
 
 
c5ce4c9
cf21b55
 
 
 
 
 
 
 
 
 
 
 
 
c5ce4c9
cf21b55
 
 
c5ce4c9
 
 
 
 
cf21b55
c5ce4c9
 
cf21b55
c5ce4c9
 
cf21b55
 
c5ce4c9
 
cf21b55
c5ce4c9
cf21b55
 
 
 
 
 
9ede46a
cf21b55
 
 
 
 
 
 
 
 
 
 
c5ce4c9
 
ea30dcf
 
 
c5ce4c9
cf21b55
 
 
9ede46a
 
 
 
 
 
 
 
 
 
 
 
cf21b55
 
 
 
 
 
 
 
 
c5ce4c9
cf21b55
 
c5ce4c9
cf21b55
 
c5ce4c9
cf21b55
 
 
 
c5ce4c9
 
 
 
 
 
 
cf21b55
 
c5ce4c9
cf21b55
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ea30dcf
cf21b55
 
9ede46a
 
 
cf21b55
 
 
 
 
 
 
 
 
 
ea30dcf
9ede46a
cf21b55
 
ea30dcf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
import gradio as gr
from huggingface_hub import InferenceClient, HfApi
import os
import requests
from typing import List, Dict, Union
import traceback
from PIL import Image
from io import BytesIO
import asyncio
from gradio_client import Client
import time
import threading
import json

HF_TOKEN = os.getenv("HF_TOKEN")
hf_client = InferenceClient("CohereForAI/c4ai-command-r-plus-08-2024", token=HF_TOKEN)
hf_api = HfApi(token=HF_TOKEN)

def get_headers():
    if not HF_TOKEN:
        raise ValueError("Hugging Face token not found in environment variables")
    return {"Authorization": f"Bearer {HF_TOKEN}"}

def get_file_content(space_id: str, file_path: str) -> str:
    file_url = f"https://huggingface.co/spaces/{space_id}/raw/main/{file_path}"
    try:
        response = requests.get(file_url, headers=get_headers())
        if response.status_code == 200:
            return response.text
        else:
            return f"File not found or inaccessible: {file_path}"
    except requests.RequestException:
        return f"Error fetching content for file: {file_path}"

def get_space_structure(space_id: str) -> Dict:
    try:
        files = hf_api.list_repo_files(repo_id=space_id, repo_type="space")
        
        tree = {"type": "directory", "path": "", "name": space_id, "children": []}
        for file in files:
            path_parts = file.split('/')
            current = tree
            for i, part in enumerate(path_parts):
                if i == len(path_parts) - 1:  # ํŒŒ์ผ
                    current["children"].append({"type": "file", "path": file, "name": part})
                else:  # ๋””๋ ‰ํ† ๋ฆฌ
                    found = False
                    for child in current["children"]:
                        if child["type"] == "directory" and child["name"] == part:
                            current = child
                            found = True
                            break
                    if not found:
                        new_dir = {"type": "directory", "path": '/'.join(path_parts[:i+1]), "name": part, "children": []}
                        current["children"].append(new_dir)
                        current = new_dir
        
        return tree
    except Exception as e:
        print(f"Error in get_space_structure: {str(e)}")
        return {"error": f"API request error: {str(e)}"}

def format_tree_structure(tree_data: Dict, indent: str = "") -> str:
    formatted = f"{indent}{tree_data['name']}\n"
    if tree_data["type"] == "directory":
        for child in sorted(tree_data.get("children", []), key=lambda x: (x["type"] != "directory", x["name"])):
            formatted += format_tree_structure(child, indent + "  ")
    return formatted

def summarize_code(app_content: str) -> str:
    system_message = "๋‹น์‹ ์€ Python ์ฝ”๋“œ๋ฅผ ๋ถ„์„ํ•˜๊ณ  ์š”์•ฝํ•˜๋Š” AI ์กฐ์ˆ˜์ž…๋‹ˆ๋‹ค. ์ฃผ์–ด์ง„ ์ฝ”๋“œ๋ฅผ 3์ค„ ์ด๋‚ด๋กœ ๊ฐ„๊ฒฐํ•˜๊ฒŒ ์š”์•ฝํ•ด์ฃผ์„ธ์š”."
    user_message = f"๋‹ค์Œ Python ์ฝ”๋“œ๋ฅผ 3์ค„ ์ด๋‚ด๋กœ ์š”์•ฝํ•ด์ฃผ์„ธ์š”:\n\n{app_content}"
    
    messages = [
        {"role": "system", "content": system_message},
        {"role": "user", "content": user_message}
    ]
    
    try:
        response = hf_client.chat_completion(messages, max_tokens=200, temperature=0.7)
        return response.choices[0].message.content
    except Exception as e:
        return f"์š”์•ฝ ์ƒ์„ฑ ์ค‘ ์˜ค๋ฅ˜ ๋ฐœ์ƒ: {str(e)}"

def analyze_code(app_content: str) -> str:
    system_message = """๋‹น์‹ ์€ Python ์ฝ”๋“œ๋ฅผ ๋ถ„์„ํ•˜๋Š” AI ์กฐ์ˆ˜์ž…๋‹ˆ๋‹ค. ์ฃผ์–ด์ง„ ์ฝ”๋“œ๋ฅผ ๋ถ„์„ํ•˜์—ฌ ๋‹ค์Œ ํ•ญ๋ชฉ์— ๋Œ€ํ•ด ์„ค๋ช…ํ•ด์ฃผ์„ธ์š”:
    A. ๋ฐฐ๊ฒฝ ๋ฐ ํ•„์š”์„ฑ
    B. ๊ธฐ๋Šฅ์  ํšจ์šฉ์„ฑ ๋ฐ ๊ฐ€์น˜
    C. ํŠน์žฅ์ 
    D. ์ ์šฉ ๋Œ€์ƒ ๋ฐ ํƒ€๊ฒŸ
    E. ๊ธฐ๋Œ€ํšจ๊ณผ
    ๊ธฐ์กด ๋ฐ ์œ ์‚ฌ ํ”„๋กœ์ ํŠธ์™€ ๋น„๊ตํ•˜์—ฌ ๋ถ„์„ํ•ด์ฃผ์„ธ์š”. Markdown ํ˜•์‹์œผ๋กœ ์ถœ๋ ฅํ•˜์„ธ์š”."""
    user_message = f"๋‹ค์Œ Python ์ฝ”๋“œ๋ฅผ ๋ถ„์„ํ•ด์ฃผ์„ธ์š”:\n\n{app_content}"
    
    messages = [
        {"role": "system", "content": system_message},
        {"role": "user", "content": user_message}
    ]
    
    try:
        response = hf_client.chat_completion(messages, max_tokens=1000, temperature=0.7)
        return response.choices[0].message.content
    except Exception as e:
        return f"๋ถ„์„ ์ƒ์„ฑ ์ค‘ ์˜ค๋ฅ˜ ๋ฐœ์ƒ: {str(e)}"

def explain_usage(app_content: str) -> str:
    system_message = "๋‹น์‹ ์€ Python ์ฝ”๋“œ๋ฅผ ๋ถ„์„ํ•˜์—ฌ ์‚ฌ์šฉ๋ฒ•์„ ์„ค๋ช…ํ•˜๋Š” AI ์กฐ์ˆ˜์ž…๋‹ˆ๋‹ค. ์ฃผ์–ด์ง„ ์ฝ”๋“œ๋ฅผ ๋ฐ”ํƒ•์œผ๋กœ ๋งˆ์น˜ ํ™”๋ฉด์„ ๋ณด๋Š” ๊ฒƒ์ฒ˜๋Ÿผ ์‚ฌ์šฉ๋ฒ•์„ ์ƒ์„ธํžˆ ์„ค๋ช…ํ•ด์ฃผ์„ธ์š”. Markdown ํ˜•์‹์œผ๋กœ ์ถœ๋ ฅํ•˜์„ธ์š”."
    user_message = f"๋‹ค์Œ Python ์ฝ”๋“œ์˜ ์‚ฌ์šฉ๋ฒ•์„ ์„ค๋ช…ํ•ด์ฃผ์„ธ์š”:\n\n{app_content}"
    
    messages = [
        {"role": "system", "content": system_message},
        {"role": "user", "content": user_message}
    ]
    
    try:
        response = hf_client.chat_completion(messages, max_tokens=800, temperature=0.7)
        return response.choices[0].message.content
    except Exception as e:
        return f"์‚ฌ์šฉ๋ฒ• ์„ค๋ช… ์ƒ์„ฑ ์ค‘ ์˜ค๋ฅ˜ ๋ฐœ์ƒ: {str(e)}"

def analyze_space(url: str, progress=gr.Progress()):
    try:
        space_id = url.split('spaces/')[-1]
        
        progress(0.1, desc="ํŒŒ์ผ ๊ตฌ์กฐ ๋ถ„์„ ์ค‘...")
        tree_structure = get_space_structure(space_id)
        tree_view = format_tree_structure(tree_structure)
        
        progress(0.3, desc="app.py ๋‚ด์šฉ ๊ฐ€์ ธ์˜ค๋Š” ์ค‘...")
        app_content = get_file_content(space_id, "app.py")
        
        progress(0.4, desc="์ฝ”๋“œ ์š”์•ฝ ์ค‘...")
        summary = summarize_code(app_content)
        
        progress(0.6, desc="์ฝ”๋“œ ๋ถ„์„ ์ค‘...")
        analysis = analyze_code(app_content)
        
        progress(0.8, desc="์‚ฌ์šฉ๋ฒ• ์„ค๋ช… ์ƒ์„ฑ ์ค‘...")
        usage = explain_usage(app_content)
        
        progress(1.0, desc="์™„๋ฃŒ")
        return summary, analysis, usage, app_content, tree_view, tree_structure, space_id
    except Exception as e:
        print(f"Error in analyze_space: {str(e)}")
        print(traceback.format_exc())
        return f"์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค: {str(e)}", "", "", "", "", None, ""


def create_ui():
    try:
        css = """
        footer {visibility: hidden;}
        .output-group {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 10px;
            margin-bottom: 20px;
        }
        .scroll-lock {
            overflow-y: auto !important;
            max-height: calc((100vh - 200px) / 5) !important;
        }
        .full-height {
            height: calc(100vh - 200px) !important;
            overflow-y: auto !important;
        }
        """

        js = """
        function openFile(path, spaceId) {
            const filePathInput = document.querySelector('input[data-testid="file_path_input"]');
            const spaceIdInput = document.querySelector('input[data-testid="space_id_input"]');
            if (filePathInput && spaceIdInput) {
                filePathInput.value = path;
                spaceIdInput.value = spaceId;
                filePathInput.dispatchEvent(new Event('change'));
            }
        }
        """

        with gr.Blocks(css=css, theme="Nymbo/Nymbo_Theme") as demo:
            gr.Markdown("# HuggingFace Space Analyzer")
            
            with gr.Row():
                with gr.Column(scale=6):  # ์™ผ์ชฝ 60%
                    url_input = gr.Textbox(label="HuggingFace Space URL")
                    analyze_button = gr.Button("๋ถ„์„")
                    
                    with gr.Group(elem_classes="output-group scroll-lock"):
                        summary_output = gr.Markdown(label="์š”์•ฝ (3์ค„ ์ด๋‚ด)")
                    
                    with gr.Group(elem_classes="output-group scroll-lock"):
                        analysis_output = gr.Markdown(label="๋ถ„์„")
                    
                    with gr.Group(elem_classes="output-group scroll-lock"):
                        usage_output = gr.Markdown(label="์‚ฌ์šฉ๋ฒ•")
                    
                    with gr.Group(elem_classes="output-group scroll-lock"):
                        tree_view_output = gr.Textbox(label="ํŒŒ์ผ ๊ตฌ์กฐ (Tree View)", lines=20)
                    
                    with gr.Group(elem_classes="output-group scroll-lock"):
                        file_buttons = gr.Dataframe(
                            headers=["ํŒŒ์ผ ์ด๋ฆ„", "์—ด๊ธฐ"],
                            datatype=["str", "html"],
                            col_count=(2, "fixed"),
                            label="ํŒŒ์ผ ๋ฆฌ์ŠคํŠธ"
                        )
                
                with gr.Column(scale=4):  # ์˜ค๋ฅธ์ชฝ 40%
                    with gr.Group(elem_classes="output-group full-height"):
                        code_tabs = gr.Tabs()
                        with code_tabs:
                            app_py_tab = gr.TabItem("app.py")
                            with app_py_tab:
                                app_py_content = gr.Code(language="python", label="app.py", lines=30)

            space_id_state = gr.State()
            tree_structure_state = gr.State()

            def update_file_buttons(tree_structure, space_id):
                if tree_structure is None:
                    return []
                
                def get_files(node):
                    files = []
                    if node["type"] == "file":
                        files.append(node)
                    elif node["type"] == "directory":
                        for child in node.get("children", []):
                            files.extend(get_files(child))
                    return files

                files = get_files(tree_structure)
                return [[file["path"], f'<button onclick="openFile(\'{file["path"]}\', \'{space_id}\')">์—ด๊ธฐ</button>'] for file in files]

            def open_file(file_path: str, space_id: str):
                content = get_file_content(space_id, file_path)
                return gr.Tabs.update(selected=file_path), gr.Code(value=content, language="python", label=file_path, lines=30)

            analyze_button.click(
                analyze_space,
                inputs=[url_input],
                outputs=[summary_output, analysis_output, usage_output, app_py_content, tree_view_output, tree_structure_state, space_id_state]
            ).then(
                update_file_buttons,
                inputs=[tree_structure_state, space_id_state],
                outputs=[file_buttons]
            )

            file_path_input = gr.Textbox(visible=False)
            space_id_input = gr.Textbox(visible=False)

            def handle_file_open(file_path, space_id):
                return file_path, space_id

            file_path_input.change(
                open_file,
                inputs=[file_path_input, space_id_input],
                outputs=[code_tabs, code_tabs]
            )

            # JavaScript ์ฝ”๋“œ๋ฅผ HTML์— ์ง์ ‘ ์‚ฝ์ž…
            gr.HTML(f"<script>{js}</script>")

        return demo

    except Exception as e:
        print(f"Error in create_ui: {str(e)}")
        print(traceback.format_exc())
        raise

if __name__ == "__main__":
    try:
        demo = create_ui()
        demo.queue()
        demo.launch()
    except Exception as e:
        print(f"Error in main: {str(e)}")
        print(traceback.format_exc())