This repository has been archived by the owner on Nov 19, 2024. It is now read-only.
Tags: tilotech/langchain-tilores
Tags
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
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.