Skip to main content

A simple package for create chatbots using LangChain

Project description

Simple Chatbot Lib

This repository contains several modules that can be used to create chatbots capable of interacting with users. Each module serves a specific purpose and provides different functionalities for building chatbot applications.

Classes

BaseChatbot

The BaseChatbot class provides a base class for creating chatbots. It includes methods for starting a conversation, creating system messages with restrictions, creating prompt messages for the user, and creating introduction messages. This class serves as the foundation for more specialized chatbot classes.

SimpleChatbot

The SimpleChatbot class extends the BaseChatbot class and represents a simple chatbot. In addition to the functionalities provided by the BaseChatbot, the SimpleChatbot is capable of retrieving context for a given question and creating system messages with the provided contexts. This class is useful for chatbots that require contextual information to provide accurate responses.

AgentChatbot

The AgentChatbot class extends the BaseChatbot class and represents an agent chatbot. In addition to the functionalities provided by the BaseChatbot, the AgentChatbot is capable of choosing tools to answer a user's question, executing a set of tools and returning the results, and creating a results message based on the provided results. This class is useful for chatbots that require access to a set of tools to perform specific tasks.

ToolResult and ToolSet

The ToolResult and ToolSet represent the result of a tool execution and a set of tools, respectively. These classes are useful for chatbots that need to execute specific functions or tools to provide answers or perform tasks.

ContextService and APIContextService

The ContextService and APIContextService represent classes for retrieving context from various sources. The ContextService is an abstract base class that defines a common interface for context services, while the APIContextService is a concrete implementation that retrieves context from an API. These classes are useful for chatbots that require external sources of information to provide accurate responses.

MessageMapper

The MessageMapper class provides methods for mapping messages between different formats. It includes methods for converting a list of tuple messages to a list of base messages and vice versa. This class is useful for chatbots that need to work with different message formats.

AzureAISearchContextService

The AzureAISearchContextService class retrieves context from Azure using Azure Cognitive Search. It extends the ContextService class and includes methods for retrieving context from Azure. This class is useful for chatbots that need to search for information in an Azure index.

Usage

To use these classes, simply import the desired module into your chatbot application and create an instance of the corresponding class. You can then use the methods and attributes provided by the class to interact with users and perform specific tasks.

from simple_chatbot_lib.chatbots import SimpleChatbot
from simple_chatbot_lib.mappers import MessageMapper
from simple_chatbot_lib.third_parties.context_services import AzureAISearchContextService
from langchain_openai import ChatOpenAI

llm = ChatOpenAI(openai_api_key='...')

az_ai_search_context = AzureAISearchContextService(
    azure_key='...',
    endpoint='...',
    index_name='...'
)

simple_chatbot = SimpleChatbot(llm=llm,
                               context_services=[az_ai_search_context],
                               restrictions=['Do not answer questions that deviate from the informed context'],
                               personality='Friendly, helpful, and respectful',
                               language='English',
                               base_messages=None,
                               message_mapper=MessageMapper())

response = simple_chatbot('What are your business hours?')
print(response)

Requirements

  • Python >= 3.11
  • LangChain >= 0.1.0 < 0.2.0

License

This project is licensed under the terms of the GNU General Public License v3.0. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

simple_chatbot_lib-0.1.5.tar.gz (47.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

simple_chatbot_lib-0.1.5-py3-none-any.whl (35.5 kB view details)

Uploaded Python 3

File details

Details for the file simple_chatbot_lib-0.1.5.tar.gz.

File metadata

  • Download URL: simple_chatbot_lib-0.1.5.tar.gz
  • Upload date:
  • Size: 47.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for simple_chatbot_lib-0.1.5.tar.gz
Algorithm Hash digest
SHA256 8acf6d3c1d64a1e03596fa51c45ea3795879995aebadc6d4f0a46d3b8ed2cbae
MD5 216b3df5efbdb4b0365f565399b286c3
BLAKE2b-256 dfc7589143dfb9bb2281f7a25c7363efedebc3f803838d801a0d518aa19cb2a8

See more details on using hashes here.

File details

Details for the file simple_chatbot_lib-0.1.5-py3-none-any.whl.

File metadata

File hashes

Hashes for simple_chatbot_lib-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 b386b881d8032e52afe71c1fdb762b61a743f65f8db3499848c6b7e36720cc9f
MD5 6fb6595b32b3135870d52ab218e760a4
BLAKE2b-256 09cdd2ca693226f75894834f4f63ca91ac48e53b82e90190fab297afccdab8f4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page