Home / File/ version.py — langchain Source File

version.py — langchain Source File

Architecture documentation for version.py, a python file in the langchain codebase. 1 imports, 0 dependents.

File python CoreAbstractions MessageSchema 1 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  3c5c13d2_e965_7f35_b3b3_1ce2d7a48268["version.py"]
  3888b2bf_bffe_7c16_770f_a406d400119c["importlib"]
  3c5c13d2_e965_7f35_b3b3_1ce2d7a48268 --> 3888b2bf_bffe_7c16_770f_a406d400119c
  style 3c5c13d2_e965_7f35_b3b3_1ce2d7a48268 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

"""Main entrypoint into package."""

from importlib import metadata

try:
    __version__ = metadata.version(__package__)
except metadata.PackageNotFoundError:
    # Case where package metadata is not available.
    __version__ = ""

Subdomains

Functions

Dependencies

  • importlib

Frequently Asked Questions

What does version.py do?
version.py is a source file in the langchain codebase, written in python. It belongs to the CoreAbstractions domain, MessageSchema subdomain.
What functions are defined in version.py?
version.py defines 1 function(s): __version__.
What does version.py depend on?
version.py imports 1 module(s): importlib.
Where is version.py in the architecture?
version.py is located at libs/partners/fireworks/langchain_fireworks/version.py (domain: CoreAbstractions, subdomain: MessageSchema, directory: libs/partners/fireworks/langchain_fireworks).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free