This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| - hosts: nginx_deb_websites | |
| become: true | |
| tasks: | |
| - name: ensure nginx is at the latest version | |
| apt: name=nginx state=latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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, |
OlderNewer