Code Monkey home page Code Monkey logo

qdrant's Introduction

Hello ๐ŸŒ I'm Sai Vinay G

I'm an enthusiastic Full Stack Software Engineer with years of experience and eagerness to work with various new technologies!

  • ๐Ÿ’ป Experienced on creating high performance millisecond response time applications with Redis cache and Elasticsearch/Opensearch.
  • ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป Highly experienced in building and maintaining end to end systems in the AWS cloud.
  • ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป Experienced in scheduling and orchestrating business flows using Ariflow.
  • ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป Experienced in building knowledgehub chatbots using vector databases and LLMs.
  • ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป Experienced in building React SPA and NextJs SSR apps.
  • ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป Experienced in designing and maintaining different versions of REST API.
  • ๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป Experienced in building REST API servers with schema validations in Java and Python.

Connect with me:

LinkdeIN Gmail Facebook

Languages and Tools:

Java Spring Javascript React Node.js MySQL Snowflake DB Python RedisDB Elasticsearch Git AWS Terraform Terraform


qdrant's People

Contributors

agourlay avatar allcontributors[bot] avatar anveq avatar azayarni avatar coszio avatar dengyiping avatar dependabot[bot] avatar dzhao avatar e-ivkov avatar eltociear avatar ffuugoo avatar generall avatar gvelo avatar ibrahim-akrab avatar ivanpleshkov avatar jesse-bakker avatar jojiiofficial avatar kgrech avatar kshivendu avatar kwkr avatar melekes avatar nirantk avatar paulotten avatar russcam avatar snyk-bot avatar timvisee avatar tranzystorekk avatar trean avatar xzfc avatar zzzz-vincent avatar

qdrant's Issues

Simplify REST API nesting - Copy issue 3323

Is your feature request related to a problem? Please describe.

Current structure of filter request might sometimes be too verbose:

POST collections/my-col/points/search
{
	"filter": {
		"must": [
			{
                               "key": "test",
				"match": {
					"value": 123
				}
			}
		]
	}
}

Describe the solution you'd like

Allow it to be like this

POST collections/my-col/points/search
{
	"filter": {
		"must": {
                        "key": "test",
			"match": {
				"value": 123
			}
		}
	}
}

if there is only one condition.

Describe alternatives you've considered

Go even further and

POST collections/my-col/points/search
{
	"filter": {
            "key": "test",
            "match": {
                "value": 123
            }
	}
}

Additional context

This changes should only be applied to REST API, gRPC should not change. Changes should be backward compatible, meaning that old clients should still be able to work with new interface.

Other suggestions of how to simplify API schema are welcome.

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.