Skip to main content

LangChain components for Dartmouth-hosted models.

Project description

Dartmouth LangChain

documentation tests

LangChain components for Dartmouth-hosted models.

Getting started

  1. Install the package:
pip install langchain_dartmouth
  1. Obtain a Dartmouth API key from developer.dartmouth.edu
  2. Store the API key as an environment variable called DARTMOUTH_API_KEY:
export DARTMOUTH_API_KEY=<your_key_here>
  1. Obtain a Dartmouth Chat API key
  2. Store the API key as an environment variable called DARTMOUTH_CHAT_API_KEY
export DARTMOUTH_CHAT_API_KEY=<your_key_here>

[!NOTE] You may want to make the environment variables permanent or use a .env file

What is this?

This library provides an integration of Darmouth-provided generative AI resources with the LangChain framework.

There are three main components currently implemented:

  • Large Language Models
  • Embedding models
  • Reranking models

All of these components are based on corresponding LangChain base classes and can be used seamlessly wherever the corresponding LangChain objects can be used.

Using the library

Large Language Models

There are three kinds of Large Language Models (LLMs) provided by Dartmouth:

  • On-premise:
    • Base models without instruction tuning (require no special prompt format)
    • Instruction-tuned models (also known as Chat models) requiring specific prompt formats
  • Cloud:
    • Third-party, pay-as-you-go chat models (e.g., OpenAI's GPT 4o, Google Gemini)

Using a Dartmouth-hosted base language model:

from langchain_dartmouth.llms import DartmouthLLM

llm = DartmouthLLM(model_name="codellama-13b-hf")

response = llm.invoke("Write a Python script to swap two variables.")
print(response)

Using a Dartmouth-hosted chat model:

from langchain_dartmouth.llms import ChatDartmouth


llm = ChatDartmouth(model_name="llama-3-8b-instruct")

response = llm.invoke("Hi there!")

print(response.content)

[!NOTE] The required prompt format is enforced automatically when you are using ChatDartmouth.

Using a Dartmouth-provided third-party chat model:

from langchain_dartmouth.llms import ChatDartmouthCloud


llm = ChatDartmouthCloud(model_name="openai.gpt-4o-mini-2024-07-18")

response = llm.invoke("Hi there!")


### Embeddings model

Using a Dartmouth-hosted embeddings model:

```{python}
from langchain_dartmouth.embeddings import DartmouthEmbeddingsModel


embeddings = DartmouthEmbeddingsModel()

embeddings.embed_query("Hello? Is there anybody in there?")

print(response)

Reranking

Using a Dartmouth-hosted reranking model:

from langchain_dartmouth.retrievers.document_compressors import DartmouthReranker
from langchain.docstore.document import Document


docs = [
    Document(page_content="Deep Learning is not..."),
    Document(page_content="Deep learning is..."),
    ]

query = "What is Deep Learning?"
reranker = DartmouthReranker(model_name="bge-reranker-v2-m3")
ranked_docs = reranker.compress_documents(query=query, documents=docs)

print(ranked_docs)

Available models

For a list of available models, check the respective list() method of each class.

License

Created by Simon Stone for Dartmouth College under Creative Commons CC BY-NC 4.0 License.
For questions, comments, or improvements, email Research Computing.
Creative Commons License

Except where otherwise noted, the example programs are made available under the OSI-approved MIT license.

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

langchain_dartmouth-0.2.13.tar.gz (1.6 MB view details)

Uploaded Source

Built Distribution

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

langchain_dartmouth-0.2.13-py3-none-any.whl (17.1 kB view details)

Uploaded Python 3

File details

Details for the file langchain_dartmouth-0.2.13.tar.gz.

File metadata

  • Download URL: langchain_dartmouth-0.2.13.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for langchain_dartmouth-0.2.13.tar.gz
Algorithm Hash digest
SHA256 45c833e9f44ef00cead041258a0358c0fadd9a540825b10c12514ae21e673f6a
MD5 5b45c1de6c4b7ebb7ac771ab073b4078
BLAKE2b-256 779b16a5097035a8bb9570fab930b9aaa50c6c59c5fac39bd7c0151407873432

See more details on using hashes here.

Provenance

The following attestation bundles were made for langchain_dartmouth-0.2.13.tar.gz:

Publisher: pypi.yml on dartmouth/langchain-dartmouth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file langchain_dartmouth-0.2.13-py3-none-any.whl.

File metadata

File hashes

Hashes for langchain_dartmouth-0.2.13-py3-none-any.whl
Algorithm Hash digest
SHA256 e74357e3f3167d349f67f145eb93c256b215770b17b36a0f512924f9ad7e9f71
MD5 690d7003b2fc96c4be0588f98bc7713a
BLAKE2b-256 dcf23393636cd39fd0280a2e3b29bb8678e6d23a30f4b74ba1e1b9ea9ed87e83

See more details on using hashes here.

Provenance

The following attestation bundles were made for langchain_dartmouth-0.2.13-py3-none-any.whl:

Publisher: pypi.yml on dartmouth/langchain-dartmouth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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