Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Tags: tilotech/langchain-tilores

Tags

0.3.0

Toggle 0.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Edge plotly tools (#8)

* Add edge and plotly tools

* Bump minimal tilores SDK version

* Prepare release

* Bump minimal tilores SDK version

* Add missing dependency

0.2.2

Toggle 0.2.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #7 from tilotech/fix-version

Fix version

0.2.1

Toggle 0.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #5 from tilotech/fix-version

fix version

0.2.0

Toggle 0.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Improve chat example (#4)

* Add PDF processing

* Remove unused code and document environment variables

* Fix spelling

* Bumb version and enable automatic PyPi publishing

* Bumb version and enable automatic PyPi publishing

* Move github workflow to correct folder

0.1.4

Toggle 0.1.4's commit message
Bump version to 0.1.4

- Updated project version from 0.1.3 to 0.1.4 in `pyproject.toml`.

0.1.3

Toggle 0.1.3's commit message
Bump version to 0.1.3

- Updated pyproject.toml file to reflect new version
- Previous version was 0.1.2, now updated to 0.1.3

0.1.2

Toggle 0.1.2's commit message
Fix method call in chat.py and bump version to 0.1.2

- Corrected the instantiation of `tilores_tools.search_tool` by changing it to a method call in `examples/chat/chat.py`.
- Updated the version in `pyproject.toml` from 0.1.1 to 0.1.2.

0.1.1

Toggle 0.1.1's commit message
Bump version to 0.1.1

- Updated project version from 0.1.0 to 0.1.1 in pyproject.toml

0.1.0

Toggle 0.1.0's commit message
Release 0.1.0

commit a1cb9d9
Author: Lukas Rieder <[email protected]>
Date:   Wed Sep 11 14:19:56 2024 +0200

    Update README links for examples

    - Modified the links in the Examples section to point to the GitHub repository paths
    - Updated "Human-in-the-Loop Chat" and "Basic Usage" links to their respective GitHub URLs

commit 9eb9961
Author: Lukas Rieder <[email protected]>
Date:   Wed Sep 11 14:17:05 2024 +0200

    Add build and upload capabilities to Makefile and update .gitignore and pyproject.toml

    - Updated .gitignore to include 'dist' directory.
    - Marked 'build' target as phony in Makefile.
    - Added 'build' and 'upload' targets to Makefile to facilitate package building and uploading.
    - Included build system requirements in pyproject.toml, specifying setuptools as the build backend.

commit c563059
Author: Lukas Rieder <[email protected]>
Date:   Sat Aug 31 09:26:08 2024 +0200

    Refactor and add example for LangChain Tilores integration

    - Renamed project title in README for clarity.
    - Reworded introduction and description sections for better readability.
    - Added detailed example usage in README for setting up a basic Tilores LLM integration.
    - Created `examples/basic/README.md` including description and demo instructions.
    - Added Python script `llm_with_tools.py` showcasing basic usage of Tilores with LangChain.
    - Updated `examples/chat/README.md` for better clarity and coherence.
    - Added `examples/basic/requirements.txt` for necessary dependencies.

commit b961cc7
Author: Lukas Rieder <[email protected]>
Date:   Fri Aug 30 16:33:38 2024 +0200

    Update README with project description and example

    - Changed title from "tilores-langchain" to "langchain tilores".
    - Added a detailed project description, highlighting components and functionality.
    - Included a link to the example code for a Human-in-the-Loop Chat application.

commit 231f617
Author: Lukas Rieder <[email protected]>
Date:   Fri Aug 30 16:29:30 2024 +0200

    Add README for chat example

    - Introduce the purpose and functionality of the chat application.
    - Detail the integration of Chainlit, LangGraph, and LangChain.
    - Provide steps for running the demo, including installation and execution commands.

commit b905cbc
Author: Lukas Rieder <[email protected]>
Date:   Fri Aug 30 16:26:25 2024 +0200

    Initial commit: Add basic project structure with example chat application

    - Added .gitignore to exclude environment and build files.
    - Added LICENSE file with MIT License terms.
    - Created a Makefile for setup and testing commands.
    - Included example chat application with Chainlit, Langchain, and Tilores integration:
      - Added .gitignore specific to chat example.
      - Created a Makefile for running the chat example.
      - Added chainlit.md documentation for Chainlit usage.
      - Implemented chat.py with integrated Langchain and Tilores tools.
      - Added requirements.txt for dependencies in chat example.
    - Added langchain_tilores package:
      - Initialized module with TiloresTools class for structured tool creation.
    - Configured project metadata and dependencies in pyproject.toml.
    - Included integration test suite with unittest framework.