Skip to content

Commit 12bbf5c

Browse files
committed
more scripts (image processing, wikipedia evaluation)
1 parent 792ed03 commit 12bbf5c

10 files changed

+191
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
*/.DS_Store
33
context/pg3008.txt
44
context/pg50221.txt
5+
image/images/*.png
6+
image/images/*.jpg

api/chat_python_httpclient.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import http.client
22
import json
33

4-
conn = http.client.HTTPConnection("localhost", 11434)
54
payload = {
65
"model": "llama3.2",
76
"temperature": 0.1,
@@ -12,6 +11,7 @@
1211
],
1312
"stream": False
1413
}
14+
conn = http.client.HTTPConnection("localhost", 11434)
1515
conn.request("POST", "/v1/chat/completions", json.dumps(payload),
1616
{"Content-Type": "application/json"})
1717
response_text = conn.getresponse().read().decode()

context/wikipedia_news.py

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import difflib
2+
import mwclient
3+
from langchain_ollama import ChatOllama
4+
from datetime import datetime, timedelta
5+
6+
def wikipedia_news(page_title, weeks):
7+
page = mwclient.Site('en.wikipedia.org').pages[page_title]
8+
prev_content, lines = None, []
9+
for rev in page.revisions(start=datetime.now() - timedelta(weeks=weeks), dir='newer', prop='content'):
10+
current_content = rev.get('*', '')
11+
if prev_content:
12+
diff_lines = difflib.unified_diff(prev_content.splitlines(), current_content.splitlines(), lineterm='')
13+
lines.extend(line for line in diff_lines if line.startswith('+') and not line.startswith('+++'))
14+
prev_content = current_content
15+
return lines
16+
17+
def analyst(news):
18+
llm = ChatOllama(model = "gemma3:4b", temperature = 0.1, num_predict = 1024)
19+
messages = [
20+
("system", "You are a news assistant and a financial analyst. Summarize and analyse the text from the user input. The user reports company news. " +
21+
"Make sections about the following topics: what happened, is this good or bad for the company, what is the possible impact on the stock price."),
22+
("human", news),
23+
]
24+
return llm.invoke(messages).content
25+
26+
companies = ["Tesla, Inc.", "Apple Inc.", "Microsoft Corporation", "Amazon.com, Inc.", "Alphabet Inc.", "Facebook, Inc.",
27+
"NVIDIA Corporation", "PayPal Holdings, Inc.", "Netflix, Inc.", "Adobe Inc.", "Salesforce.com, Inc.", "Intel Corporation",
28+
"Cisco Systems, Inc.", "Oracle Corporation", "IBM", "Qualcomm Inc.", "Zoom Video Communications, Inc.", "Spotify Technology S.A.",
29+
"Snap Inc.", "Twitter, Inc.", "Uber Technologies, Inc.", "Lyft, Inc.", "Airbnb, Inc.", "DoorDash, Inc.",
30+
"Palantir Technologies Inc.", "Snowflake Inc.", "Roblox Corporation", "Coinbase Global, Inc.", "Unity Software Inc.",
31+
"C3.ai, Inc.", "UiPath Inc.", "Asana, Inc.", "Slack Technologies, Inc.", "Atlassian Corporation Plc"]
32+
news = '\n'.join(wikipedia_news("Tesla, Inc.", 1))
33+
#print(news)
34+
print(analyst(news))

context/wikipedia_stockanalyst.py

Whitespace-only changes.

image/image_basic_ollama_api.py

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import base64
2+
import http.client
3+
import json
4+
5+
image_path = "images/scalarproduct.png"
6+
with open(image_path, "rb") as image_file:
7+
base64_image = base64.b64encode(image_file.read()).decode('utf-8')
8+
9+
payload = {
10+
"model": "gemma3:4b",
11+
"temperature": 0.1,
12+
"max_tokens": 1024,
13+
"messages": [
14+
{"role": "system", "content": "You are a helpful assistant."},
15+
{"role": "user", "content": [
16+
{"type": "text", "text": "Explain whats in the image: first write down the exact content of the image then explain it."},
17+
{"type": "image_url", "image_url": {"url": f"data:image/png;base64,{base64_image}"}}
18+
]}
19+
],
20+
"stream": False
21+
}
22+
23+
try:
24+
conn = http.client.HTTPConnection("localhost", 11434)
25+
conn.request("POST", "/v1/chat/completions", json.dumps(payload),
26+
{"Content-Type": "application/json"})
27+
response = conn.getresponse()
28+
response_text = response.read().decode()
29+
print("Response text read:" + response_text)
30+
response_json = json.loads(response_text)
31+
print(json.dumps(response_json, indent=2))
32+
except Exception as e:
33+
print(f"Error: {e}")
34+
finally:
35+
conn.close()

image/image_basic_openai_api.py

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import base64
2+
import http.client
3+
import json
4+
5+
image_path = "images/scalarproduct.png"
6+
with open(image_path, "rb") as image_file:
7+
base64_image = base64.b64encode(image_file.read()).decode('utf-8')
8+
9+
payload = {
10+
"model": "gemma3:4b",
11+
"temperature": 0.1,
12+
"max_tokens": 1024,
13+
"messages": [
14+
{"role": "system", "content": "You are a helpful assistant."},
15+
{
16+
"role": "user",
17+
"content": "Explain whats in the image: first write down the exact content of the image then explain it.",
18+
"images": [base64_image]
19+
}
20+
],
21+
"stream": False
22+
}
23+
24+
try:
25+
conn = http.client.HTTPConnection("localhost", 11434)
26+
conn.request("POST", "http://localhost:11434/api/chat", json.dumps(payload),
27+
{"Content-Type": "application/json"})
28+
response = conn.getresponse()
29+
response_text = response.read().decode()
30+
response_json = json.loads(response_text)
31+
print(json.dumps(response_json, indent=2))
32+
except Exception as e:
33+
print(f"Error: {e}")
34+
finally:
35+
conn.close()

image/image_catalog.py

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
import os
2+
import json
3+
import base64
4+
import http.client
5+
6+
def image_catalog_entry(image_file):
7+
with open(image_file, "rb") as image_file:
8+
base64_image = base64.b64encode(image_file.read()).decode('utf-8')
9+
format = {
10+
"title": "Image Catalog Entry",
11+
"type": "object",
12+
"properties": {
13+
"description": { "type": "string" },
14+
"purpose": { "type": "string" },
15+
"size": { "type": "string" },
16+
"price": { "type": "string" }
17+
},
18+
"required": [ "description", "purpose", "size", "price" ]
19+
}
20+
payload = {
21+
"model": "gemma3:4b",
22+
"temperature": 0.1,
23+
"max_tokens": 1024,
24+
"messages": [
25+
{"role": "system", "content": "You are a helpful assistant."},
26+
{
27+
"role": "user",
28+
"content": "Make a catalog entry of a sales object. Describe the object in the image, its purpose, size, and price and write it as json.",
29+
"images": [base64_image]
30+
}
31+
],
32+
"stream": False,
33+
"format": format
34+
}
35+
36+
try:
37+
conn = http.client.HTTPConnection("localhost", 11434)
38+
conn.request("POST", "http://localhost:11434/api/chat", json.dumps(payload),
39+
{"Content-Type": "application/json"})
40+
response = conn.getresponse()
41+
response_text = response.read().decode()
42+
response_json = json.loads(response_text)
43+
print(json.dumps(response_json, indent=2))
44+
except Exception as e:
45+
print(f"Error: {e}")
46+
finally:
47+
conn.close()
48+
49+
image_folder = "images"
50+
image_files = os.listdir(image_folder)
51+
image_files = [f"{image_folder}/{image_file}" for image_file in image_files]
52+
for image_file in image_files:
53+
catalog_entry = image_catalog_entry(image_file)
54+
print(catalog_entry)

image/image_fetch.sh

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#!/bin/bash
2+
3+
mkdir -p images
4+
5+
urls=(
6+
"https://upload.wikimedia.org/wikipedia/commons/e/e7/Everest_North_Face_toward_Base_Camp_Tibet_Luca_Galuzzi_2006.jpg"
7+
"https://upload.wikimedia.org/wikipedia/commons/5/56/USA-Stamp-1973-ZIPCode.jpg"
8+
"https://upload.wikimedia.org/wikipedia/commons/a/a8/Picture_of_fruit_and_vegetables.jpg"
9+
"https://upload.wikimedia.org/wikipedia/commons/c/c1/Wikipedia_Logo_as_ASCII_Art_recompress.png"
10+
"https://upload.wikimedia.org/wikipedia/commons/a/a3/June_odd-eyed-cat.jpg"
11+
"https://upload.wikimedia.org/wikipedia/commons/f/f8/Wikipedia_editor_hat_w_dog.JPG"
12+
"https://upload.wikimedia.org/wikipedia/en/b/be/Disloyal_man_with_his_girlfriend_looking_at_another_girl.jpg"
13+
"https://upload.wikimedia.org/wikipedia/commons/0/06/ElectricBlender.jpg"
14+
"https://upload.wikimedia.org/wikipedia/en/e/ed/Nyan_cat_250px_frame.PNG"
15+
"https://upload.wikimedia.org/wikipedia/en/f/fd/Pusheen_the_Cat.png"
16+
"https://upload.wikimedia.org/wikipedia/commons/d/df/202406111126_IMG_1268.jpg"
17+
"https://upload.wikimedia.org/wikipedia/commons/6/6f/Mychtar_and_his_Snowdog.jpg"
18+
"https://upload.wikimedia.org/wikipedia/commons/2/28/Commodore64withdisk.jpg"
19+
"https://upload.wikimedia.org/wikipedia/commons/0/02/Minecraft_Wiki_2023_textless.png"
20+
"https://upload.wikimedia.org/wikipedia/en/d/de/Doom_ingame_1.png"
21+
)
22+
23+
for url in "${urls[@]}"; do
24+
filename=$(basename "$url")
25+
if [ ! -f "images/$filename" ]; then
26+
wget -P images "$url"
27+
else
28+
echo "images/$filename already exists, skipping download."
29+
fi
30+
done

image/images/.gitkeep

Whitespace-only changes.

image/images/scalarproduct.png

270 KB
Loading

0 commit comments

Comments
 (0)