feat: search fix web search

This commit is contained in:
Florian Hönicke
2023-05-19 18:09:13 +02:00
parent cda99f80d2
commit 077f03b049
3 changed files with 24 additions and 12 deletions

View File

@@ -140,7 +140,8 @@ It will be tested with the following scenario: '{{test_description}}'.
For the implementation use the following package(s): '{{packages}}'.
The code must start with the following imports:
```{linebreak +'from .apis import GPT_3_5_Turbo' if is_using_gpt_3_5_turbo else ""}
```{linebreak +'from .apis import GPT_3_5_Turbo' if is_using_gpt_3_5_turbo else ""}{linebreak +'from .apis import search_web, search_images' if is_using_google_custom_search else ""}{linebreak}
import json
import requests
```