Spaces:
Running
Running
File size: 1,171 Bytes
e397647 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
import httpcore
import json
import asyncio
import ssl
from urllib.parse import urlparse
async def embeddings_run_httpcore(input_text, url="https://sanbo1200-jina-embeddings-v3.hf.space/api/v1/embeddings"):
ssl_context = ssl.create_default_context()
async with httpcore.AsyncConnectionPool(ssl_context=ssl_context) as http:
data = {
"input": input_text,
"model": "jinaai/jina-embeddings-v3"
}
response = await http.request(
method=b"POST",
url=url.encode(),
headers=[
(b"content-type", b"application/json"),
(b"accept", b"application/json"),
],
content=json.dumps(data).encode()
)
if response.status == 200:
return json.loads(response.content)
else:
raise Exception(f"Request failed with status {response.status}")
async def main():
try:
result = await embeddings_run_httpcore("Your text string goes here")
print(f"---{result}")
except Exception as e:
print(f"Error: {e}")
if __name__ == "__main__":
asyncio.run(main()) |