Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also orlearn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also.Learn more about diff comparisons here.
base repository:coderdevin/chatgpt-retrieval-plugin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base:742fdf7
Choose a base ref
Loading
...
head repository:openai/chatgpt-retrieval-plugin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare:b28ddce
Choose a head ref
Loading
  • 12commits
  • 53files changed
  • 14contributors

Commits on Jun 23, 2023

  1. Update pyproject.toml to newer Chroma release (openai#297)

    * Update pyproject.toml to newer Chroma releaseVersion [0.3.25](https://github.com/chroma-core/chroma/releases/tag/0.3.25) of Chroma removes a lot of heavyweight dependencies, which should considerably reduce install sizes for downstream projects. This PR bumps the required Chroma version to take advantage.* Update poetry.lock---------Co-authored-by: Chelsea Voss <csvoss@openai.com>
    @atroyn@csvoss
    atroyn andcsvoss authoredJun 23, 2023
    Configuration menu
    Copy the full SHA
    9a12c11View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2023

  1. Elasticsearch datastore support (openai#343)

    * added es datastore* updated readmy and toml* updated readme* clean up code + implemented a few more methods* add tests + fix issues found* update documentation* update notebook* clean up notebook---------Co-authored-by: Sebastian Montero <smonteroparis@icloud.com>
    @joemcelroy@sebastian-montero
    joemcelroy andsebastian-montero authoredJul 28, 2023
    Configuration menu
    Copy the full SHA
    e8fda70View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2023

  1. Configuration menu
    Copy the full SHA
    abb7488View commit details
    Browse the repository at this point in the history
  2. [Enhancement] Updating Azure Cognitive Search client library (openai#342

    )* Updating Azure Cognitive Search client library* Update Azure Cognitive Search library to 11.4.0b8
    @pablocastro
    pablocastro authoredOct 17, 2023
    Configuration menu
    Copy the full SHA
    ae657e2View commit details
    Browse the repository at this point in the history
  3. Update setup.md with LlamaIndex updated field. (openai#363)

    In setup.md in the LlamaIndex setup section - Changed GPTSimpleVectorIndex to GPTVectorStoreIndex to match the updated field in LlamaIndex. Fixes issueopenai#307.
    @JRAlexander
    JRAlexander authoredOct 17, 2023
    Configuration menu
    Copy the full SHA
    4ccb44dView commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    602de33View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    04e92a4View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    13a0b03View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2023

  1. Adding Azure CosmosDB Mongo vCore as a datastore. (openai#379)

    * Adding mongo vCore as a datastore* updating the readme file
    @aayush3011
    aayush3011 authoredNov 16, 2023
    Configuration menu
    Copy the full SHA
    b3459b1View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2023

  1. chore: pinecone response to DocumentChunkWithScore (openai#395)

    When dealing with Pinecone occurs sporadically situations where `metadata["text"]` contains a datetime object somehow.This raises an Internal Error since Pydantic is unable to create a DocumentChunkWithScore object.We force the typing to str to fix this.Example:```{'matches': [{'id': '68_1',              'metadata': {'document_id': '68',                           'text': datetime.date(2265, 12, 1)},              'score': 0.760368824,              'values': []},```
    @rufimelo99
    rufimelo99 authoredDec 4, 2023
    Configuration menu
    Copy the full SHA
    b02139dView commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2024

  1. Add support for new embeddings models and instructions for use with C…

    …ustom GPTs / function calling (openai#411)* Update to support new embeddings models, custom GPTs, and function calling* Update README.md* Update README.md* Update README.md
    @isafulf
    isafulf authoredFeb 8, 2024
    Configuration menu
    Copy the full SHA
    b808c10View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2024

  1. [Feature] Addition of MongoDB Atlas datastore (openai#428)

    * docker compose file.* search example.* mongodb atlas datastore.* refactor, docstring and notebook cleaning.* docstring.* fix attributes names.* Functional tests.* Example adjustement.* setup.md* remove some useless comments.* wrong docker image.* Minor documentation fixes.* Update example.* refactor.* default as a default collection.* TODO resolved.* Refactor delete.* fix readme and setup.md* add warning when delete without criteria.* rename private function.* replace pymongo to motor and fix integration test.* Refactor code and adjust tests* wait for assert function.* Update docs/providers/mongodb_atlas/setup.mdCo-authored-by: Jib <Jibzade@gmail.com>* Update datastore/providers/mongodb_atlas_datastore.pyCo-authored-by: Jib <Jibzade@gmail.com>* Increase oversampling factor to 10.* Update tests/datastore/providers/mongodb_atlas/test_mongodb_datastore.pyCo-authored-by: Jib <Jibzade@gmail.com>* Update tests/datastore/providers/mongodb_atlas/test_mongodb_datastore.pyCo-authored-by: Jib <Jibzade@gmail.com>* Update datastore/providers/mongodb_atlas_datastore.pyCo-authored-by: Jib <Jibzade@gmail.com>* Init docstring.* Default parameters* Update datastore/providers/mongodb_atlas_datastore.pyCo-authored-by: Jib <Jibzade@gmail.com>* refactor sample_embeddings.* Apply suggestions from code reviewCo-authored-by: Jib <Jibzade@gmail.com>* refactor delete.* Version added.* Update datastore/providers/mongodb_atlas_datastore.pyCo-authored-by: Jib <Jibzade@gmail.com>* Removed _atlas from folder name to keep it simple and self-consistent* Expanded setup.md* Fixed a couple typos in docstrings* Add optional EMBEDDING_DIMENSION to get_embedding* Fixed typo in kwarg* Extended setup.md* Edits to environment variable table* Added authentication token descriptions* Removed hardcoded vector size* Added semantic search example* Added instructions to integration tests* Cleanup* Removed pathname from example.* Override DataStore.upsert in  MongoDBAtlasDataStore to increase performance.* upsert now returns ids of chunks, which is what each datastore document is* Added full integration test* test_integration now uses FastAPI TestClient* Retries query until response contains number requested---------Co-authored-by: Emanuel Lupi <emanuel.lupi91@gmail.com>Co-authored-by: Jib <Jibzade@gmail.com>
    @caseyclements@WaVEV@Jibola
    3 people authoredApr 24, 2024
    Configuration menu
    Copy the full SHA
    b28ddceView commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp