Spaces:
Paused
Paused
| 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) |