Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ribbinpo/langchain-poc

for learning & poc langchain framework
https://github.com/ribbinpo/langchain-poc

fastapi langchain-python llm poc

Last synced: about 14 hours ago
JSON representation

for learning & poc langchain framework

Awesome Lists containing this project

README

        

# LangChain POC

## Overview
This repo is consist of the proof of concept and tutorial LangChain code.

## Prerequisites
- Python engine
- API Keys (LangSmith, Tavily API, OpenAI) ** some experimental code needed **

## API Key List
- LangSmith: [Link](https://smith.langchain.com)
- Tavity (Community Tools): [Link](https://tavily.com/)
- OpenAI: [Link](https://platform.openai.com/playground)

## Get Started (Setup)
1. create python environment
```sh
python3 -m venv env
```
2. Activate python environment
```sh
source env/bin/activate # for macOS
```
for deactivate `source deactivate`

3. Install dependencies
```sh
pip3 install -r requirement.txt
```