#|%%--%%| r"""°°° # Utils Connect LLMs to tools and other sources of knowledge - Text Splitter - Embeddigs: - Return embeddigns (list of floats) - Vectorstores - Datastores to store embeddings of documents in vector form. - Expose methods for passing in a string and retrieve similar document - Python Repl - Bash - Requests Wrapper (requests lib) - Search ## Generic Utilities ### Bash °°°""" #|%%--%%| from langchain.utilities import BashProcess bash = BashProcess() print(bash.run("ls")) #|%%--%%| #TODO: rest of utils