chore: add video
Browse files
app.py
CHANGED
@@ -57,11 +57,11 @@ docs = split_documents(documents, tiktoken_len)
|
|
57 |
tokens_sum = sum(tiktoken_len(d.page_content) for d in docs)
|
58 |
|
59 |
title = "Alphabet's Q1 2023 10-Q MD&A"
|
60 |
-
video = '<iframe width="560" height="315" src="https://www.youtube.com/embed/
|
61 |
|
62 |
with gr.Blocks(title=title) as demo:
|
63 |
gr.Markdown(f"# {title}")
|
64 |
-
|
65 |
gr.Markdown("Blog post https://blog.experienced.dev")
|
66 |
gr.Markdown(
|
67 |
"You can get an API key [from OpenAI](https://platform.openai.com/account/api-keys)"
|
|
|
57 |
tokens_sum = sum(tiktoken_len(d.page_content) for d in docs)
|
58 |
|
59 |
title = "Alphabet's Q1 2023 10-Q MD&A"
|
60 |
+
video = '<iframe width="560" height="315" src="https://www.youtube.com/embed/LuXtsWQfmFg" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>'
|
61 |
|
62 |
with gr.Blocks(title=title) as demo:
|
63 |
gr.Markdown(f"# {title}")
|
64 |
+
gr.HTML(video)
|
65 |
gr.Markdown("Blog post https://blog.experienced.dev")
|
66 |
gr.Markdown(
|
67 |
"You can get an API key [from OpenAI](https://platform.openai.com/account/api-keys)"
|