Spaces:
Sleeping
Sleeping
File size: 6,329 Bytes
c089d04 2408f2c c089d04 2408f2c c089d04 | 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 | import os
import whisper
import mimetypes
import json
from langchain_community.tools import DuckDuckGoSearchRun
from langchain_community.tools import BraveSearch
from langchain_community.document_loaders import WikipediaLoader
from langchain_community.document_loaders import ArxivLoader
from langchain.tools import Tool, tool
from youtube_transcript_api import YouTubeTranscriptApi
from pytube import extract
from pydantic import BaseModel, Field
from langchain_experimental.utilities import PythonREPL
@tool
def get_youtube_transcript(page_url: str) -> str:
"""Get the transcript of a YouTube video
Args:
page_url (str): YouTube URL of the video
"""
try:
# get video ID from URL
video_id = extract.video_id(page_url)
# get transcript
ytt_api = YouTubeTranscriptApi()
transcript = ytt_api.fetch(video_id)
# keep only text
txt = '\n'.join([s.text for s in transcript.snippets])
return txt
except Exception as e:
return f"get_youtube_transcript failed: {e}"
@tool
def multiply(a: float, b: float) -> float:
"""Multiplies two numbers.
Args:
a (float): the first number
b (float): the second number
"""
return a * b
@tool
def add(a: float, b: float) -> float:
"""Adds two numbers.
Args:
a (float): the first number
b (float): the second number
"""
return a + b
@tool
def subtract(a: float, b: float) -> int:
"""Subtracts two numbers.
Args:
a (float): the first number
b (float): the second number
"""
return a - b
@tool
def divide(a: float, b: float) -> float:
"""Divides two numbers.
Args:
a (float): the first float number
b (float): the second float number
"""
if b == 0:
raise ValueError("Cannot divided by zero.")
return a / b
@tool
def modulus(a: int, b: int) -> int:
"""Get the modulus of two numbers.
Args:
a (int): the first number
b (int): the second number
"""
return a % b
@tool
def power(a: float, b: float) -> float:
"""Get the power of two numbers.
Args:
a (float): the first number
b (float): the second number
"""
return a**b
@tool
def get_web_search_result(query:str):
"""Fetches information on the web based on quey.
Args:
query: The search query.
Returns:
"""
print("get_web_search_result")
search_tool = DuckDuckGoSearchRun()
results = search_tool.invoke(query)
return results
@tool
def wiki_search(query: str) -> str:
"""Search Wikipedia for a query and return maximum 5 results.
Args:
query: The search query.
Returns:
An array documents
"""
print("wiki_search")
search_docs = WikipediaLoader(query=query, load_max_docs=5).load()
formatted_search_docs = "\n\n---\n\n".join(
[
f'<Document source="{doc.metadata["source"]}" page="{doc.metadata.get("page", "")}"/>\n{doc.page_content}\n</Document>'
for doc in search_docs
])
return {"wiki_results": formatted_search_docs}
@tool
def arvix_search(query: str) -> str:
"""Search Arxiv for a query and return maximum 3 result.
Args:
query: The search query.
Returns:
An array documents
"""
print("arvix_search")
search_docs = ArxivLoader(query=query, load_max_docs=3).load()
formatted_search_docs = "\n\n---\n\n".join(
[
f'<Document source="{doc.metadata["source"]}" page="{doc.metadata.get("page", "")}"/>\n{doc.page_content[:1000]}\n</Document>'
for doc in search_docs
])
return {"arvix_results": formatted_search_docs}
@tool
def transcribe_audio(file_path: str):
"""
Transcribes an audio file to text using local Whisper model.
Args:
file_path: Path to the audio file
Returns:
A dictionary containing the transcription and metadata
"""
try:
print(f"Transcribing audio file: {file_path}")
# Validate file exists
if not os.path.exists(file_path):
return {
"status": "error",
"message": f"File not found: {file_path}"
}
# Load a Whisper model - we'll use the small model for better performance
# Options include: tiny, base, small, medium, large
model = whisper.load_model("small")
# Transcribe the audio
result = model.transcribe(file_path)
print({
"status": "success",
"transcription": result["text"],
"language": result.get("language", "unknown"),
"file_path": file_path
})
# Return the transcription and metadata
return {
"status": "success",
"transcription": result["text"],
"language": result.get("language", "unknown"),
"file_path": file_path
}
except Exception as e:
print({
"status": "error",
"message": f"Error transcribing audio: {str(e)}"
})
return {
"status": "error",
"message": f"Error transcribing audio: {str(e)}"
}
class PythonREPLInput(BaseModel):
code: str = Field(description="The Python code string to execute.")
python_repl = PythonREPL()
python_repl_tool = Tool(
name="python_repl",
description="""A Python REPL shell (Read-Eval-Print Loop).
Use this to execute single or multi-line python commands.
Input should be syntactically valid Python code.
Always end your code with `print(...)` to see the output.
Do NOT execute code that could be harmful to the host system.
You are allowed to download files from URLs.
Do not use this tool as a web search.
Do NOT send commands that block indefinitely (e.g., `input()`).""",
func=python_repl.run,
args_schema=PythonREPLInput
)
available_tools = [
# get_web_search_result,
wiki_search,
arvix_search,
transcribe_audio,
python_repl_tool,
multiply,
add,
subtract,
divide,
modulus,
power,
get_youtube_transcript,
BraveSearch.from_api_key(
api_key=os.getenv("BRAVE_SEARCH_API_KEY"),
search_kwargs={"count": 5}
)
] |