AI Model Hub for free: From December 1, 2024 until March 31, 2025, IONOS offers all foundation models of the AI Model Hub for free. Create your contract now and get your AI journey started today!
The IONOS AI Model Hub API allows you to access vector databases to persist your document collections and find semantically similar documents.
The vector database is used to persist documents in document collections. Each document is any form of pure text. In the document collection not only the input text is persisted, but also a transformation of the input text into an embedding. Each embedding is a vector of numbers. Input texts which are semantically similar have similar embeddings. A similarity search on a document collection finds the most similar embeddings for a given input text. These embeddings and the corresponding input text are returned to the user.
Overview
This tutorial is intended for developers. It assumes you have basic knowledge of:
REST APIs and how to call them
A programming language to handle REST API endpoints (for illustration purposes, the tutorials uses Python and Bash scripting)
By the end of this tutorial, you'll be able to:
Create, delete and query a document collection in the IONOS vector database
Save, delete and modify documents in the document collection and
Answer customer queries using the document collection.
Background
The IONOS AI Model Hub API offers a vector database that you can use to persist text in document collections without having to manage corresponding hardware yourself.
Our AI Model Hub API provides all required functionality without your data being transfered out of Germany.
Before you begin
To get started, you should open your IDE to enter Python code.
Next generate a header document to authenticate yourself against the endpoints of our REST API:
# Python example to specify headerAPI_TOKEN = [YOUR API TOKEN HERE]header ={"Authorization":f"Bearer {API_TOKEN}","Content-Type":"application/json"}
After this step, you have one variable header you can use to access our vector database.
To get started, you should open a terminal and ensure that curl and jq is installed. While curl is essential for communicating with our API service, we use jq throughout our examples the improve the readability of the results of our API.
Manage document collections
In this section you learn how to create a document collection. We will use this document collection to fill it with the data from your knowledge base in the next step.
To track, if something went wrong this section also shows how to:
List existing document collections
Remove document collections
Get meta data of a document collection
Create document collections
To create a document collection, you have to specify the name of the collection and a description and invoke the endpoint to generate document collections:
# Python example to specify headerimport requestsCOLLECTION_NAME = [ YOUR COLLECTION NAME HERE ]COLLECTION_DESCRIPTION = [ YOUR COLLECTION DESCRIPTION HERE ]endpoint ="https://inference.de-txl.ionos.com/collections"body ={"properties":{"name": COLLECTION_NAME,"description": COLLECTION_DESCRIPTION}}requests.post(endpoint, json=body, headers=header)
If the creation of the document collection was successful, the status code of the request is 201 and it returns a JSON document with all relevant information concerning the document collection.
To modify the document collection you need its identifier. You can extract it from the returned JSON document in the variable id.
List existing document collections
To ensure that the previous step went as expected, you can list the existing document collections.
To retrieve a list of all document collections saved by you:
# Python example to list existing document collectionsimport requestsendpoint ="https://inference.de-txl.ionos.com/collections"requests.get(endpoint, headers=header).json()
This query returns a JSON document consisting of your document collections and corresponding meta information
The result consists of 8 attributes per collection of which 3 are relevant for you:
id: The identifier of the document collection
properties.description: The textual description of the document collection
properties.documentsCount: The number of documents persisted in the document collection
If you have not created a collection yet, the field items is an empty list.
Remove a document collection
If the list of document collections consists of document collections you do not need anymore, you can remove a document collection by invoking:
# Python example to delete collectionsimport requestsCOLLECTION_ID = [ YOUR COLLECTION ID HERE ]endpoint =f"https://inference.de-txl.ionos.com/collections/{COLLECTION_ID}"requests.delete(endpoint, headers=header)
This query returns a status code which indicates whether the deletion was successful:
204: Status code for successfull deletion
404: Status code given the collection did not exist
Get meta data for a document collection
If you are interested in the meta data of a collection, you can extract it by invoking:
# Python example to extract meta informationimport requestsCOLLECTION_ID = [ YOUR COLLECTION ID HERE ]endpoint =f"https://inference.de-txl.ionos.com/collections/{COLLECTION_ID}"result = requests.get(endpoint, headers=header)result.status_code
This query returns a status code which indicates whether the collection exists:
200: Status code if the collection exists
404: Status code given the collection does not exist
The body of the request consists of all meta data of the document collection.
Manage documents in document collection
In this section, you learn how to add documents to the newly created document collection. To validate your insertion, this section also shows how to
List the documents in the document collection,
Get meta data for a document,
Update an existing document and
Prune a document collection.
Add documents to document collection
To add an entry to the document collection, you need to at least specify the content, the name of the content and the contentType:
# Python example to add documents to a collectionimport requestsimport base64COLLECTION_ID = [ YOUR COLLECTION ID HERE ]CONTENT = [ YOUR CONTENT HERE ]NAME = [ YOUR NAME HERE]content_base64 = base64.b64encode(CONTENT.encode('utf-8')).decode("utf-8")body ={"items": [{"properties":{"name": NAME,"contentType":"text/plain","content": content_base64}}]}endpoint =f"https://inference.de-txl.ionos.com/collections/{COLLECTION_ID}/documents"requests.put(endpoint, json=body, headers=header)
You need to encode your content using base64 prior to adding it to the document collection. This is done here in line 7 of the source code.
This request returns a status code 200 if adding the document to the document collection was successful.
List existing documents in document collection
To ensure that the previous step went as expected, you can list the existing documents of your document collection.
To retrieve a list of all documents in the document collection saved by you:
# Python example to list all existing documents in a document collectionsimport requestsCOLLECTION_ID = [ YOUR COLLECTION ID HERE ]endpoint_coll =f"https://inference.de-txl.ionos.com/collections/{COLLECTION_ID}"endpoint =f"{endpoint_coll}/documents"requests.get(endpoint, headers=header).json()
This query returns a JSON document consisting of your documents in the document collection and corresponding meta information
The result has a field items with all documents in the collection. This field consists of 10 attributes per entry of which 5 are relevant for you:
id: The identifier of the document
properties.content: The base64 encoded content of the document
properties.name: The name of the document
properties.description: The description of the document
properties.labels.number_of_tokens: The number of tokens in the document
If you have not created the collection yet, the request will return a status code 404. It will return a JSON document with the field items set to an empty list if no documents were added yet.
Get meta data for a document
If you are interested in the metadata of a document, you can extract it by invoking:
# Python example to access meta data from a documentimport requestsCOLLECTION_ID = [ YOUR COLLECTION ID HERE ]DOCUMENT_ID = [ YOUR DOCUMENT ID HERE ]endpoint_coll =f"https://inference.de-txl.ionos.com/collections/{COLLECTION_ID}"endpoint =f"{endpoint_coll}/documents/{DOCUMENT_ID}"requests.get(endpoint, headers=header).json()
This query returns a status code which indicates whether the document exists:
200: Status code if the document exists
404: Status code given the document does not exist
The body of the request consists of all meta data of the document.
Update a document
If you want to update a document, invoke:
# Python example to update a documentimport requestsimport base64COLLECTION_ID = [ YOUR COLLECTION ID HERE ]DOCUMENT_ID = [ YOUR DOCUMENT ID HERE ]CONTENT = [ YOUR CONTENT HERE ]NAME = [ YOUR NAME HERE ]endpoint_coll =f"https://inference.de-txl.ionos.com/collections/{COLLECTION_ID}"endpoint =f"{endpoint_coll}/documents/{DOCUMENT_ID}"content_base64 = base64.b64encode(CONTENT.encode('utf-8')).decode("utf-8")body ={"properties":{"id": DOCUMENT_ID,"name": NAME,"contentType":"text/plain","content": content_base64}}requests.put(endpoint, json=body, headers=header)
This will replace the existing entry in the document collection with the given id by the payload of this request.
Prune a document collection
If you want to remove all documents from a document collection invoke:
# Python example to prune a document collectionimport requestsCOLLECTION_ID = [ YOUR COLLECTION ID HERE ]endpoint_coll =f"https://inference.de-txl.ionos.com/collections/{COLLECTION_ID}"endpoint =f"{endpoint_coll}/documents"requests.delete(endpoint, headers=header)
This query returns the status code 204 if pruning the document collection was successful.
Query documents in the document collection
Finally, this section shows how to use the document collection and the contained documents to answer a user query.
To retrieve the documents relevant for answering the user query, invoke the query endpoint as follows:
# Python example to retrieve documents for answering a user queryimport requestsimport base64COLLECTION_ID = [ YOUR COLLECTION ID HERE ]USER_QUERY = [ USER QUERY HERE ]NUM_OF_DOCUMENTS = [ NUMBER OF DOCUMENTS TO CONSIDER HERE ]endpoint =f"https://inference.de-txl.ionos.com/collections/{COLLECTION_ID}/query"body ={"query": USER_QUERY,"limit": NUM_OF_DOCUMENTS }relevant_documents = requests.post(endpoint, json=body, headers=header)[ base64.b64decode(entry['document']['properties']['content']).decode()for entry in relevant_documents.json()['properties']['matches']]