mgokg commited on
Commit
ee3485c
·
verified ·
1 Parent(s): ea74c1e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +39 -34
app.py CHANGED
@@ -19,18 +19,55 @@ custom_css = """
19
  border: 1 px solid white;
20
  }
21
  """
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  def get_impressum_text(search_term):
23
 
24
  headers = {
25
  "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
26
  }
27
-
28
  #search_results = google_search(search_term)
29
  url = f"https://www.google.com/search?q=mpressum {search_term}"
30
  response = requests.get(url, headers=headers)
31
  soup = BeautifulSoup(response.content, 'html.parser')
32
  impressum_div = soup.find('body')
33
- return impressum_div.text
 
 
34
 
35
  def websearch(prompt):
36
 
@@ -56,38 +93,6 @@ def websearch(prompt):
56
  print("Kein div mit der Klasse 'MjjYud' gefunden.")
57
  return None
58
 
59
- def predict(prompt):
60
- generation_config = {
61
- "temperature": 0.4,
62
- "top_p": 0.95,
63
- "top_k": 40,
64
- "max_output_tokens": 8192,
65
- "response_mime_type": "text/plain",
66
- }
67
-
68
- model = genai.GenerativeModel(
69
- model_name="gemini-2.0-flash-exp",
70
- generation_config=generation_config,
71
- )
72
-
73
- chat_session = model.start_chat(
74
- history=[
75
- {
76
- "role": "user",
77
- "parts": [
78
- "return a json object with the contact details. leave blank if information is not available. here is the json schema:\n\n{\n \"organization\": \"\",\n \"address\": \"\",\n \"phone\": \"\",\n \"email\": \"\",\n \"website\": \"\"\n}\n\nyou can find the contact details here: \nImpressum – Aero-Club Bamberg e.V.\nAero-Club Bamberg\nhttps://aeroclub-bamberg.de › impressum\nAero-Club Bamberg e.V.. Zeppelinstraße 18. D-96052 Bamberg. Tel.: 0951 / 45 1 45. Fax: 0951 / 13 22 20. E-Mail: [email protected].\n",
79
- ],
80
- },
81
- {
82
- "role": "model",
83
- "parts": [
84
- "```json\n{\n \"organization\": \"Aero-Club Bamberg e.V.\",\n \"address\": \"Zeppelinstraße 18, D-96052 Bamberg\",\n \"phone\": \"0951 / 45 1 45\",\n \"email\": \"[email protected]\",\n \"website\": \"https://aeroclub-bamberg.de\"\n}\n```\n",
85
- ],
86
- },
87
- ]
88
- )
89
-
90
- response = chat_session.send_message("INSERT_INPUT_HERE")
91
 
92
 
93
  # Create the Gradio interface
 
19
  border: 1 px solid white;
20
  }
21
  """
22
+
23
+ def predict(prompt):
24
+ generation_config = {
25
+ "temperature": 0.4,
26
+ "top_p": 0.95,
27
+ "top_k": 40,
28
+ "max_output_tokens": 8192,
29
+ "response_mime_type": "text/plain",
30
+ }
31
+
32
+ model = genai.GenerativeModel(
33
+ model_name="gemini-2.0-flash-exp",
34
+ generation_config=generation_config,
35
+ )
36
+
37
+ chat_session = model.start_chat(
38
+ history=[
39
+ {
40
+ "role": "user",
41
+ "parts": [
42
+ "return a json object with the contact details. leave blank if information is not available. here is the json schema:\n\n{\n \"organization\": \"\",\n \"address\": \"\",\n \"phone\": \"\",\n \"email\": \"\",\n \"website\": \"\"\n}\n\nyou can find the contact details here: \nImpressum – Aero-Club Bamberg e.V.\nAero-Club Bamberg\nhttps://aeroclub-bamberg.de › impressum\nAero-Club Bamberg e.V.. Zeppelinstraße 18. D-96052 Bamberg. Tel.: 0951 / 45 1 45. Fax: 0951 / 13 22 20. E-Mail: [email protected].\n",
43
+ ],
44
+ },
45
+ {
46
+ "role": "model",
47
+ "parts": [
48
+ "```json\n{\n \"organization\": \"Aero-Club Bamberg e.V.\",\n \"address\": \"Zeppelinstraße 18, D-96052 Bamberg\",\n \"phone\": \"0951 / 45 1 45\",\n \"email\": \"[email protected]\",\n \"website\": \"https://aeroclub-bamberg.de\"\n}\n```\n",
49
+ ],
50
+ },
51
+ ]
52
+ )
53
+
54
+ response = chat_session.send_message(f"return a json object with the contact details. leave blank if information is not available. here is the json schema:\n\n{\n \"organization\": \"\",\n \"address\": \"\",\n \"phone\": \"\",\n \"email\": \"\",\n \"website\": \"\"\n}\n\nyou can find the contact details here: \n {prompt}")
55
+ return response
56
+
57
  def get_impressum_text(search_term):
58
 
59
  headers = {
60
  "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
61
  }
62
+ vereine = []
63
  #search_results = google_search(search_term)
64
  url = f"https://www.google.com/search?q=mpressum {search_term}"
65
  response = requests.get(url, headers=headers)
66
  soup = BeautifulSoup(response.content, 'html.parser')
67
  impressum_div = soup.find('body')
68
+ json_data = predict(impressum_div.text)
69
+ vereine.append(json_data)
70
+ return vereine
71
 
72
  def websearch(prompt):
73
 
 
93
  print("Kein div mit der Klasse 'MjjYud' gefunden.")
94
  return None
95
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
 
97
 
98
  # Create the Gradio interface