Is there a GUI console to access the db data after install the weaviate?

Description

I installed the latest version of weaviate on my local with docker, I would like to know how to access the data with the some kind of GUI console, does it support a default console , or is there a GUI client to access the data?

docker run -d \
–name weaviate
-p 8080:8080
-e QUERY_DEFAULTS_LIMIT=20
-e AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED=true
-e PERSISTENCE_DATA_PATH=/var/lib/weaviate
-e ENABLE_MODULES=text2vec-openai
-e OPENAI_APIKEY=
-e CLUSTER_HOSTNAME=weaviate-node
-e CLUSTER_DISCOVERY_METHOD=none
semitechnologies/weaviate:latest

Server Setup Information

  • Weaviate Server Version: latest
  • Deployment Method: docker
  • Multi Node? Number of Running Nodes:
  • Client Language and Version:
  • Multitenancy?:

Any additional Information

Hello @Sherry,

Welcome to our community! We’re happy to have you here—enjoy your journey Weaviating!

We have a GUI that apps, and tools are designed to internal with Weaviate DB, incredibly helpful and user-friendly. However, these are currently available only within our cloud environment. If you deploy a cluster in our cloud, you’ll be able to access and interact with these features

Best regards,
Mohamed Shahin
Weaviate Support

1 Like

Hi @Mohamed_Shahin Thanks for your reply :slightly_smiling_face:
One more question: how to set the customized model (I would like to use Zhipu’s model)when I initiate a Weaviate DB instance, and use it to create the object? Can we set the environment variables (DEFAULT_VECTORIZER_MODULE=custom,CUSTOM_VECTORIZER_URL)for the cloud instance?

version: '3.4'
services:
  weaviate:
    image: semitechnologies/weaviate:latest
    ports:
      - "8080:8080"
    environment:
      - QUERY_DEFAULTS_LIMIT=20
      - AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED=true
      - PERSISTENCE_DATA_PATH=/var/lib/weaviate
      - DEFAULT_VECTORIZER_MODULE=custom
      - CUSTOM_VECTORIZER_URL=http://zhipu-api-url/v1/vectorize
      - CUSTOM_VECTORIZER_API_KEY=your_zhipu_api_key

Hi @Sherry,

I am not sure if we currently working on integration with Zhipu models. Our available model providers here:

Alternatively until then, if you are able to vectorize your data outside of Weaviate, you can embed the vectors into Weaviate using the “Bring Your Own Vectors” feature.

If you’d like integration with Zhipu models, you can open a feature request

Best regards,
Mohamed Shahin
Weaviate Support