deepdiver 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- deepdiver/__init__.py +38 -0
- deepdiver/content_processor.py +343 -0
- deepdiver/deepdive.py +801 -0
- deepdiver/deepdiver.yaml +79 -0
- deepdiver/notebooklm_automator.py +1441 -0
- deepdiver/podcast_manager.py +402 -0
- deepdiver/session_tracker.py +723 -0
- deepdiver-0.1.0.dist-info/METADATA +455 -0
- deepdiver-0.1.0.dist-info/RECORD +13 -0
- deepdiver-0.1.0.dist-info/WHEEL +5 -0
- deepdiver-0.1.0.dist-info/entry_points.txt +2 -0
- deepdiver-0.1.0.dist-info/licenses/LICENSE +21 -0
- deepdiver-0.1.0.dist-info/top_level.txt +1 -0
deepdiver/deepdiver.yaml
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# DeepDiver Configuration
|
|
2
|
+
# NotebookLM Podcast Automation System
|
|
3
|
+
|
|
4
|
+
BASE_PATH: ./output
|
|
5
|
+
|
|
6
|
+
# Podcast generation settings
|
|
7
|
+
PODCAST_SETTINGS:
|
|
8
|
+
quality: high
|
|
9
|
+
format: mp3
|
|
10
|
+
duration_limit: 30
|
|
11
|
+
language: en
|
|
12
|
+
voice: default
|
|
13
|
+
speed: normal
|
|
14
|
+
|
|
15
|
+
# Session tracking configuration
|
|
16
|
+
SESSION_TRACKING:
|
|
17
|
+
enabled: true
|
|
18
|
+
metadata_format: yaml
|
|
19
|
+
auto_save: true
|
|
20
|
+
session_dir: ./sessions
|
|
21
|
+
max_sessions: 100
|
|
22
|
+
|
|
23
|
+
# Browser automation settings
|
|
24
|
+
BROWSER_SETTINGS:
|
|
25
|
+
headless: false
|
|
26
|
+
cdp_url: http://localhost:9222
|
|
27
|
+
user_data_dir: /tmp/chrome-deepdiver
|
|
28
|
+
timeout: 60
|
|
29
|
+
retry_attempts: 3
|
|
30
|
+
wait_timeout: 10000
|
|
31
|
+
|
|
32
|
+
# Content processing settings
|
|
33
|
+
CONTENT_SETTINGS:
|
|
34
|
+
supported_formats:
|
|
35
|
+
- pdf
|
|
36
|
+
- docx
|
|
37
|
+
- txt
|
|
38
|
+
- md
|
|
39
|
+
- html
|
|
40
|
+
max_file_size: 50MB
|
|
41
|
+
auto_process: true
|
|
42
|
+
temp_dir: ./temp
|
|
43
|
+
cleanup_temp: true
|
|
44
|
+
|
|
45
|
+
# NotebookLM specific settings
|
|
46
|
+
NOTEBOOKLM_SETTINGS:
|
|
47
|
+
base_url: https://notebooklm.google.com
|
|
48
|
+
login_timeout: 60
|
|
49
|
+
upload_timeout: 120
|
|
50
|
+
generation_timeout: 300
|
|
51
|
+
download_timeout: 60
|
|
52
|
+
|
|
53
|
+
# Audio output settings
|
|
54
|
+
AUDIO_SETTINGS:
|
|
55
|
+
output_dir: ./output/podcasts
|
|
56
|
+
naming_pattern: "{title}_{timestamp}"
|
|
57
|
+
metadata_embed: true
|
|
58
|
+
quality_check: true
|
|
59
|
+
backup_enabled: true
|
|
60
|
+
|
|
61
|
+
# Logging configuration
|
|
62
|
+
LOGGING:
|
|
63
|
+
level: INFO
|
|
64
|
+
format: "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
|
|
65
|
+
file: ./logs/deepdiver.log
|
|
66
|
+
max_size: 10MB
|
|
67
|
+
backup_count: 5
|
|
68
|
+
|
|
69
|
+
# Assembly team configuration
|
|
70
|
+
ASSEMBLY_TEAM:
|
|
71
|
+
active_agents:
|
|
72
|
+
- Jerry
|
|
73
|
+
- Nyro
|
|
74
|
+
- Aureon
|
|
75
|
+
- JamAI
|
|
76
|
+
- Synth
|
|
77
|
+
session_encoding: true
|
|
78
|
+
musical_notation: true
|
|
79
|
+
glyph_display: true
|