File size: 9,911 Bytes
c551113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79d2116
 
c551113
 
 
 
79d2116
 
 
 
 
 
 
 
 
 
 
c551113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79d2116
 
 
 
 
c551113
79d2116
c551113
79d2116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c551113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79d2116
c551113
 
 
 
 
 
 
 
79d2116
c551113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
79d2116
 
c551113
 
79d2116
 
 
 
c551113
 
 
 
 
 
 
 
 
 
 
 
79d2116
c551113
 
 
 
 
 
 
 
 
 
 
 
 
 
79d2116
 
 
c551113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b90c025
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
import gradio as gr
import requests
import os
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from ping import add_ping_route

# ===== THEME COLOR VARIABLES =====
PRIMARY_COLOR = "#13406B"      # CPA Dark Corporate Blue
SECONDARY_COLOR = "#CD9D5B"    # CPA Muted Bronze/Tan
BACKGROUND_COLOR = "#f8fafc"   # Light gray - page background
TEXT_COLOR = "#1e293b"         # Dark slate - text color

# Configuration
LANGFLOW_API_URL = os.environ.get("LANGFLOW_API_URL", "")
LANGFLOW_API_KEY = os.environ.get("LANGFLOW_API_KEY", "") 
HF_API_KEY = os.environ.get("HF_API_KEY", "") 

if not LANGFLOW_API_URL:
    print("FATAL: LANGFLOW_API_URL secret not found or is empty.")
else:
    print("SUCCESS: LANGFLOW_API_URL loaded securely.")

if not LANGFLOW_API_KEY:
    print("FATAL: LANGFLOW_API_KEY secret not found or is empty.")
else:
    print("SUCCESS: LANGFLOW_API_KEY loaded securely.")

if not HF_API_KEY:
    print("FATAL: HF_API_KEY secret not found or is empty.")
else:
    print("SUCCESS: HF_API_KEY loaded securely.")


# Function that calls the LangFlow chat
def call_langflow_api(message):
    """

    Call Langflow API and return the response

    """
    headers = {
        "Content-Type": "application/json",
    }
    
    # Add API keys
    if HF_API_KEY:
       headers["Authorization"] = f"Bearer {HF_API_KEY}"
    if LANGFLOW_API_KEY: 
        headers["x-api-key"] = f"{LANGFLOW_API_KEY}"
    
    # Adjust this payload based on your Langflow API structure
    payload = {
        "input_value": message,
        "output_type": "chat",
        "input_type": "chat",
        "tweaks": {}
    }
    
    try:
        response = requests.post(
            LANGFLOW_API_URL,
            json=payload,
            headers=headers,
            timeout=30
        )
        response.raise_for_status()
        
        # Parse response - adjust based on your API response structure
        data = response.json()
        
        bot_message = data["outputs"][0]["outputs"][0]["results"]["message"]["text"]
        return bot_message
        
    except requests.exceptions.RequestException as e:
        return f"Error connecting to Langflow: {str(e)}"
    except (KeyError, IndexError) as e:
        return f"Error parsing response: {str(e)}\nResponse: {data}"


#Create FastAPI App for health check.
fastapi_app = FastAPI(title="Chatbot with Ping API")
# Optional CORS setup
fastapi_app.add_middleware(
    CORSMiddleware,
    allow_origins=["*"],
    allow_credentials=True,
    allow_methods=["*"],
    allow_headers=["*"],
)
# Add /ping route from ping.py 
add_ping_route(fastapi_app, call_langflow_api)


