File size: 748 Bytes
2b8f617
 
 
 
 
6c3f62c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import streamlit as st
import streamlit.components.v1 as components  # Import Streamlit

from logic import get_index,get_network_graph,get_embeddings,get_visualize_embeddings

token = st.text_input("Open-AI-api-key-3.5-GPT")
if (token != ''):
    text = st.text_input("Input Links Seperated by ','")
    links = text.split(",")
    
    index = get_index(links,token)
    get_network_graph(index)
    emb = get_embeddings(index)
    fig = get_visualize_embeddings(emb)
    
    # Plotly Chart
    st.plotly_chart(fig, use_container_width=True)
    
    # Render the h1 block, contained in a frame of size 200x200.
    HtmlFile = open("kuzugraph_draw3.html", 'r', encoding='utf-8')
    source_code = HtmlFile.read() 
    components.html(source_code)