File size: 447 Bytes
e397647
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import requests
import curlify

def get_curl_command(input_text, url="https://sanbo1200-jina-embeddings-v3.hf.space/api/v1/embeddings"):
    headers = {
        "Content-Type": "application/json"
    }
    data = {
        "input": input_text,
        "model": "jinaai/jina-embeddings-v3"
    }
    
    r = requests.post(url, headers=headers, json=data)
    return curlify.to_curl(r.request)

print(get_curl_command("Your text string goes here"))