# Custom CSS using theme variables
custom_css = f"""

    /* Hide footer */

    footer {{display: none !important;}}

    .footer {{display: none !important;}}

    #footer {{display: none !important;}}

    .svelte-1p1dq6v {{display: none !important;}}

    

    /* Main container background */

    .gradio-container {{

        background-color: {BACKGROUND_COLOR} !important;

        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    }}

    

    /* Chatbot container styling */

    #chatbot-window {{

        background-color: {BACKGROUND_COLOR} !important;

        border-radius: 12px !important;

        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;

        border: 2px solid {PRIMARY_COLOR} !important;

    }}

    #chatbot-window .placeholder-content {{

        background-color: {BACKGROUND_COLOR} !important;

    }}

    #chatbot-window .bubble-wrap {{

        background-color: {BACKGROUND_COLOR} !important;

    }}

    

    /* Description text */

    #descr p{{

        color: black !important;

        font-size: 16px !important;

        margin-bottom: 20px !important;

    }}

    

    #disclaimer {{

        background-color: {PRIMARY_COLOR} !important;

        color: white !important;

        font-size: 16px !important;

        border: 2px solid {SECONDARY_COLOR} !important;

        border-radius: 8px !important;        

    }}

    #disclaimer p {{

        color: white !important;        

    }}



    /* User messages */

    #chatbot-window .message.user {{

        background-color: {SECONDARY_COLOR}  !important;

        color:  white !important;

        border: none !important;

    }}

    #chatbot-window .flex-wrap {{

        border: none !important;

    }}

    #chatbot-window .message.user p{{

        color:  white !important;

    }}

    

    

    /* Bot messages */

    #chatbot-window .message.bot {{

        background-color: {PRIMARY_COLOR}  !important;

        color:  white !important;

        border: none !important;

    }}

     #chatbot-window .message.bot p{{

        color:  white !important;

    }}

    /* All text inside bot messages, avoids changes from browser theme */

    #chatbot-window .message.bot *,

    #chatbot-window .message.bot li {{

        color: white !important;

    }}

    /* Input textbox */

    #input-textbox {{

        background-color: {BACKGROUND_COLOR} !important;

        

    }}



    /* this gets the text box and send button to align */

    #component-4 {{

    display: flex;          /* ensure it's a flex container */

    align-items: center;    /* vertically centers children */

    gap: 10px;              /* optional spacing between textbox & button */

    }}



    /* this removes the text box border that was unnecessary */

    div.form {{

    --block-border-width: 0px !important;

    --block-shadow: none !important;

    --block-radius: 0px !important;

    padding: 0 !important;   

    }}



    #input-textbox textarea{{

        border: 2px solid {SECONDARY_COLOR} !important;

        border-radius: 8px !important;

        font-size: 16px !important;

        color: {TEXT_COLOR} !important;

        background-color: {BACKGROUND_COLOR} !important;

    }}

    

    #input-textbox textarea:focus {{

        border-color: {PRIMARY_COLOR} !important;

        box-shadow: 0 0 0 3px rgba(19, 64, 107, 0.1) !important;

    }}

    

    /* Buttons */

    button {{

        border-radius: 8px !important;

        font-weight: 600 !important;

        

    }}

    

    

    /* Primary buttons (Send) */

    #send-button {{

        background-color: {PRIMARY_COLOR} !important;

        color: white !important;

        border: none !important;

      

    }}

    

    #send-button:hover {{

        background-color: {SECONDARY_COLOR} !important;

    }}

    

    /* Secondary buttons (Clear) */

    button.secondary {{

        background-color: white !important;

        color: {PRIMARY_COLOR} !important;

        border: 2px solid {SECONDARY_COLOR} !important;

    }}

    

    button.secondary:hover {{

        background-color: {BACKGROUND_COLOR} !important;

    }}

    

    /* Example buttons */

    #example-buttons button {{

        background-color: {PRIMARY_COLOR} !important;

        color: white !important;

        border: 2px solid {SECONDARY_COLOR} !important;

        border-radius: 8px !important;

        font-weight: 500 !important;

    }}

    

    #example-buttons button:hover {{

        background-color: {SECONDARY_COLOR} !important;

    }}



    /* Example label text */

    #example-buttons .label {{

        color: {TEXT_COLOR} !important;

        font-size: 16px !important;

    }}

"""


# Create custom Gradio interface with Blocks
with gr.Blocks(css=custom_css, analytics_enabled=False) as chatui:
    
    # Description
    gr.Markdown(
        "Ask Cosmo the cougar questions related to Crown Pointe Academy policies.",
        elem_classes="description",
        elem_id="descr"
    )
    
    #Diclaimer 
    gr.HTML("<p> I am an AI guide on school policies, not the official source. I may " \
    "generate misinformation. Verify all results with official school documents. </p>", elem_id="disclaimer")

    # Chatbot component - MUST use type='messages'
    chatbot = gr.Chatbot(
        type='messages',
        height=500,
        elem_classes="chatbot",
        elem_id="chatbot-window"
    )
    
    # Input row
    with gr.Row():
        msg = gr.Textbox(
            label="",
            placeholder="Type your question here...",
            scale=4,
            show_label=False,
            elem_id="input-textbox"
        )
        submit = gr.Button(
            "Send",
            scale=1,
            variant="primary",
            elem_id="send-button"
        )
    
    # Example buttons
    gr.Examples(
        examples=[
            "What is the dress code for students?",
            "How do I report an absence?",
            "What is the policy on cell phones?"
        ],
        inputs=msg,
        label="Try these examples:",
        elem_id="example-buttons"
    )
    
    # Clear button
    clear = gr.Button("Clear Chat", variant="secondary")
    
    # Chat logic for messages format
    def respond(message, chat_history):
        if not message.strip():
            return "", chat_history
        
        # Get bot response
        bot_message = call_langflow_api(message)
        
        # Append messages in the new format
        chat_history.append({"role": "user", "content": message})
        chat_history.append({"role": "assistant", "content": bot_message})
        
        return "", chat_history
    
    # Event handlers - mark as non-API to avoid schema issues
    msg.submit(respond, [msg, chatbot], [msg, chatbot], api_name=False)
    submit.click(respond, [msg, chatbot], [msg, chatbot], api_name=False)
    clear.click(lambda: [], None, chatbot, queue=False, api_name=False)


# Mount Gradio app to FastAPI at root path
app = gr.mount_gradio_app(fastapi_app, chatui, path="/")