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

https://github.com/vishal815/genrative-ai-langchain-models-build-and-explore-llm-powered-projects

This repository is a hands-on implementation of Generative AI: LangChain Models, Build, and Explore LLM-Models. It showcases the core fundamentals of LangChain, OpenAI/Gemini integrations, and Hugging Face models.
https://github.com/vishal815/genrative-ai-langchain-models-build-and-explore-llm-powered-projects

antrophic chatmodel dotenv embedding gemini genrative-ai genrativeai huggingface langchain langchain-python language-model llms openai vishal-lazrus vishallazrus

Last synced: 3 months ago
JSON representation

This repository is a hands-on implementation of Generative AI: LangChain Models, Build, and Explore LLM-Models. It showcases the core fundamentals of LangChain, OpenAI/Gemini integrations, and Hugging Face models.

Awesome Lists containing this project

README

          

# LangChain AI Apps: Build and Explore LLM-Powered Projects 🚀

This repository is a hands-on implementation of **Generative AI: LangChain Models, Build, and Explore LLM-Powered Projects**. It showcases the core fundamentals of LangChain, OpenAI/Gemini integrations, and Hugging Face models.

## 🎯 Project Description

This project serves as a foundation for building applications with **Large Language Models (LLMs)**
![image](https://github.com/user-attachments/assets/524defd8-cba5-437a-bebc-dec6f5b0b5af)

##
---

## ⚙️ Setup Instructions

### 1. Clone the repository
```bash
git clone https://github.com/your-username/langchain-ai-apps.git
cd project_path
````

### 2. Create a virtual environment

```bash
python -m venv venv
source venv/bin/activate # Linux/Mac
venv\Scripts\activate # Windows
```

### 3. Install dependencies

```bash
pip install -r requirements.txt
```

### 4. Add your API keys

Create a `.env` file with your keys:

```bash
OPENAI_API_KEY=your_openai_key
ANTHROPIC_API_KEY=your_claude_key
GOOGLE_API_KEY=your_google_key
HUGGINGFACEHUB_API_TOKEN=your_huggingface_key
```

Or use `os.environ` in the notebooks.

Happy Learning😃 Vishal Lazrus.
---