Playing with the Weaviate ChatGPT Plugin Guide as a Weaviate noob, and have a bunch of questions.
-
Do sandboxes have logs? How would I access? What exactly is in the Docker image used in the tests? I see some logs in that container, though nothing corresponding to my test failures (see attached log)
-
Trying to get the server going locally against a public access sandbox. If I do, rebuild dev container,
poetry shell
,make test
, I get a few things ( see here) -
upsert-ing seems to work, can see via GraphiQL and from total object count on sandbox info (sandbox-ty1t8yec).
-
tests/server/test_database.py:13: AssertionError because instead of “creating schema” I see, “schema already exists, skipping”.
-
test_upsert
andtest_delete
fail becauseweaviate_client.data_object.get
seems to silently fail? -
Might be some fundamental ops thing I’m doing wrong here. Thoughts?
-
I don’t actually see off-hand how the auth flow would work. Blog implies the code should work as is with an auth-enabled machine after deploying to Fly io, but the client doesn’t seem to be instantiated with auth. Running with Fly io I get auth errors, as I’d expect, so wondering: Was the auth enabled flow possibly never actually implemented?