Code Monkey home page Code Monkey logo

Comments (6)

antas-marcin avatar antas-marcin commented on May 26, 2024

@adambeer I have created e2e tests for v1.23 and they all pass. Can you tell me more about your setup? is it a Weaviate cluster? from which Weaviate version did you upgrade to v1.23.6?

from weaviate.

adambeer avatar adambeer commented on May 26, 2024

@antas-marcin Its a docker self hosted installation on Amazon Linux 2023. Its a completely fresh install, no other version of Weaviate was ever on the machine.

from weaviate.

antas-marcin avatar antas-marcin commented on May 26, 2024

Ok, and you are doing this by directly invoking our REST API, yes? you are not using any of our clients?

from weaviate.

adambeer avatar adambeer commented on May 26, 2024

from weaviate.

antas-marcin avatar antas-marcin commented on May 26, 2024

@adambeer I have used this with my local Weaviate running on port 8080 and I was successful.
Can you also try to run this code against your environment?

curl \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{
        "class": "Article",
        "description": "A written text, for example a news article or blog post",
        "vectorizer": "text2vec-openai",
        "moduleConfig": {
          "text2vec-openai": {
            "vectorizeClassName": false,
            "model": "text-embedding-3-large",
            "dimensions": 3072
          }
        },
        "properties": [
            {
            "dataType": [
                "string"
            ],
            "description": "Title of the article",
            "name": "title"
            },
            {
            "dataType": [
                "text"
            ],
            "description": "The content of the article",
            "name": "content"
            }
        ]
    }' \
    http://localhost:8080/v1/schema

from weaviate.

adambeer avatar adambeer commented on May 26, 2024

@antas-marcin I just realized that I had the wrong configurations in the properties set to a different module...my bad. Sorry for the waste of time. Im closing this issue.

from weaviate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.