mirror of
https://github.com/tcsenpai/agenticSeek.git
synced 2025-06-05 02:25:27 +00:00
readme update & tests add
This commit is contained in:
parent
6eee5cf350
commit
d75735ecb0
@ -4,12 +4,13 @@
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
English | [中文](./README_CHS.md) | [繁體中文](./README_CHT.md) | [Français](./README_FR.md)
|
||||
|
||||
# AgenticSeek: Manus-like AI powered by Deepseek R1 Agents.
|
||||
|
||||
|
||||
**A fully local alternative to Manus AI**, a voice-enabled AI assistant that codes, explores your filesystem, browse the web and correct it's mistakes all without sending a byte of data to the cloud. Built with reasoning models like DeepSeek R1, this autonomous agent runs entirely on your hardware, keeping your data private.
|
||||
|
||||
[](https://fosowl.github.io/agenticSeek.html)  [](https://discord.gg/4Ub2D6Fj)
|
||||
[](https://fosowl.github.io/agenticSeek.html)  [](https://discord.gg/4Ub2D6Fj) [](https://x.com/Martin993886460)
|
||||
|
||||
> 🛠️ **Work in Progress** – Looking for contributors!
|
||||
|
||||
|
@ -459,8 +459,8 @@ if __name__ == "__main__":
|
||||
#browser.go_to("https://github.com/Fosowl/agenticSeek")
|
||||
#txt = browser.get_text()
|
||||
#print(txt)
|
||||
#time.sleep(10)
|
||||
#browser.go_to("https://practicetestautomation.com/practice-test-login/")
|
||||
time.sleep(10)
|
||||
print("AntiCaptcha / Form Test")
|
||||
browser.go_to("https://www.google.com/recaptcha/api2/demo")
|
||||
inputs = browser.get_form_inputs()
|
||||
|
@ -212,6 +212,7 @@ class AgentRouter:
|
||||
("Hi, how’s your day going?", "talk"),
|
||||
("Can you find a file called resume.docx on my drive?", "files"),
|
||||
("Write a simple Java program to print 'Hello World'", "code"),
|
||||
("can you find the current stock of Tesla?", "web"),
|
||||
("Tell me a quick joke", "talk"),
|
||||
("Search online for the best coffee shops in Seattle", "web"),
|
||||
("Check if ‘project_plan.pdf’ exists in my Downloads folder", "files"),
|
||||
|
@ -16,11 +16,11 @@ class TestBrowserAgentParsing(unittest.TestCase):
|
||||
def test_extract_links(self):
|
||||
# Test various link formats
|
||||
test_text = """
|
||||
Check this out: https://example.com, and www.google.com!
|
||||
Check this out: https://thriveonai.com/15-ai-startups-in-japan-to-take-note-of, and www.google.com!
|
||||
Also try https://test.org/about?page=1.
|
||||
"""
|
||||
expected = [
|
||||
"https://example.com",
|
||||
"https://thriveonai.com/15-ai-startups-in-japan-to-take-note-of",
|
||||
"www.google.com",
|
||||
"https://test.org/about?page=1"
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user