llm

Creating GPT-Driven Applications Using LangChain

Creating GPT-Driven Applications Using LangChain

0
Large Language Models (LLMs) like OpenAI ChatGPT are called foundational models because even though they are trained for a relatively small set of tasks, they work exceptionally well for multiple unseen downstream tasks. While there is still some debate on how they are so good, at a high level it is quite easy to under what they do — they just predict the next word (read tokens). And all the cool tools you see built using these models, are nothing but the smart application of this feature.
Finance NLP 1.5.0 is out!

Finance NLP 1.5.0 is out!

0
Finance NLP is a John Snow Lab’s product, launched 2022 to provide state-of-the-art, autoscalable, domain-specific NLP on top of Spark. With more than 100 models, featuring Deep Learning and Transformer-based architectures Link
Knowledge Retrieval Architecture for LLM’s (2023)

Knowledge Retrieval Architecture for LLM’s (2023)

0
In this guide, I share my analysis of the current architectural best practices for data-informed language model applications. This particular subdiscipline is experiencing phenomenal research interest even by the standards of large language models - in this guide, I cite 8 research papers and 4 software projects, with a median initial publication date of November 22nd, 2022. Link
LLM as a Chatbot Service

LLM as a Chatbot Service

0
The purpose of this repository is to let people to use lots of open sourced instruction-following fine-tuned LLM models as a Chatbot service. Because different models behave differently, and different models require differently formmated prompts, I made a very simple library Ping Pong for model agnostic conversation and context managements. Link
Semantra

Semantra

0
Semantra is a multipurpose tool for semantically searching documents. Query by meaning rather than just by matching text. Link
Text2Diagram

Text2Diagram

0
Text2Diagram: Create schematic architecture diagrams, UML, flowcharts, Gnatt charts, mind maps, Sequence diagrams, User Journey and many more with natural language. Link
The Practical Guides for Large Language Models

The Practical Guides for Large Language Models

0
A curated (still actively updated) list of practical guide resources of LLMs. It’s based on our survey paper: Harnessing the Power of LLMs in Practice: A Survey on ChatGPT and Beyond and efforts from @xinyadu. The survey is partially based on the second half of this Blog. We also build an evolutionary tree of modern Large Language Models (LLMs) to trace the development of language models in recent years and highlights some of the most well-known models.
Autonomous Agents & Agent Simulations

Autonomous Agents & Agent Simulations

0
Over the past two weeks, there has been a massive increase in using LLMs in an agentic manner. Specifically, projects like AutoGPT, BabyAGI, CAMEL, and Generative Agents have popped up. The LangChain community has now implemented some parts of all of those projects in the LangChain framework. While researching and implementing these projects, we’ve tried to best understand what the differences between them are and what the novel features of each are.