├── .gitignore ├── README.md ├── data_preparation.py ├── preparation.sh ├── requirements.txt ├── run_llm.py └── utils ├── __init__.py ├── llm.py ├── prompt.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | data/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/LLM-Knowledge-Boundary/HEAD/README.md -------------------------------------------------------------------------------- /data_preparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/LLM-Knowledge-Boundary/HEAD/data_preparation.py -------------------------------------------------------------------------------- /preparation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/LLM-Knowledge-Boundary/HEAD/preparation.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | openai 2 | tqdm -------------------------------------------------------------------------------- /run_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/LLM-Knowledge-Boundary/HEAD/run_llm.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/LLM-Knowledge-Boundary/HEAD/utils/llm.py -------------------------------------------------------------------------------- /utils/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/LLM-Knowledge-Boundary/HEAD/utils/prompt.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RUCAIBox/LLM-Knowledge-Boundary/HEAD/utils/utils.py --------------------------------------------------------------------------------