🔎 feat: search fix web search

This commit is contained in:
Florian Hönicke
2023-05-18 20:08:41 +02:00
parent 3101bd1978
commit e1f0205663
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ from dev_gpt.options.generate.static_files.microservice.apis import search_web,
def test_web_search():
results = search_web("jina", 10)
assert len(results) == 10
assert "jina" in results[0]
assert "jina" in results[0].lower()
assert not results[0].startswith("http")
def test_image_search():