Skip to content

Instantly share code, notes, and snippets.

View axinyyyx's full-sized avatar

axinyyyx · attack my mind axinyyyx

View GitHub Profile
@rishabhsahilll
rishabhsahilll / RealtimeSearchEngine.py
Last active February 14, 2025 17:11
Real Time Search Engine AI - Real-Time AI Search Assistant RealtimeSearchEngine.py is an advanced AI assistant integrating real-time Google search and Groq’s LLaMA-3 model for accurate, up-to-date responses. It processes user queries, retrieves web data, and refines answers using AI, ensuring professional and well-structured responses.
from googlesearch import search
from groq import Groq
from json import load, dump
import datetime
from dotenv import dotenv_values
env_vars = dotenv_values(".env")
Username = env_vars.get("Username")
@rishabhsahilll
rishabhsahilll / Voice.html
Last active February 14, 2025 17:08
Voice.html is a simple speech recognition webpage using the Web Speech API to convert spoken words into text in real time. It enables real-time voice-to-text conversion with start and stop controls, making it ideal for hands-free input in the AI Jarvis Assistant.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Speech Recognition</title>
</head>
<body>
<button id="start" onclick="startRecognition()">Start Recognition</button>
<button id="end" onclick="stopRecognition()">Stop Recognition</button>
<p id="output"></p>
<script>
@rishabhsahilll
rishabhsahilll / SystemInfo.py
Last active February 14, 2025 17:04
SystemInfo.py is a Python script that monitors CPU usage, RAM usage, and battery level using the psutil library, providing real-time system performance insights.
import psutil
system_info = f'''
Initializing system check...
Checking CPU Usage...
Checking RAM Usage...
Checking Battery Level...
CPU Usage: {psutil.cpu_percent(interval=1)}%
RAM Usage: {psutil.virtual_memory().percent}%