Skip to content

Instantly share code, notes, and snippets.

View brycepg's full-sized avatar

Bryce Guinta brycepg

View GitHub Profile
@brycepg
brycepg / nginx_install.yml
Last active December 25, 2023 23:54
Install NGINX with ansible
---
- hosts: nginx_deb_websites
become: true
tasks:
- name: ensure nginx is at the latest version
apt: name=nginx state=latest
import argparse
from typing import Optional, List, Mapping, Any
from llama_index.core import SimpleDirectoryReader, SummaryIndex
from llama_index.core.callbacks import CallbackManager
from llama_index.core.llms import (
CustomLLM,
CompletionResponse,
CompletionResponseGen,
LLMMetadata,