Abraham E. Tavarez
commited on
Commit
·
ef9e684
0
Parent(s):
project initial setup
Browse files- .gitignore +10 -0
- .python-version +1 -0
- README.md +4 -0
- detector/face.py +0 -0
- detector/search.py +0 -0
- detector/voice.py +0 -0
- pyproject.toml +9 -0
- uv.lock +0 -0
.gitignore
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Python-generated files
|
2 |
+
__pycache__/
|
3 |
+
*.py[oc]
|
4 |
+
build/
|
5 |
+
dist/
|
6 |
+
wheels/
|
7 |
+
*.egg-info
|
8 |
+
|
9 |
+
# Virtual environments
|
10 |
+
.venv
|
.python-version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
3.13
|
README.md
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# 🧠 Project Overview
|
2 |
+
|
3 |
+
Agent Name: Deepfake Watchdog
|
4 |
+
Goal: Help users monitor the web for unauthorized use of their face or voice (e.g. deepfakes, impersonations).
|
detector/face.py
ADDED
File without changes
|
detector/search.py
ADDED
File without changes
|
detector/voice.py
ADDED
File without changes
|
pyproject.toml
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "deepfake-watchdog"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Add your description here"
|
5 |
+
readme = "README.md"
|
6 |
+
requires-python = ">=3.13"
|
7 |
+
dependencies = [
|
8 |
+
"gradio[mcp]>=5.32.1",
|
9 |
+
]
|
uv.lock
ADDED
The diff for this file is too large to render.
See raw diff
|
|