Harrison Chase
2f6833d433
hotfix ( #1742 )
2023-03-17 09:05:08 -07:00
Harrison Chase
aa854988bf
bump version to 114 ( #1739 )
2023-03-17 08:26:06 -07:00
Alexandros Mavrogiannis
5d8dc83ede
Bump duckdb-engine to 0.7.0 ( #1726 )
...
Resolves https://github.com/hwchase17/langchain/issues/1272
Resolves https://github.com/hwchase17/langchain/issues/1578
2023-03-16 21:55:35 -07:00
Alex Strick van Linschoten
d6bbf395af
Loosen PyYAML dependency ( #1698 )
...
Hitting some dependency issues relating to this strict pinning. Unsure
of the knock-on effects, but wanted to propose this loosening down a
couple of versions.
2023-03-16 17:05:36 -07:00
Harrison Chase
3c24684522
harrison/bump-version-00113 ( #1701 )
2023-03-15 14:49:47 -07:00
Harrison Chase
0b29e68c17
Harrison/pgvector ( #1679 )
...
Co-authored-by: Aman Kumar <krsingh.aman@gmail.com>
2023-03-14 21:13:58 -07:00
Harrison Chase
e5c1659864
bump ver ( #1668 )
2023-03-14 13:05:17 -07:00
Harrison Chase
8965a2f0af
bump and hotfix ( #1665 )
2023-03-14 11:12:53 -07:00
Harrison Chase
e326939759
bump version 110 ( #1662 )
2023-03-14 10:21:35 -07:00
Harrison Chase
d53ff270e0
bump version to 109 ( #1646 )
2023-03-13 15:52:35 -07:00
Eugene Yurtsev
bd4a2a670b
Add copy button to sphinx notebooks ( #1622 )
...
This adds a copy button at the top right corner of all notebook cells in
sphinx
notebooks.
2023-03-12 21:15:07 -07:00
Harrison Chase
c0ad5d13b8
bump to version 108 ( #1613 )
2023-03-12 09:50:45 -07:00
Harrison Chase
c6bfa00178
bump version to 107 ( #1590 )
2023-03-10 15:39:30 -08:00
Harrison Chase
bd335ffd64
bump version to 106 ( #1562 )
2023-03-09 10:20:54 -08:00
Harrison Chase
2a7215bc3b
Harrison/prompt issues ( #1537 )
2023-03-08 16:56:10 -08:00
Harrison Chase
aba58e9e2e
Harrison/bumpver104 ( #1525 )
2023-03-08 09:46:02 -08:00
Harrison Chase
d0062c7a9a
bump version to 103 ( #1498 )
2023-03-07 10:08:01 -08:00
Harrison Chase
312c319d8b
bump version to 102 ( #1471 )
2023-03-06 10:50:44 -08:00
Harrison Chase
56b850648f
cr ( #1436 )
2023-03-04 08:38:56 -08:00
Nuno Campos
499e76b199
Allow the regular openai class to be used for ChatGPT models ( #1393 )
...
Co-authored-by: Harrison Chase <hw.chase.17@gmail.com>
2023-03-02 09:04:18 -08:00
Harrison Chase
dda5259f68
bump version to 0.0.99 ( #1390 )
2023-03-02 07:25:59 -08:00
Kacper Łukawski
9ac442624c
Add Qdrant named arguments ( #1386 )
...
This PR:
- Increases `qdrant-client` version to 1.0.4
- Introduces custom content and metadata keys (as requested in #1087 )
- Moves all the `QdrantClient` parameters into the method parameters to
simplify code completion
2023-03-02 07:05:14 -08:00
Harrison Chase
4b5e850361
chatgpt wrapper ( #1367 )
2023-03-01 11:47:01 -08:00
Harrison Chase
c01f9100e4
bump version to 0097 ( #1365 )
2023-03-01 08:20:24 -08:00
Harrison Chase
924bba5ce9
bump version ( #1342 )
2023-02-28 08:48:32 -08:00
Harrison Chase
f61858163d
bump version to 0.0.95 ( #1324 )
2023-02-27 07:45:54 -08:00
Harrison Chase
166cda2cc6
Harrison/deeplake ( #1316 )
...
Co-authored-by: Davit Buniatyan <d@activeloop.ai>
2023-02-26 22:35:04 -08:00
Harrison Chase
aaad6cc954
Harrison/atlas db ( #1315 )
...
Co-authored-by: Brandon Duderstadt <brandonduderstadt@gmail.com>
2023-02-26 22:11:38 -08:00
Harrison Chase
002da6edc0
ruff ruff ( #1203 )
2023-02-25 08:59:52 -08:00
Harrison Chase
0963096491
fix imports ( #1288 )
2023-02-25 08:48:02 -08:00
Harrison Chase
c5dd491a21
bump version to 0094 ( #1280 )
2023-02-24 08:26:34 -08:00
Harrison Chase
6d37d089e9
bump version to 0093 ( #1251 )
2023-02-23 08:00:42 -08:00
Dennis Antela Martinez
53c67e04d4
add aleph alpha llm ( #1207 )
...
Integrate Aleph Alpha's client into Langchain to provide access to the
luminous models - more info on latest benchmarks here:
https://www.aleph-alpha.com/luminous-performance-benchmarks
2023-02-22 10:37:36 -08:00
Harrison Chase
4e43b0efe9
bump version 0092 ( #1204 )
2023-02-21 08:56:07 -08:00
Naveen Tatikonda
0118706fd6
Add Support for OpenSearch Vector database ( #1191 )
...
### Description
This PR adds a wrapper which adds support for the OpenSearch vector
database. Using opensearch-py client we are ingesting the embeddings of
given text into opensearch cluster using Bulk API. We can perform the
`similarity_search` on the index using the 3 popular searching methods
of OpenSearch k-NN plugin:
- `Approximate k-NN Search` use approximate nearest neighbor (ANN)
algorithms from the [nmslib](https://github.com/nmslib/nmslib ),
[faiss](https://github.com/facebookresearch/faiss ), and
[Lucene](https://lucene.apache.org/ ) libraries to power k-NN search.
- `Script Scoring` extends OpenSearch’s script scoring functionality to
execute a brute force, exact k-NN search.
- `Painless Scripting` adds the distance functions as painless
extensions that can be used in more complex combinations. Also, supports
brute force, exact k-NN search like Script Scoring.
### Issues Resolved
https://github.com/hwchase17/langchain/issues/1054
---------
Signed-off-by: Naveen Tatikonda <navtat@amazon.com>
2023-02-20 18:39:34 -08:00
Harrison Chase
a5a14405ad
bump version to 0091 ( #1181 )
2023-02-20 08:53:45 -08:00
Harrison Chase
05a05bcb04
bump version to 0.0.90 ( #1157 )
2023-02-19 12:53:55 -08:00
Harrison Chase
a83ba44efa
Harrison/ver0089 ( #1144 )
2023-02-18 14:25:37 -08:00
Harrison Chase
6322b6f657
bump version 0.0.88 ( #1090 )
2023-02-16 07:32:32 -08:00
Harrison Chase
bac676c8e7
bump version ( #1057 )
2023-02-15 07:09:10 -08:00
Harrison Chase
f05f025e41
bump version to 0086 ( #1050 )
2023-02-14 07:14:40 -08:00
Harrison Chase
88bebb4caa
Harrison/llm integrations ( #1039 )
...
Co-authored-by: jped <jonathanped@gmail.com>
Co-authored-by: Justin Torre <justintorre75@gmail.com>
Co-authored-by: Ivan Vendrov <ivan@anthropic.com>
2023-02-13 22:06:25 -08:00
Harrison Chase
fc2502cd81
bump version to 0085 ( #1017 )
2023-02-13 07:32:36 -08:00
Harrison Chase
0c553d2064
Harrion/kg ( #1016 )
...
Co-authored-by: William FH <13333726+hinthornw@users.noreply.github.com>
2023-02-12 23:01:26 -08:00
Harrison Chase
6d44a2285c
bump version to 0084 ( #1005 )
2023-02-12 07:47:10 -08:00
Harrison Chase
e51fad1488
Harrison/0083 ( #996 )
...
Co-authored-by: Harrison Chase <harrisonchase@Harrisons-MBP.attlocal.net>
2023-02-11 08:29:28 -08:00
Harrison Chase
231da14771
bump version to 0082 ( #980 )
...
Co-authored-by: Harrison Chase <harrisonchase@Harrisons-MacBook-Pro.local>
2023-02-10 11:38:24 -08:00
Harrison Chase
c64f98e2bb
Harrison/format agent instructions ( #973 )
...
Co-authored-by: Andrew White <white.d.andrew@gmail.com>
Co-authored-by: Harrison Chase <harrisonchase@Harrisons-MBP.attlocal.net>
Co-authored-by: Peng Qu <82029664+pengqu123@users.noreply.github.com>
2023-02-10 10:07:26 -08:00
Harrison Chase
5f8082bdd7
Harrison/deps ( #963 )
...
Co-authored-by: Jon Luo <20971593+jzluo@users.noreply.github.com>
Co-authored-by: Harrison Chase <harrisonchase@Harrisons-MBP.attlocal.net>
2023-02-09 23:19:19 -08:00
Harrison Chase
e323d0cfb1
bump version 0081 ( #956 )
...
Co-authored-by: Harrison Chase <harrisonchase@Harrisons-MBP.attlocal.net>
2023-02-09 08:29:11 -08:00