File size: 939 Bytes
879cd67
9ef4285
c64e939
 
 
 
bec68d9
bdea64e
1a14bcb
bdea64e
 
 
c998b4f
dbbb92b
c55e24c
 
597e98c
 
e54ffd4
1a14bcb
 
c998b4f
c55e24c
c64e939
 
 
55e3619
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
import os
import requests
import gradio as gr

def get_the_answer(message, history):
    
    endpoint = 'eo_rfp_rag'
    
    try:
        token = os.environ['DATABRICKS_TOKEN']
        host = os.environ['DATABRICKS_HOST']
        headers = {"Authorization": f"Bearer {token}", "Content-Type": "application/json"}
        print(f"{host}serving-endpoints/{endpoint}/invocations")
        answer = requests.post(f"{host}serving-endpoints/{endpoint}/invocations", 
                       json={"dataframe_split": {"data":[message]}}, 
                       headers=headers).json()
        output = answer['predictions'][0]['answer']
    except KeyError as e:
        return str(answer['message'])
    except Exception as e:
        return str(e)
    print(answer.keys())
    return answer['predictions'][0]['answer']

demo = gr.ChatInterface(get_the_answer)

demo.launch(auth=[("User1", os.environ['PASS']), ("User2", os.environ['PASS'])])