From 7e4e374f621d9d1c37f37ff6555e013cdb3b03a0 Mon Sep 17 00:00:00 2001 From: abc <98614666+xtekky@users.noreply.github.com> Date: Fri, 6 Oct 2023 19:52:17 +0100 Subject: ~ | new g4f GUI --- g4f/gui/server/internet.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 g4f/gui/server/internet.py (limited to 'g4f/gui/server/internet.py') diff --git a/g4f/gui/server/internet.py b/g4f/gui/server/internet.py new file mode 100644 index 00000000..0d9636a3 --- /dev/null +++ b/g4f/gui/server/internet.py @@ -0,0 +1,28 @@ +from requests import get +from datetime import datetime + +def search(internet_access, prompt): + print(prompt) + + try: + if internet_access == False: + return [] + + search = get('https://ddg-api.herokuapp.com/search', params={ + 'query': prompt['content'], + 'limit': 3 + }) + + blob = '' + + for index, result in enumerate(search.json()): + blob += f'[{index}] "{result["snippet"]}"\nURL:{result["link"]}\n\n' + + date = datetime.now().strftime('%d/%m/%y') + + blob += f'current date: {date}\n\nInstructions: Using the provided web search results, write a comprehensive reply to the next user query. Make sure to cite results using [[number](URL)] notation after the reference. If the provided search results refer to multiple subjects with the same name, write separate answers for each subject. Ignore your previous response if any.' + + return [{'role': 'user', 'content': blob}] + + except Exception as e: + return [] \ No newline at end of file -- cgit v1.2.3