Skip to content

Releases: tmc/langchaingo

v0.1.3

04 Jan 04:21
@tmc tmc
c56c33d
Compare
Choose a tag to compare

What's Changed

  • prompts: move prompts to embedded text files by @chyroc in #451
  • vectorstores: Add ids to the return when adding documents in any vectorstore by @jaylalakiya in #448
  • Skip tests that are currently failing (#415) by @eliben in #466
  • Refactor LanguageModel interface away by @eliben in #468
  • templates: Fix up gonja/jinja2 handling by @tmc in #469
  • vectorstores: Add opensearch by @ThomasP1988 in #464
  • Run go.mod tidy to make IDE happy by @eliben in #470
  • vectorstores: Add azureaisearch by @ThomasP1988 in #462
  • textsplitter: handle singular markdown tokens in markdown_splitter by @corani in #467
  • Remove duplicated and unused LLMResult type from schema by @eliben in #472
  • Remove unused schema types by @eliben in #473
  • embeddings: Fix issue caused by new implementation of BatchTexts function by @jaylalakiya in #475
  • GenerateContent - initial experimental API with OpenAI implementation by @eliben in #480
  • Docs: fix jinja typo by @chyroc in #478
  • Fix: Add error handle for Chat Generate by @NileZhou in #481
  • support agent finish callback by @h3l in #476
  • Clear out GetNumTokens by @eliben in #483
  • Remove use of GetNumToken from example (followup on #483) by @eliben in #484
  • chore: bump chroma-go to latest version by @bjwswang in #485

New Contributors

Full Changelog: v0.1.2...v0.1.3

v0.1.2

29 Dec 01:00
@tmc tmc
Compare
Choose a tag to compare

What's Changed

  • embeddings: Fix BatchTexts function by @jaylalakiya in #453
  • vectorstores: fix chroma not return score from SimilaritySearch by @Abirdcfly in #449
  • Feat: use chains callback as streaming func by @chyroc in #447
  • fix: avoid panic when call openai.NewChat() and openai.New() by @h3l in #460
  • support callback handler to llm chain by @h3l in #461
  • add StopReason field in Generation struct. by @me020523 in #458
  • feat: callbacks.Handler support handle error by @chyroc in #457
  • vectorstores: fix weaviate not return score from SimilaritySearch by @Abirdcfly in #454
  • Feat: support render prompt template with jinjia2 by @chyroc in #450
  • memory: add ConversationWindowBuffer by @Abirdcfly in #411
  • feat: support combine multi callbacks by @chyroc in #446

New Contributors

Full Changelog: v0.1.1...v0.1.2

v0.1.1

20 Dec 21:35
@tmc tmc
560f278
Compare
Choose a tag to compare

Updates dependencies, adds some pgvector improvements, test improvements.

What's Changed

New Contributors

Full Changelog: v0.1.0...v0.1.1

v0.1.0

13 Dec 04:46
@tmc tmc
Compare
Choose a tag to compare

Our first versioned release!

What's Changed

  • Add output parsers, prompt templates, memory, llmChain and example by @FluffyKebab in #2
  • Move namespace in pinecone index from a struct field to function argument by @FluffyKebab in #4
  • exp: Move recent contributions into exp subdir for now by @tmc in #14
  • fix: rename test exp packages and fix all test compiling error by @nekomeowww in #17
  • docs: added CONTRIBUTING.md and CODE_OF_CONDUCT.md by @nekomeowww in #16
  • Add support for local LLMs by @rdbell in #22
  • schema: Add schema package by @tmc in #23
  • chore: improve code qualities and use idiomatic way to implementation by @nekomeowww in #27
  • docs: added Pull Request template and improved CONTRIBUTING.md by @nekomeowww in #26
  • schema: add more upstream schema concepts by @tmc in #32
  • exp/prompts: move exp/prompts closer to acceptable state by @tmc in #33
  • chains: add support for stop words by @Abraxas-365 in #30
  • llm type check fix by @anignx in #36
  • *: fix space in .github folder by @Fraser-Isbester in #40
  • ci: Add linting, building, and testing to ci by @Fraser-Isbester in #42
  • exp: change names of files and start using actual schema by @FluffyKebab in #44
  • exp/agents: flesh out agents implementation by @Abraxas-365 in #38
  • lint: add more sophisticated lint rules by @tmc in #47
  • lint: adjust the line limit of funlen linter to 90 by @nekomeowww in #49
  • exp/prompts: fix missing return and unexpected token by @nekomeowww in #48
  • lint: disable testpackage by @nekomeowww in #51
  • test: introduce stretchr/testify package for better test development experience by @nekomeowww in #28
  • exp/memory: add multiple fixes by @FluffyKebab in #53
  • prompts: introduced PromptTemplate along with the relevant types by @nekomeowww in #34
  • prompts: simplify prompts package by @tmc in #57
  • exp: adopt prompts by @tmc in #58
  • memory: add version outside of exp by @FluffyKebab in #60
  • ci: trigger lint-build-test GitHub Actions within PRs by @nekomeowww in #54
  • output parsers: add structured and list by @FluffyKebab in #55
  • OpenAI model selection and Chat completions by @rdbell in #62
  • context: add context throughout by @tmc in #66
  • memory: remove exp version by @FluffyKebab in #67
  • Make the MRKL agent functional by @rdbell in #69
  • textsplitter: add version outside of exp by @FluffyKebab in #63
  • exp: adopt new outputparser and textsplitter by @FluffyKebab in #71
  • docs: add docs folder and parity matrix md file by @O-Roma in #73
  • embeddings: refactor and move out of exp by @FluffyKebab in #75
  • documentloader: add interface and text loader by @FluffyKebab in #72
  • llms: Options refactor by @tmc in #80
  • Update parity_matrix.md with document loaders by @O-Roma in #82
  • openaillm: new openaillm support options by @yubing744 in #78
  • typo: link directed to 404 page, updated typo by @aldarisbm in #81
  • vectorstores: add interface and support for pinecone by @FluffyKebab in #76
  • chain: add standard interface, run, call and llm by @FluffyKebab in #70
  • chains: Fix call and improve errors by @tmc in #86
  • llms: Enhance chat completion capabilities in openai implementation by @tmc in #85
  • exp: remove chains, vectorstores, documentloaders and examples by @FluffyKebab in #84
  • chains: add retrieval QA, stuff documents and prompt selector by @FluffyKebab in #83
  • pinecone: fix panic in doRequest by @tarunKoyalwar in #88
  • chains: Add LLMMathChain by @tmc in #89
  • vectorstore: add optional namespace paramater by @FluffyKebab in #87
  • vectorstores: add options to ToRetriever by @FluffyKebab in #91
  • Feat(openaiclient): add Option for custom HTTP client by @obitech in #92
  • agents: refactor to better match upstream and increase consistency by @FluffyKebab in #95
  • chains: add refine documents chain and summarization by @FluffyKebab in #96
  • Feat: Parse OpenAI status code, error message by @obitech in #93
  • prompts: Add sprig templates by @tmc in #97
  • llms: Add ChatLLM type by @tmc in #98
  • Refactor(llms): simplify option handling by @obitech in #101
  • Fix(pinecone): correct docstrings by @obitech in #100
  • move agents and tools out of exp by @FluffyKebab in #99
  • feat: add support for Google VertexAI based PaLM API by @alvarowolfx in #103
  • pinecone similaritySearch: Include score threshold based filtering by @cduggn in #110
  • Improving HuggingfaceLLM: Configurable RepoID option by @EvilFreelancer in #109
  • llms: AddWithStreamingFunc by @tmc in #106
  • agents: Fix the issue with the executor tool nil panic and align the prompt o… by @bdqfork in #105
  • gpt2 used as default model of huggingface package by @EvilFreelancer in #111
  • llm-openai-client: openai base url option by @swuecho in #117
  • agents: refactor options by @FluffyKebab in #118
  • feat: Options like WithSeed, WithTopK and so on by @EvilFreelancer in #115
  • fix: sync go module to latest in openai-chat-example by @bjwswang in #122
  • document loaders: add csv loader by @mvrilo in #127
  • docs: add examples by @FluffyKebab in #126
  • docs: added package level comments to codebase by @teezzan in #135
  • vectorstores: add weaviate by @ryomak in #132
  • agents: add conversational agent by @bdqfork in #133
  • chains: add more call options by @FluffyKebab in #137
  • prompts: add chat prompt template by @FluffyKebab in #136
  • feat: LocalLLM improvments, llms.CallOptions as local-llm call arguments by @EvilFreelancer in #131
  • pinecone restquery: Add filter logic to limit searches based on metadata by @cduggn in #129
  • tools: add wikipedia by @FluffyKebab in #123
  • agents: fix bug and add option for returning steps by @FluffyKebab in #143
  • Docs: start documentation site by @FluffyKebab in #141
  • vectorstores: Weaviate Add filter logic  by @ryomak in #142
  • chains: add api chain by @byebyebruce in #138
  • llms: split LLMChat and LLM into different structs by @FluffyKebab in #128
  • chains: use langauge model instead of LLM and add predict by @FluffyKebab in #148
  • docs: add examples for Pinecone vectorstore operations: AddDocuments and SimilaritySearch by @cduggn in #147
  • openai: Add all CallOptions to Chat and Completion Requests, add GenerationInfo to Chat response by @mcartagenah in #146
  • CI: Add ci step and Makefile entry to ensure examples are healthy by @mvrilo in #151
  • chains: add conversation chain and fix run by @FluffyKebab in #155
  • agents: add memory to executor and add test fo...
Read more