EXAM_RAG_API / testcolabollama.py
MinaNasser's picture
1st
1bc3f18
raw
history blame contribute delete
298 Bytes
import requests
url = "https://elwanda-agnathous-tragically.ngrok-free.dev/api/embeddings"
headers = {
"Content-Type": "application/json"
}
data = {"model": "embeddinggemma:latest", "prompt": "Hello world"}
r = requests.post(url, json=data, headers=headers)
print(r.status_code)
print(r.text)