Spaces:
Build error
Build error
File size: 1,079 Bytes
4ba2322 |
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 |
import gradio as gr
from youtube_transcript_api import YouTubeTranscriptApi
from shuttleai import ShuttleAI
def summary(id):
# Initialize the ShuttleAI client
shuttleai = ShuttleAI()
# Fetch the transcript from YouTube
transcript = YouTubeTranscriptApi.get_transcript(id)
# Combine the transcript into a single string
transcript_text = " ".join([item['text'] for item in transcript])
# Request shuttle ai to summarize the transcript
response = shuttleai.chat.completions.create(
model="shuttle-2-turbo",
messages=[
{"role": "system", "content": "You are going to be given a transcript by the user. You need to summarize this transcript to give a summary of the video. Summarize the video with a maximum of 4 sentences. Keep necessary details as needed."},
{"role": "user", "content": transcript_text}
],
stream=False
)
return response.choices[0].message.content
with gr.Blocks() as demo:
with gr.Tab("Summarize"):
gr.Textbox()
if __name__ == "__main__":
demo.launch()
|