18:01:55 INFO httpx: HTTP Request: POST http://localhost:8010/v1/chat/completions "HTTP/1.1 200 OK"
18:02:00 INFO httpx: HTTP Request: POST http://localhost:8003/tools/call "HTTP/1.1 200 OK"
18:02:05 INFO httpx: HTTP Request: POST http://localhost:8003/tools/call "HTTP/1.1 200 OK"
18:02:05 INFO agent_v2.agent.loop: Tool kg.kg_search_entities → ok
18:02:10 INFO httpx: HTTP Request: POST http://localhost:8010/v1/chat/completions "HTTP/1.1 200 OK"
18:02:10 INFO agent_v2.agent.loop: Tool kg.kg_search_chunks → ok
18:02:18 INFO httpx: HTTP Request: POST http://localhost:8010/v1/chat/completions "HTTP/1.1 200 OK"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import subprocess | |
| import sys | |
| from pathlib import Path | |
| if len(sys.argv) != 2: | |
| print("Usage: python download_youtube.py <URL | playlist | channel | txt file>") | |
| sys.exit(1) | |
| source = sys.argv[1] |
OlderNewer